forge-cost-optimizer
Installation
SKILL.md
Forge Cost Optimizer
Optimize Forge apps for lower platform consumption while preserving correctness, security, and maintainability. This skill turns Atlassian's Forge cost optimization guidance into an actionable agent workflow.
Source Guidance
Base recommendations on Atlassian's official guide: https://developer.atlassian.com/platform/forge/optimise-forge-costs/
If live Forge documentation tools are available, search the Forge docs for the exact module or API before changing code that depends on current manifest syntax, bridge APIs, storage APIs, trigger filters, or Forge Remote behavior.
Core Principle
Prioritize changes that reduce unnecessary work:
- Avoid invocations entirely — move safe work to UI Kit / Custom UI frontend, use context from the bridge, replace polling with events, add trigger filters.
- Do less work per invocation — bulk API calls, field selection, source-side filtering, pagination, early exits, bounded concurrency.
- Reduce billed data volume — trim resolver payloads, reduce KVS reads/writes, avoid large log payloads, use entity properties where appropriate.
- Tune compute cost — right-size
memoryMiB, reduce duration, offload only when the operational trade-off is justified.