[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-atlassian-forge-app-review":3,"mdc-mm19qp-key":40,"related-org-atlassian-forge-app-review":874,"related-repo-atlassian-forge-app-review":1045},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":35,"sourceUrl":38,"mdContent":39},"forge-app-review","review Atlassian Forge app readiness","Performs a lightweight pre-release readiness review of Atlassian Forge apps across manifest\u002Fmodule wiring, architecture, runtime compatibility, dependency posture, tests, deploy readiness, and obvious security, cost, or reliability smells. Use when the user asks \"review my Forge app\", \"pre-deploy check\", \"is this app ready to ship\", \"review manifest\", \"general app review\", \"release readiness\", or asks for a broad quality pass. Do not use for deep security audits\u002FSAST\u002Fexploitability review, cost optimization, or diagnosing a known broken app; route those to forge-security-review, forge-cost-optimizer, or forge-debugger respectively.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"atlassian","Atlassian","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fatlassian.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"QA","qa","tag",{"name":17,"slug":18,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Code Analysis","code-analysis",14,"https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fforge-skills","2026-07-12T07:58:50.744672",null,7,[29,30,31,32,33,34],"agent-skills","ai-agents","claude-code-plugin","claude-code-skills","gemini-cli-extension","mcp",{"repoUrl":24,"stars":23,"forks":27,"topics":36,"description":37},[29,30,31,32,33,34],"The Forge Skills Plugin bundles several Forge-focused skills plus MCP-backed tooling so your agent can scaffold apps, review them before deploy, debug production issues, and stay current on Forge APIs and the Atlassian Design System.","https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fforge-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fforge-app-review","---\nname: forge-app-review\ndescription: >\n  Performs a lightweight pre-release readiness review of Atlassian Forge apps across manifest\u002Fmodule wiring,\n  architecture, runtime compatibility, dependency posture, tests, deploy readiness, and obvious security,\n  cost, or reliability smells. Use when the user asks \"review my Forge app\", \"pre-deploy check\",\n  \"is this app ready to ship\", \"review manifest\", \"general app review\", \"release readiness\", or asks for a\n  broad quality pass. Do not use for deep security audits\u002FSAST\u002Fexploitability review, cost optimization,\n  or diagnosing a known broken app; route those to forge-security-review, forge-cost-optimizer, or\n  forge-debugger respectively.\n---\n\n# Forge App Review\n\nRun a general Forge release-readiness review. This skill is the front door for broad app review, not a replacement for specialist security, cost, or debugging skills.\n\n## Boundaries\n\nUse this skill for:\n\n- Pre-deploy and release-readiness checks.\n- General architecture and maintainability review.\n- Manifest\u002Fmodule\u002Fresource\u002Ffunction wiring.\n- Runtime, dependency, package, and script sanity checks.\n- Basic tests\u002Fdeploy readiness and operational hygiene.\n- Obvious security, cost, or reliability smells that should trigger a deeper specialist pass.\n\nUse another skill instead when the user's primary intent is:\n\n- Deep security audit, SAST, authz, secrets, tenant isolation, exploitability, or CVSS reporting -> `forge-security-review`.\n- Cost optimization, invocations, GB-seconds, storage\u002Flog volume, trigger frequency, or memory tuning -> `forge-cost-optimizer`.\n- A known failure, error message, blank UI, failed deploy\u002Finstall, broken resolver, missing app, or logs\u002Ftunnel diagnosis -> `forge-debugger`.\n\nIf a broad review finds a deep security\u002Fcost\u002Fdebug concern, include it as a handoff recommendation rather than duplicating the specialist workflow.\n\n## Review Rules\n\n- Audit first. Do not modify app files unless the user explicitly asks to apply fixes.\n- Read the codebase before making claims.\n- Prefer concrete file\u002Fline evidence.\n- Keep findings focused on bugs, release blockers, meaningful risks, and missing validation.\n- Do not run full SAST or cost tooling from this skill. Recommend the specialist skill when warranted.\n- Do not report speculative security or cost observations as confirmed vulnerabilities or savings.\n\n## Workflow\n\n1. Read `manifest.yml` or `manifest.yaml`.\n   - Identify modules, resources, functions, resolver bindings, triggers, web triggers, remotes, permissions, runtime, and memory settings.\n   - Verify referenced handlers\u002Fresources exist.\n2. Read `package.json`.\n   - Check Forge package fit, scripts, runtime assumptions, direct dependencies, and obvious unused\u002Fmissing packages.\n3. Inspect source files.\n   - Backend\u002Fresolvers: `resolver.define`, handler exports, product API calls, storage usage, external fetches, logging, error handling.\n   - Frontend: UI Kit or Custom UI resource entry points, `invoke()` patterns, bridge usage, loading\u002Ferror states.\n4. Inspect tests and project docs when present.\n   - Note missing tests only when behavior risk justifies it.\n5. Produce a prioritized readiness report.\n\n## What To Check\n\n### Release Blockers\n\n- Manifest references a missing handler, resource path, or module key.\n- Resolver names called by the frontend do not match `resolver.define()` names.\n- Required scopes or egress permissions are missing for actual API\u002Ffetch usage.\n- Runtime, package versions, or module syntax likely fail `forge lint`, build, deploy, or install.\n- App has no clear way to exercise its primary user flow.\n\n### Architecture And Maintainability\n\n- Module type matches the intended UX surface.\n- Resolver boundaries are coherent and not overly monolithic for the app size.\n- Sensitive or privileged logic stays backend-side.\n- UI-only formatting\u002Ftransforms are not unnecessarily forced through backend functions.\n- Error handling is sufficient for user-facing workflows.\n- Code organization matches existing project style.\n\n### Lightweight Security Signals\n\nOnly flag obvious signals and recommend `forge-security-review` for deep validation:\n\n- Broad\u002Fwrite\u002Fadmin scopes without visible usage.\n- `api.asApp()` in user-triggered resolvers without obvious authorization checks.\n- Hardcoded credentials or token-like literals.\n- External fetches without manifest egress entries.\n- Web triggers without visible authentication strategy.\n- Full payload\u002Frequest logging that may expose user, tenant, or secret data.\n\n### Lightweight Cost Signals\n\nOnly flag obvious signals and recommend `forge-cost-optimizer` for deep analysis:\n\n- Resolver invoked only to return static data or product context.\n- Multiple independent `invoke()` calls on page load.\n- Scheduled triggers that look like broad polling.\n- Product triggers without filters or `ignoreSelf` where applicable.\n- Full payload\u002FAPI response logging in hot paths.\n- Storage writes on every invocation.\n\n### Lightweight Debuggability Signals\n\nOnly flag readiness gaps; use `forge-debugger` when there is an observed failure:\n\n- Missing loading\u002Ferror states around async UI paths.\n- Logs are either too noisy or absent around important failures.\n- README or scripts do not explain how to lint\u002Fbuild\u002Fdeploy\u002Ftest.\n- App has no obvious local verification command besides `forge lint`.\n\n## Output Format\n\nReturn a concise Markdown report:\n\n```markdown\n# Forge App Review Results\n\n## Summary\n- Readiness: Ready | Needs changes | Blocked\n- Highest-risk area: \u003Cmanifest | resolver wiring | permissions | dependencies | tests | operational hygiene>\n- Files inspected: \u003Cshort list>\n- Specialist handoffs: \u003Cnone | security | cost | debugger>\n\n## Findings\n\n1. [Critical | Warning | Info] \u003Ctitle>\n   - Evidence: `\u003Cfile:line>` and observed pattern\n   - Impact: \u003Cwhy this affects readiness>\n   - Recommendation: \u003Cspecific fix or specialist handoff>\n\n## Clean Areas\n- \u003Cimportant categories checked with no issues>\n\n## Suggested Next Step\n- \u003Capply fixes | run specialist review | deploy\u002Flint\u002Ftest command>\n```\n\nIf there are no findings, say the app looks ready from this general review and list any residual specialist reviews that were intentionally out of scope.\n",{"data":41,"body":42},{"name":4,"description":6},{"type":43,"children":44},"root",[45,53,59,66,71,106,111,152,157,163,196,202,311,317,324,368,374,407,413,425,464,470,481,529,535,547,576,582,587,863,868],{"type":46,"tag":47,"props":48,"children":49},"element","h1",{"id":4},[50],{"type":51,"value":52},"text","Forge App Review",{"type":46,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Run a general Forge release-readiness review. This skill is the front door for broad app review, not a replacement for specialist security, cost, or debugging skills.",{"type":46,"tag":60,"props":61,"children":63},"h2",{"id":62},"boundaries",[64],{"type":51,"value":65},"Boundaries",{"type":46,"tag":54,"props":67,"children":68},{},[69],{"type":51,"value":70},"Use this skill for:",{"type":46,"tag":72,"props":73,"children":74},"ul",{},[75,81,86,91,96,101],{"type":46,"tag":76,"props":77,"children":78},"li",{},[79],{"type":51,"value":80},"Pre-deploy and release-readiness checks.",{"type":46,"tag":76,"props":82,"children":83},{},[84],{"type":51,"value":85},"General architecture and maintainability review.",{"type":46,"tag":76,"props":87,"children":88},{},[89],{"type":51,"value":90},"Manifest\u002Fmodule\u002Fresource\u002Ffunction wiring.",{"type":46,"tag":76,"props":92,"children":93},{},[94],{"type":51,"value":95},"Runtime, dependency, package, and script sanity checks.",{"type":46,"tag":76,"props":97,"children":98},{},[99],{"type":51,"value":100},"Basic tests\u002Fdeploy readiness and operational hygiene.",{"type":46,"tag":76,"props":102,"children":103},{},[104],{"type":51,"value":105},"Obvious security, cost, or reliability smells that should trigger a deeper specialist pass.",{"type":46,"tag":54,"props":107,"children":108},{},[109],{"type":51,"value":110},"Use another skill instead when the user's primary intent is:",{"type":46,"tag":72,"props":112,"children":113},{},[114,128,140],{"type":46,"tag":76,"props":115,"children":116},{},[117,119,126],{"type":51,"value":118},"Deep security audit, SAST, authz, secrets, tenant isolation, exploitability, or CVSS reporting -> ",{"type":46,"tag":120,"props":121,"children":123},"code",{"className":122},[],[124],{"type":51,"value":125},"forge-security-review",{"type":51,"value":127},".",{"type":46,"tag":76,"props":129,"children":130},{},[131,133,139],{"type":51,"value":132},"Cost optimization, invocations, GB-seconds, storage\u002Flog volume, trigger frequency, or memory tuning -> ",{"type":46,"tag":120,"props":134,"children":136},{"className":135},[],[137],{"type":51,"value":138},"forge-cost-optimizer",{"type":51,"value":127},{"type":46,"tag":76,"props":141,"children":142},{},[143,145,151],{"type":51,"value":144},"A known failure, error message, blank UI, failed deploy\u002Finstall, broken resolver, missing app, or logs\u002Ftunnel diagnosis -> ",{"type":46,"tag":120,"props":146,"children":148},{"className":147},[],[149],{"type":51,"value":150},"forge-debugger",{"type":51,"value":127},{"type":46,"tag":54,"props":153,"children":154},{},[155],{"type":51,"value":156},"If a broad review finds a deep security\u002Fcost\u002Fdebug concern, include it as a handoff recommendation rather than duplicating the specialist workflow.",{"type":46,"tag":60,"props":158,"children":160},{"id":159},"review-rules",[161],{"type":51,"value":162},"Review Rules",{"type":46,"tag":72,"props":164,"children":165},{},[166,171,176,181,186,191],{"type":46,"tag":76,"props":167,"children":168},{},[169],{"type":51,"value":170},"Audit first. Do not modify app files unless the user explicitly asks to apply fixes.",{"type":46,"tag":76,"props":172,"children":173},{},[174],{"type":51,"value":175},"Read the codebase before making claims.",{"type":46,"tag":76,"props":177,"children":178},{},[179],{"type":51,"value":180},"Prefer concrete file\u002Fline evidence.",{"type":46,"tag":76,"props":182,"children":183},{},[184],{"type":51,"value":185},"Keep findings focused on bugs, release blockers, meaningful risks, and missing validation.",{"type":46,"tag":76,"props":187,"children":188},{},[189],{"type":51,"value":190},"Do not run full SAST or cost tooling from this skill. Recommend the specialist skill when warranted.",{"type":46,"tag":76,"props":192,"children":193},{},[194],{"type":51,"value":195},"Do not report speculative security or cost observations as confirmed vulnerabilities or savings.",{"type":46,"tag":60,"props":197,"children":199},{"id":198},"workflow",[200],{"type":51,"value":201},"Workflow",{"type":46,"tag":203,"props":204,"children":205},"ol",{},[206,240,259,293,306],{"type":46,"tag":76,"props":207,"children":208},{},[209,211,217,219,225,227],{"type":51,"value":210},"Read ",{"type":46,"tag":120,"props":212,"children":214},{"className":213},[],[215],{"type":51,"value":216},"manifest.yml",{"type":51,"value":218}," or ",{"type":46,"tag":120,"props":220,"children":222},{"className":221},[],[223],{"type":51,"value":224},"manifest.yaml",{"type":51,"value":226},".\n",{"type":46,"tag":72,"props":228,"children":229},{},[230,235],{"type":46,"tag":76,"props":231,"children":232},{},[233],{"type":51,"value":234},"Identify modules, resources, functions, resolver bindings, triggers, web triggers, remotes, permissions, runtime, and memory settings.",{"type":46,"tag":76,"props":236,"children":237},{},[238],{"type":51,"value":239},"Verify referenced handlers\u002Fresources exist.",{"type":46,"tag":76,"props":241,"children":242},{},[243,244,250,251],{"type":51,"value":210},{"type":46,"tag":120,"props":245,"children":247},{"className":246},[],[248],{"type":51,"value":249},"package.json",{"type":51,"value":226},{"type":46,"tag":72,"props":252,"children":253},{},[254],{"type":46,"tag":76,"props":255,"children":256},{},[257],{"type":51,"value":258},"Check Forge package fit, scripts, runtime assumptions, direct dependencies, and obvious unused\u002Fmissing packages.",{"type":46,"tag":76,"props":260,"children":261},{},[262,264],{"type":51,"value":263},"Inspect source files.\n",{"type":46,"tag":72,"props":265,"children":266},{},[267,280],{"type":46,"tag":76,"props":268,"children":269},{},[270,272,278],{"type":51,"value":271},"Backend\u002Fresolvers: ",{"type":46,"tag":120,"props":273,"children":275},{"className":274},[],[276],{"type":51,"value":277},"resolver.define",{"type":51,"value":279},", handler exports, product API calls, storage usage, external fetches, logging, error handling.",{"type":46,"tag":76,"props":281,"children":282},{},[283,285,291],{"type":51,"value":284},"Frontend: UI Kit or Custom UI resource entry points, ",{"type":46,"tag":120,"props":286,"children":288},{"className":287},[],[289],{"type":51,"value":290},"invoke()",{"type":51,"value":292}," patterns, bridge usage, loading\u002Ferror states.",{"type":46,"tag":76,"props":294,"children":295},{},[296,298],{"type":51,"value":297},"Inspect tests and project docs when present.\n",{"type":46,"tag":72,"props":299,"children":300},{},[301],{"type":46,"tag":76,"props":302,"children":303},{},[304],{"type":51,"value":305},"Note missing tests only when behavior risk justifies it.",{"type":46,"tag":76,"props":307,"children":308},{},[309],{"type":51,"value":310},"Produce a prioritized readiness report.",{"type":46,"tag":60,"props":312,"children":314},{"id":313},"what-to-check",[315],{"type":51,"value":316},"What To Check",{"type":46,"tag":318,"props":319,"children":321},"h3",{"id":320},"release-blockers",[322],{"type":51,"value":323},"Release Blockers",{"type":46,"tag":72,"props":325,"children":326},{},[327,332,345,350,363],{"type":46,"tag":76,"props":328,"children":329},{},[330],{"type":51,"value":331},"Manifest references a missing handler, resource path, or module key.",{"type":46,"tag":76,"props":333,"children":334},{},[335,337,343],{"type":51,"value":336},"Resolver names called by the frontend do not match ",{"type":46,"tag":120,"props":338,"children":340},{"className":339},[],[341],{"type":51,"value":342},"resolver.define()",{"type":51,"value":344}," names.",{"type":46,"tag":76,"props":346,"children":347},{},[348],{"type":51,"value":349},"Required scopes or egress permissions are missing for actual API\u002Ffetch usage.",{"type":46,"tag":76,"props":351,"children":352},{},[353,355,361],{"type":51,"value":354},"Runtime, package versions, or module syntax likely fail ",{"type":46,"tag":120,"props":356,"children":358},{"className":357},[],[359],{"type":51,"value":360},"forge lint",{"type":51,"value":362},", build, deploy, or install.",{"type":46,"tag":76,"props":364,"children":365},{},[366],{"type":51,"value":367},"App has no clear way to exercise its primary user flow.",{"type":46,"tag":318,"props":369,"children":371},{"id":370},"architecture-and-maintainability",[372],{"type":51,"value":373},"Architecture And Maintainability",{"type":46,"tag":72,"props":375,"children":376},{},[377,382,387,392,397,402],{"type":46,"tag":76,"props":378,"children":379},{},[380],{"type":51,"value":381},"Module type matches the intended UX surface.",{"type":46,"tag":76,"props":383,"children":384},{},[385],{"type":51,"value":386},"Resolver boundaries are coherent and not overly monolithic for the app size.",{"type":46,"tag":76,"props":388,"children":389},{},[390],{"type":51,"value":391},"Sensitive or privileged logic stays backend-side.",{"type":46,"tag":76,"props":393,"children":394},{},[395],{"type":51,"value":396},"UI-only formatting\u002Ftransforms are not unnecessarily forced through backend functions.",{"type":46,"tag":76,"props":398,"children":399},{},[400],{"type":51,"value":401},"Error handling is sufficient for user-facing workflows.",{"type":46,"tag":76,"props":403,"children":404},{},[405],{"type":51,"value":406},"Code organization matches existing project style.",{"type":46,"tag":318,"props":408,"children":410},{"id":409},"lightweight-security-signals",[411],{"type":51,"value":412},"Lightweight Security Signals",{"type":46,"tag":54,"props":414,"children":415},{},[416,418,423],{"type":51,"value":417},"Only flag obvious signals and recommend ",{"type":46,"tag":120,"props":419,"children":421},{"className":420},[],[422],{"type":51,"value":125},{"type":51,"value":424}," for deep validation:",{"type":46,"tag":72,"props":426,"children":427},{},[428,433,444,449,454,459],{"type":46,"tag":76,"props":429,"children":430},{},[431],{"type":51,"value":432},"Broad\u002Fwrite\u002Fadmin scopes without visible usage.",{"type":46,"tag":76,"props":434,"children":435},{},[436,442],{"type":46,"tag":120,"props":437,"children":439},{"className":438},[],[440],{"type":51,"value":441},"api.asApp()",{"type":51,"value":443}," in user-triggered resolvers without obvious authorization checks.",{"type":46,"tag":76,"props":445,"children":446},{},[447],{"type":51,"value":448},"Hardcoded credentials or token-like literals.",{"type":46,"tag":76,"props":450,"children":451},{},[452],{"type":51,"value":453},"External fetches without manifest egress entries.",{"type":46,"tag":76,"props":455,"children":456},{},[457],{"type":51,"value":458},"Web triggers without visible authentication strategy.",{"type":46,"tag":76,"props":460,"children":461},{},[462],{"type":51,"value":463},"Full payload\u002Frequest logging that may expose user, tenant, or secret data.",{"type":46,"tag":318,"props":465,"children":467},{"id":466},"lightweight-cost-signals",[468],{"type":51,"value":469},"Lightweight Cost Signals",{"type":46,"tag":54,"props":471,"children":472},{},[473,474,479],{"type":51,"value":417},{"type":46,"tag":120,"props":475,"children":477},{"className":476},[],[478],{"type":51,"value":138},{"type":51,"value":480}," for deep analysis:",{"type":46,"tag":72,"props":482,"children":483},{},[484,489,501,506,519,524],{"type":46,"tag":76,"props":485,"children":486},{},[487],{"type":51,"value":488},"Resolver invoked only to return static data or product context.",{"type":46,"tag":76,"props":490,"children":491},{},[492,494,499],{"type":51,"value":493},"Multiple independent ",{"type":46,"tag":120,"props":495,"children":497},{"className":496},[],[498],{"type":51,"value":290},{"type":51,"value":500}," calls on page load.",{"type":46,"tag":76,"props":502,"children":503},{},[504],{"type":51,"value":505},"Scheduled triggers that look like broad polling.",{"type":46,"tag":76,"props":507,"children":508},{},[509,511,517],{"type":51,"value":510},"Product triggers without filters or ",{"type":46,"tag":120,"props":512,"children":514},{"className":513},[],[515],{"type":51,"value":516},"ignoreSelf",{"type":51,"value":518}," where applicable.",{"type":46,"tag":76,"props":520,"children":521},{},[522],{"type":51,"value":523},"Full payload\u002FAPI response logging in hot paths.",{"type":46,"tag":76,"props":525,"children":526},{},[527],{"type":51,"value":528},"Storage writes on every invocation.",{"type":46,"tag":318,"props":530,"children":532},{"id":531},"lightweight-debuggability-signals",[533],{"type":51,"value":534},"Lightweight Debuggability Signals",{"type":46,"tag":54,"props":536,"children":537},{},[538,540,545],{"type":51,"value":539},"Only flag readiness gaps; use ",{"type":46,"tag":120,"props":541,"children":543},{"className":542},[],[544],{"type":51,"value":150},{"type":51,"value":546}," when there is an observed failure:",{"type":46,"tag":72,"props":548,"children":549},{},[550,555,560,565],{"type":46,"tag":76,"props":551,"children":552},{},[553],{"type":51,"value":554},"Missing loading\u002Ferror states around async UI paths.",{"type":46,"tag":76,"props":556,"children":557},{},[558],{"type":51,"value":559},"Logs are either too noisy or absent around important failures.",{"type":46,"tag":76,"props":561,"children":562},{},[563],{"type":51,"value":564},"README or scripts do not explain how to lint\u002Fbuild\u002Fdeploy\u002Ftest.",{"type":46,"tag":76,"props":566,"children":567},{},[568,570,575],{"type":51,"value":569},"App has no obvious local verification command besides ",{"type":46,"tag":120,"props":571,"children":573},{"className":572},[],[574],{"type":51,"value":360},{"type":51,"value":127},{"type":46,"tag":60,"props":577,"children":579},{"id":578},"output-format",[580],{"type":51,"value":581},"Output Format",{"type":46,"tag":54,"props":583,"children":584},{},[585],{"type":51,"value":586},"Return a concise Markdown report:",{"type":46,"tag":588,"props":589,"children":594},"pre",{"className":590,"code":591,"language":592,"meta":593,"style":593},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Forge App Review Results\n\n## Summary\n- Readiness: Ready | Needs changes | Blocked\n- Highest-risk area: \u003Cmanifest | resolver wiring | permissions | dependencies | tests | operational hygiene>\n- Files inspected: \u003Cshort list>\n- Specialist handoffs: \u003Cnone | security | cost | debugger>\n\n## Findings\n\n1. [Critical | Warning | Info] \u003Ctitle>\n   - Evidence: `\u003Cfile:line>` and observed pattern\n   - Impact: \u003Cwhy this affects readiness>\n   - Recommendation: \u003Cspecific fix or specialist handoff>\n\n## Clean Areas\n- \u003Cimportant categories checked with no issues>\n\n## Suggested Next Step\n- \u003Capply fixes | run specialist review | deploy\u002Flint\u002Ftest command>\n","markdown","",[595],{"type":46,"tag":120,"props":596,"children":597},{"__ignoreMap":593},[598,616,626,640,655,668,681,693,701,714,722,736,770,783,795,803,816,829,837,850],{"type":46,"tag":599,"props":600,"children":603},"span",{"class":601,"line":602},"line",1,[604,610],{"type":46,"tag":599,"props":605,"children":607},{"style":606},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[608],{"type":51,"value":609},"# ",{"type":46,"tag":599,"props":611,"children":613},{"style":612},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[614],{"type":51,"value":615},"Forge App Review Results\n",{"type":46,"tag":599,"props":617,"children":619},{"class":601,"line":618},2,[620],{"type":46,"tag":599,"props":621,"children":623},{"emptyLinePlaceholder":622},true,[624],{"type":51,"value":625},"\n",{"type":46,"tag":599,"props":627,"children":629},{"class":601,"line":628},3,[630,635],{"type":46,"tag":599,"props":631,"children":632},{"style":606},[633],{"type":51,"value":634},"## ",{"type":46,"tag":599,"props":636,"children":637},{"style":612},[638],{"type":51,"value":639},"Summary\n",{"type":46,"tag":599,"props":641,"children":643},{"class":601,"line":642},4,[644,649],{"type":46,"tag":599,"props":645,"children":646},{"style":606},[647],{"type":51,"value":648},"-",{"type":46,"tag":599,"props":650,"children":652},{"style":651},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[653],{"type":51,"value":654}," Readiness: Ready | Needs changes | Blocked\n",{"type":46,"tag":599,"props":656,"children":658},{"class":601,"line":657},5,[659,663],{"type":46,"tag":599,"props":660,"children":661},{"style":606},[662],{"type":51,"value":648},{"type":46,"tag":599,"props":664,"children":665},{"style":651},[666],{"type":51,"value":667}," Highest-risk area: \u003Cmanifest | resolver wiring | permissions | dependencies | tests | operational hygiene>\n",{"type":46,"tag":599,"props":669,"children":671},{"class":601,"line":670},6,[672,676],{"type":46,"tag":599,"props":673,"children":674},{"style":606},[675],{"type":51,"value":648},{"type":46,"tag":599,"props":677,"children":678},{"style":651},[679],{"type":51,"value":680}," Files inspected: \u003Cshort list>\n",{"type":46,"tag":599,"props":682,"children":683},{"class":601,"line":27},[684,688],{"type":46,"tag":599,"props":685,"children":686},{"style":606},[687],{"type":51,"value":648},{"type":46,"tag":599,"props":689,"children":690},{"style":651},[691],{"type":51,"value":692}," Specialist handoffs: \u003Cnone | security | cost | debugger>\n",{"type":46,"tag":599,"props":694,"children":696},{"class":601,"line":695},8,[697],{"type":46,"tag":599,"props":698,"children":699},{"emptyLinePlaceholder":622},[700],{"type":51,"value":625},{"type":46,"tag":599,"props":702,"children":704},{"class":601,"line":703},9,[705,709],{"type":46,"tag":599,"props":706,"children":707},{"style":606},[708],{"type":51,"value":634},{"type":46,"tag":599,"props":710,"children":711},{"style":612},[712],{"type":51,"value":713},"Findings\n",{"type":46,"tag":599,"props":715,"children":717},{"class":601,"line":716},10,[718],{"type":46,"tag":599,"props":719,"children":720},{"emptyLinePlaceholder":622},[721],{"type":51,"value":625},{"type":46,"tag":599,"props":723,"children":725},{"class":601,"line":724},11,[726,731],{"type":46,"tag":599,"props":727,"children":728},{"style":606},[729],{"type":51,"value":730},"1.",{"type":46,"tag":599,"props":732,"children":733},{"style":651},[734],{"type":51,"value":735}," [Critical | Warning | Info] \u003Ctitle>\n",{"type":46,"tag":599,"props":737,"children":739},{"class":601,"line":738},12,[740,745,750,755,761,765],{"type":46,"tag":599,"props":741,"children":742},{"style":606},[743],{"type":51,"value":744},"   -",{"type":46,"tag":599,"props":746,"children":747},{"style":651},[748],{"type":51,"value":749}," Evidence: ",{"type":46,"tag":599,"props":751,"children":752},{"style":606},[753],{"type":51,"value":754},"`",{"type":46,"tag":599,"props":756,"children":758},{"style":757},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[759],{"type":51,"value":760},"\u003Cfile:line>",{"type":46,"tag":599,"props":762,"children":763},{"style":606},[764],{"type":51,"value":754},{"type":46,"tag":599,"props":766,"children":767},{"style":651},[768],{"type":51,"value":769}," and observed pattern\n",{"type":46,"tag":599,"props":771,"children":773},{"class":601,"line":772},13,[774,778],{"type":46,"tag":599,"props":775,"children":776},{"style":606},[777],{"type":51,"value":744},{"type":46,"tag":599,"props":779,"children":780},{"style":651},[781],{"type":51,"value":782}," Impact: \u003Cwhy this affects readiness>\n",{"type":46,"tag":599,"props":784,"children":785},{"class":601,"line":23},[786,790],{"type":46,"tag":599,"props":787,"children":788},{"style":606},[789],{"type":51,"value":744},{"type":46,"tag":599,"props":791,"children":792},{"style":651},[793],{"type":51,"value":794}," Recommendation: \u003Cspecific fix or specialist handoff>\n",{"type":46,"tag":599,"props":796,"children":798},{"class":601,"line":797},15,[799],{"type":46,"tag":599,"props":800,"children":801},{"emptyLinePlaceholder":622},[802],{"type":51,"value":625},{"type":46,"tag":599,"props":804,"children":806},{"class":601,"line":805},16,[807,811],{"type":46,"tag":599,"props":808,"children":809},{"style":606},[810],{"type":51,"value":634},{"type":46,"tag":599,"props":812,"children":813},{"style":612},[814],{"type":51,"value":815},"Clean Areas\n",{"type":46,"tag":599,"props":817,"children":819},{"class":601,"line":818},17,[820,824],{"type":46,"tag":599,"props":821,"children":822},{"style":606},[823],{"type":51,"value":648},{"type":46,"tag":599,"props":825,"children":826},{"style":651},[827],{"type":51,"value":828}," \u003Cimportant categories checked with no issues>\n",{"type":46,"tag":599,"props":830,"children":832},{"class":601,"line":831},18,[833],{"type":46,"tag":599,"props":834,"children":835},{"emptyLinePlaceholder":622},[836],{"type":51,"value":625},{"type":46,"tag":599,"props":838,"children":840},{"class":601,"line":839},19,[841,845],{"type":46,"tag":599,"props":842,"children":843},{"style":606},[844],{"type":51,"value":634},{"type":46,"tag":599,"props":846,"children":847},{"style":612},[848],{"type":51,"value":849},"Suggested Next Step\n",{"type":46,"tag":599,"props":851,"children":853},{"class":601,"line":852},20,[854,858],{"type":46,"tag":599,"props":855,"children":856},{"style":606},[857],{"type":51,"value":648},{"type":46,"tag":599,"props":859,"children":860},{"style":651},[861],{"type":51,"value":862}," \u003Capply fixes | run specialist review | deploy\u002Flint\u002Ftest command>\n",{"type":46,"tag":54,"props":864,"children":865},{},[866],{"type":51,"value":867},"If there are no findings, say the app looks ready from this general review and list any residual specialist reviews that were intentionally out of scope.",{"type":46,"tag":869,"props":870,"children":871},"style",{},[872],{"type":51,"value":873},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":875,"total":1044},[876,897,915,932,947,958,973,988,995,1009,1022,1031],{"slug":877,"name":877,"fn":878,"description":879,"org":880,"tags":881,"stars":894,"repoUrl":895,"updatedAt":896},"capture-tasks-from-meeting-notes","create Jira tasks from meeting notes","Analyze meeting notes to find action items and create Jira tasks for assigned work. When an agent needs to: (1) Create Jira tasks or tickets from meeting notes, (2) Extract or find action items from notes or Confluence pages, (3) Parse meeting notes for assigned tasks, or (4) Analyze notes and generate tasks for team members. Identifies assignees, looks up account IDs, and creates tasks with proper context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[882,885,888,891],{"name":883,"slug":884,"type":15},"Automation","automation",{"name":886,"slug":887,"type":15},"Jira","jira",{"name":889,"slug":890,"type":15},"Meetings","meetings",{"name":892,"slug":893,"type":15},"Task Management","task-management",848,"https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fatlassian-mcp-server","2026-07-12T07:58:45.323861",{"slug":898,"name":898,"fn":899,"description":900,"org":901,"tags":902,"stars":894,"repoUrl":895,"updatedAt":914},"generate-status-report","generate project status reports for Confluence","Generate project status reports from Jira issues and publish to Confluence. When an agent needs to: (1) Create a status report for a project, (2) Summarize project progress or updates, (3) Generate weekly\u002Fdaily reports from Jira, (4) Publish status summaries to Confluence, or (5) Analyze project blockers and completion. Queries Jira issues, categorizes by status\u002Fpriority, and creates formatted reports for delivery managers and executives.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[903,904,907,908,911],{"name":9,"slug":8,"type":15},{"name":905,"slug":906,"type":15},"Confluence","confluence",{"name":886,"slug":887,"type":15},{"name":909,"slug":910,"type":15},"Project Management","project-management",{"name":912,"slug":913,"type":15},"Reporting","reporting","2026-07-12T07:58:38.457696",{"slug":916,"name":916,"fn":917,"description":918,"org":919,"tags":920,"stars":894,"repoUrl":895,"updatedAt":931},"jira-sprint-dashboard","create Jira sprint dashboards","Create a visual Jira sprint dashboard from Jira project, space, sprint, board, filter, JQL, work item keys, or Jira URL data. Use when the user asks for a Jira sprint dashboard, standup dashboard, sprint review, delivery review, engineering manager dashboard, WIP review, planning view, closeout view, or a visual snapshot of Jira work that is more useful than a flat report. Use the richest dashboard format supported by the current agent, such as Cursor Canvas, an interactive artifact, HTML, or Markdown.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[921,924,927,928],{"name":922,"slug":923,"type":15},"Agile","agile",{"name":925,"slug":926,"type":15},"Dashboards","dashboards",{"name":886,"slug":887,"type":15},{"name":929,"slug":930,"type":15},"Sprint Planning","sprint-planning","2026-07-12T07:58:41.031798",{"slug":933,"name":933,"fn":934,"description":935,"org":936,"tags":937,"stars":894,"repoUrl":895,"updatedAt":946},"search-company-knowledge","search internal company knowledge bases","Search across company knowledge bases (Confluence, Jira, internal docs) to find and explain internal concepts, processes, and technical details. When an agent needs to: (1) Find or search for information about systems, terminology, processes, deployment, authentication, infrastructure, architecture, or technical concepts, (2) Search internal documentation, knowledge base, company docs, or our docs, (3) Explain what something is, how it works, or look up information, or (4) Synthesize information from multiple sources. Searches in parallel and provides cited answers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[938,939,942,943],{"name":905,"slug":906,"type":15},{"name":940,"slug":941,"type":15},"Enterprise Search","enterprise-search",{"name":886,"slug":887,"type":15},{"name":944,"slug":945,"type":15},"Knowledge Management","knowledge-management","2026-07-12T07:58:39.684132",{"slug":948,"name":948,"fn":949,"description":950,"org":951,"tags":952,"stars":894,"repoUrl":895,"updatedAt":957},"spec-to-backlog","convert Confluence specifications to Jira backlogs","Automatically convert Confluence specification documents into structured Jira backlogs with Epics and implementation tickets. When an agent needs to: (1) Create Jira tickets from a Confluence page, (2) Generate a backlog from a specification, (3) Break down a spec into implementation tasks, or (4) Convert requirements into Jira issues. Handles reading Confluence pages, analyzing specifications, creating Epics with proper structure, and generating detailed implementation tickets linked to the Epic.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[953,954,955,956],{"name":922,"slug":923,"type":15},{"name":905,"slug":906,"type":15},{"name":886,"slug":887,"type":15},{"name":909,"slug":910,"type":15},"2026-07-12T07:58:37.200385",{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":894,"repoUrl":895,"updatedAt":972},"triage-issue","triage bug reports in Jira","Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket with proper context, or (5) Add information to an existing ticket. Searches Jira for similar issues, identifies duplicates, checks fix history, and helps create well-structured bug reports.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[964,967,968,969],{"name":965,"slug":966,"type":15},"Debugging","debugging",{"name":886,"slug":887,"type":15},{"name":909,"slug":910,"type":15},{"name":970,"slug":971,"type":15},"Triage","triage","2026-07-12T07:58:33.007343",{"slug":974,"name":974,"fn":975,"description":976,"org":977,"tags":978,"stars":23,"repoUrl":24,"updatedAt":987},"forge-app-builder","build and deploy Atlassian Forge apps","Guides building, deploying, troubleshooting, and installing Atlassian Forge apps — custom extensions built with the Forge CLI (forge create, forge deploy, forge install). Use when the user wants to create a Forge app (issue panels, dashboard gadgets, Confluence macros, global pages), is encountering Forge CLI errors or deployment issues (e.g. forge install failures, environment errors), or needs help with Forge-specific concepts like resolvers, UI Kit, manifest scopes, or developer spaces. Do not use for general Jira configuration, automation rules, JQL queries, or Atlassian REST API usage outside of a Forge app context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[979,980,983,984],{"name":9,"slug":8,"type":15},{"name":981,"slug":982,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},{"name":985,"slug":986,"type":15},"Plugin Development","plugin-development","2026-07-12T07:58:52.007851",{"slug":4,"name":4,"fn":5,"description":6,"org":989,"tags":990,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[991,992,993,994],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":996,"name":996,"fn":997,"description":998,"org":999,"tags":1000,"stars":23,"repoUrl":24,"updatedAt":1008},"forge-connector","build Atlassian Forge Teamwork Graph connectors","Guides building and deploying Atlassian Forge Teamwork Graph connector apps that ingest external data into Atlassian's Teamwork Graph, making it searchable in Rovo Search and surfaced in Rovo Chat. Use when the user wants to build a Forge connector, ingest external data into Atlassian, connect a third-party tool (e.g. Google Drive, ServiceNow, Salesforce) to Atlassian, make external content searchable in Rovo, build a graph:connector module, use the @forge\u002Fteamwork-graph SDK, or implement onConnectionChange \u002F validateConnection functions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1001,1004,1007],{"name":1002,"slug":1003,"type":15},"API Development","api-development",{"name":1005,"slug":1006,"type":15},"Engineering","engineering",{"name":940,"slug":941,"type":15},"2026-07-12T07:58:48.520248",{"slug":138,"name":138,"fn":1010,"description":1011,"org":1012,"tags":1013,"stars":23,"repoUrl":24,"updatedAt":1021},"optimize Atlassian Forge platform costs","Optimizes Atlassian Forge apps to reduce platform consumption and avoid unnecessary costs using Atlassian's \"Optimise Forge platform costs\" guidance. Use when the user asks to optimize Forge app costs, reduce Forge invocations, lower GB-seconds, reduce storage or log usage, tune memory, replace polling, improve scheduled triggers, reduce KVS writes, move work to the frontend, use bridge APIs, batch API calls, add caching, or evaluate Forge Remote trade-offs. By default, perform an audit first and offer to make the recommended changes after presenting the audit. Only modify files immediately when the user explicitly asks the agent to implement or apply optimizations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1014,1015,1018],{"name":9,"slug":8,"type":15},{"name":1016,"slug":1017,"type":15},"Cost Optimization","cost-optimization",{"name":1019,"slug":1020,"type":15},"Operations","operations","2026-07-12T07:58:53.557299",{"slug":150,"name":150,"fn":1023,"description":1024,"org":1025,"tags":1026,"stars":23,"repoUrl":24,"updatedAt":1030},"diagnose and fix Atlassian Forge apps","Diagnoses and fixes issues in Atlassian Forge apps. Use this skill whenever a Forge app has errors, crashes, shows blank UI, fails to deploy, doesn't appear after installation, has permission issues, or produces unexpected output. Trigger on any mention of forge logs, forge deploy errors, resolver errors, blank panels, missing scopes, Custom UI not rendering, production vs dev discrepancies, or any Jira\u002FConfluence app that \"stopped working\". Also trigger when the user asks to debug, troubleshoot, investigate, or fix a Forge app issue — even if they haven't used the word \"Forge\" but describe a Jira panel or Confluence macro acting up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1027,1028,1029],{"name":9,"slug":8,"type":15},{"name":965,"slug":966,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T07:58:47.226713",{"slug":125,"name":125,"fn":1032,"description":1033,"org":1034,"tags":1035,"stars":23,"repoUrl":24,"updatedAt":1043},"perform security reviews for Forge apps","Performs a white-box security review of Atlassian Forge apps using structured, Forge-specific security rules and evidence-driven reporting. Use when the user asks for a Forge security review, security audit, vuln assessment, pentest-style code review, authz review, tenant isolation analysis, web trigger hardening, or static analysis execution for a Forge app.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1036,1039,1040],{"name":1037,"slug":1038,"type":15},"Audit","audit",{"name":21,"slug":22,"type":15},{"name":1041,"slug":1042,"type":15},"Security","security","2026-07-12T07:58:54.806538",24,{"items":1046,"total":670},[1047,1054,1061,1067,1073,1079],{"slug":974,"name":974,"fn":975,"description":976,"org":1048,"tags":1049,"stars":23,"repoUrl":24,"updatedAt":987},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1050,1051,1052,1053],{"name":9,"slug":8,"type":15},{"name":981,"slug":982,"type":15},{"name":17,"slug":18,"type":15},{"name":985,"slug":986,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1055,"tags":1056,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1057,1058,1059,1060],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":996,"name":996,"fn":997,"description":998,"org":1062,"tags":1063,"stars":23,"repoUrl":24,"updatedAt":1008},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1064,1065,1066],{"name":1002,"slug":1003,"type":15},{"name":1005,"slug":1006,"type":15},{"name":940,"slug":941,"type":15},{"slug":138,"name":138,"fn":1010,"description":1011,"org":1068,"tags":1069,"stars":23,"repoUrl":24,"updatedAt":1021},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1070,1071,1072],{"name":9,"slug":8,"type":15},{"name":1016,"slug":1017,"type":15},{"name":1019,"slug":1020,"type":15},{"slug":150,"name":150,"fn":1023,"description":1024,"org":1074,"tags":1075,"stars":23,"repoUrl":24,"updatedAt":1030},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1076,1077,1078],{"name":9,"slug":8,"type":15},{"name":965,"slug":966,"type":15},{"name":17,"slug":18,"type":15},{"slug":125,"name":125,"fn":1032,"description":1033,"org":1080,"tags":1081,"stars":23,"repoUrl":24,"updatedAt":1043},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1082,1083,1084],{"name":1037,"slug":1038,"type":15},{"name":21,"slug":22,"type":15},{"name":1041,"slug":1042,"type":15}]