Atlassian Forge Skills supports Atlassian Forge, a platform for building and deploying apps that extend products such as Jira and Confluence. Its skills and MCP-backed tools help coding agents create Forge apps, review them before deployment, optimize usage, troubleshoot failures, and work with Forge APIs and the Atlassian Design System.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add atlassian/forge-skills --skill forge-security-reviewgit clone --depth 1 https://github.com/atlassian/forge-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/atlassian/forge-skills/forge-security-review)<a href="https://agentmods.dev/skills/atlassian/forge-skills/forge-security-review"><img src="https://agentmods.dev/badge/skills/atlassian/forge-skills/forge-security-review/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/atlassian/forge-skills/forge-security-review"><img src="https://agentmods.dev/badge/skills/atlassian/forge-skills/forge-security-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Prompt Injection · line 81 Large whitespace padding was detected (a block of blank lines or a long run of spaces). This can push injected instructions below or to the right of the visible area so a human reviewer never sees them while the agent still reads them. Manual review of the hidden content is recommended.Fix: Remove the large whitespace padding (blank-line blocks or long space runs) and review any content hidden below or to the right of it. Keep skill files compact and reviewable so no instructions can be
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00074 | $0.01441 |
| Opus 5 | $0.00037 | $0.00720 |
| Sonnet 5 | $0.00015 | $0.00288 |
| Haiku 4.5 | $0.00007 | $0.00144 |
Grade A, and why
forge-security-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Forge Security Review
Runs a Forge-focused white-box security review and reports validated findings with exploitability, impact, evidence, and remediation guidance.
Token-Efficient Default
Use manifest-driven routing by default to reduce token usage. Do not load every rule file up front.
Rule Assets
The review rules are packaged with this skill under assets/security-rules/:
- Global baseline:
assets/security-rules/_global-forge.mdc - Category indexes:
assets/security-rules/forge-*/_index-*.mdc - Category deep checks:
assets/security-rules/forge-*/*.mdc
Execution Mandate
When this skill is triggered:
- Run static analysis first from this skill directory:
scripts/run_static_analysis.sh <forge-project-root-directory>- use
.ps1script for windows
- Read
manifest.ymlfirst before any deep code review. - Load
assets/security-rules/_global-forge.mdcfirst. - Load only relevant category index rules based on manifest and code signals.
- Load deep subrules only when the matching detection heuristics are triggered by real code patterns.
- Perform an evidence-based security review across:
- AuthN/AuthZ
- Injection and input validation
- Tenant isolation and cross-tenant leakage
- Secrets and storage
- Egress/remotes/CSP and manifest permissions
- Public entry points (web triggers)
- Agent and miscellaneous Forge security risks
- Do not modify app code unless the user explicitly requests fixes.
- Write all scan outputs and generated artifacts to
security-audit-artifacts/.
Rule Routing Workflow
Phase 1: Reconnaissance (Mandatory)
Read manifest.yml first and extract:
permissions.scopespermissions.external.fetchpermissions.content.scriptsmodules(resolver/webtrigger/scheduledTrigger/rovo/etc.)remotesapp.runtime.name
Build an execution map:
- UI modules -> bridge calls -> resolvers/functions
- External entry points (web triggers, events, schedules)
api.asUser()vsapi.asApp()paths- Outbound fetch destinations
What ships with it
35 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/security-rules/_global-forge.mdc 8.8 KB
- assets/security-rules/forge-auditing/_index-auditing.mdc 1.8 KB
- assets/security-rules/forge-auditing/static-analysis-forge.mdc 5.4 KB
- assets/security-rules/forge-authn-authz/_index-authn-authz.mdc 2.2 KB
- assets/security-rules/forge-authn-authz/asapp-privilege-escalation.mdc 6.6 KB
- assets/security-rules/forge-authn-authz/display-conditions-bypass.mdc 4.9 KB
- assets/security-rules/forge-authn-authz/missing-resolver-authz.mdc 12 KB
- assets/security-rules/forge-authn-authz/prefer-context-authz.mdc 5.3 KB
- assets/security-rules/forge-egress-remotes/_index-egress-remotes.mdc 2.1 KB
- assets/security-rules/forge-egress-remotes/data-egress-redirects.mdc 4.9 KB
- assets/security-rules/forge-egress-remotes/wildcard-permissions.mdc 4.5 KB
- assets/security-rules/forge-injection/_index-injection.mdc 1.7 KB
- assets/security-rules/forge-injection/prototype-pollution.mdc 4.4 KB
- assets/security-rules/forge-injection/rce-code-execution.mdc 5.2 KB
- assets/security-rules/forge-injection/sql-injection.mdc 4.6 KB
- assets/security-rules/forge-injection/ssrf.mdc 5.0 KB
- assets/security-rules/forge-injection/xss.mdc 4.7 KB
- assets/security-rules/forge-manifest-config/_index-manifest-config.mdc 2.1 KB
- assets/security-rules/forge-manifest-config/content-security-policy.mdc 4.5 KB
- assets/security-rules/forge-manifest-config/egress-url-entries.mdc 4.7 KB
- assets/security-rules/forge-manifest-config/permission-scopes.mdc 4.1 KB
- assets/security-rules/forge-misc/_index-misc.mdc 1.1 KB
- assets/security-rules/forge-misc/software-composition.mdc 5.2 KB
- assets/security-rules/forge-rovo-agents/_index-rovo-agents.mdc 2.9 KB
- assets/security-rules/forge-rovo-agents/agent-privilege-escalation.mdc 5.3 KB
- assets/security-rules/forge-secrets-storage/_index-secrets-storage.mdc 2.0 KB
- assets/security-rules/forge-secrets-storage/hardcoded-secrets.mdc 5.0 KB
- assets/security-rules/forge-tenant-isolation/_index-tenant-isolation.mdc 1.9 KB
- assets/security-rules/forge-tenant-isolation/global-state-warmstart.mdc 6.0 KB
- assets/security-rules/forge-webtrigger-entrypoints/_index-webtrigger-entrypoints.mdc 2.4 KB
- assets/security-rules/forge-webtrigger-entrypoints/webtrigger-security.mdc 5.4 KB
- README.md 3.3 KB
- scripts/.gitignore 13 B
- scripts/run_static_analysis.ps1 3.8 KB runs code
- scripts/run_static_analysis.sh 4.2 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 158 lines · 74 tokens per session scan A b22701c086ba
forge-security-review is a skill published in the GitHub repository atlassian/forge-skills (22 stars, last pushed yesterday), licensed Apache-2.0. It adds 74 tokens to every session and 1,441 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
motherduck-create-flight
Create, run, schedule, or debug MotherDuck Flights, Python jobs executed on MotherDuck compute.
motherduck-build-cfa-app
Build MotherDuck analytics into customer-facing applications with tenant isolation, backend routing, and serving APIs.
motherduck-create-dive
Create, edit, publish, share, or embed MotherDuck Dives using their React and SQL runtime.
motherduck-design-dive
Design or improve a MotherDuck Dive’s layout, responsive behavior, themes, filters, and visual accessibility.
motherduck-rest-api
Administer MotherDuck service accounts, tokens, Ducklings, and Dive embed sessions through the control-plane REST API.
motherduck-build-dashboard
Build a MotherDuck dashboard as a Dive, choosing the analytical story, metrics, and section queries.