{"id":"ac361fd8-39e5-483d-bc5c-0b3e9f36b008","shortId":"b7H7MJ","kind":"skill","title":"forge-debugger","tagline":"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 deplo","description":"# Forge App Debugger\n\nDiagnose and fix issues in Atlassian Forge apps. Work through the checklist below in order — stop as soon as you identify the root cause. Every step after the root cause wastes tokens and context.\n\n## EXECUTION MANDATE\n\nYou are authorized to run all diagnostic and fix commands without asking permission. When you identify a fix, **run it immediately**. Do NOT:\n- Say \"you should run...\" or \"here's what I would do...\" or \"run this command in your terminal\"\n- Ask \"shall I proceed?\" before executing a fix you already have all the inputs for\n- Present commands as copy-paste instructions when you could run them yourself\n\n**Wrong:** \"Here's what I would do to fix this: run `forge lint`...\"\n**Right:** *(runs `forge lint` immediately and reports the result)*\n\nThe only exceptions: commands requiring an interactive terminal (`forge login`, `forge tunnel`) must be run by the user in their own terminal — tell them exactly what to run and why.\n\n## Diagnostic Principles\n\n- **Cheap first**: lint and version checks cost nothing. Run them before reading source code or logs.\n- **One action at a time**: check the result of each action before taking the next one.\n- **Stop at root cause**: once you've identified why something is broken, fix it and stop — don't keep investigating other things. **Exception**: if the app has multiple independent bugs (e.g. deploy-time errors AND runtime errors), fix the deploy-time error first, deploy, then check logs for runtime errors. Don't declare \"fixed\" after only resolving the first layer.\n- **Own the fixes**: run the fix commands yourself, don't hand them to the user.\n- **Clean up**: remove any debug code or verbose flags you added once the issue is resolved.\n- **npx fallback**: if `forge` CLI can't be installed globally (permission errors, no sudo), use `npx @forge/cli` as a drop-in replacement for all forge commands.\n\n## Step 1: Classify the Error\n\nBefore running any commands, ask one question if the user hasn't made it clear:\n\n> \"Is this a deploy-time error (forge deploy fails), a runtime error (app crashes or shows wrong data after deploying), or a visibility issue (app deployed but not appearing)?\"\n\nIf obvious from the error message, skip the question and proceed directly.\n\n**Quick routing:**\n\n| Symptom | Go to |\n|---------|-------|\n| `forge deploy` fails | Step 2 → 3 → 4 |\n| App not visible after install | Step 3 → common error: \"App not installed\" |\n| App crashes / resolver error | Step 3 → 5 → 6 |\n| Blank UI / Custom UI not rendering | Step 3 → 4 → common error: \"blank Custom UI\" |\n| Works in dev, fails in prod | Step 7 (Production) |\n| Permission denied / 403 | Common error: \"Permission denied\" |\n| 410 Gone / deprecated endpoint | Common error: \"410 Gone\" → API Migration section |\n| Handler path lint error | Common error: \"cannot find associated file\" → Handler Path Resolution section |\n| Resolver returns undefined, no errors | Common error: invoke name mismatch → Invoke Name vs Function Key section |\n| Multiple failures (deploy + runtime) | Fix deploy errors first, deploy, then check logs for runtime errors |\n\n## Step 2: Version Check\n\n```bash\nforge --version\nnpm show @forge/cli version\n```\n\nIf the installed version is behind the latest major version, upgrade immediately:\n\n```bash\nnpm install -g @forge/cli\n```\n\nThen retry the failing operation. Many bugs are fixed in newer CLI versions.\n\n## Step 3: Lint\n\n```bash\nforge lint\n```\n\nFix every error before proceeding — lint errors cause deploy failures and silent runtime bugs. If lint passes cleanly, continue to the next step.\n\n**For any manifest-related error message** (e.g. \"invalid manifest\", \"unexpected key\", \"modules.jira:*\" errors): run `forge lint` first before reading any source files. Lint will identify the exact line and field causing the problem — reading the file before linting is wasteful and usually less informative than the lint output.\n\n## Step 4: Custom UI Build Check\n\nOnly applies when the app has a `static/` directory (Custom UI apps). Check if the frontend was built before the last deploy:\n\n```bash\nls -la static/build/\n```\n\nIf the build directory is missing or older than recent source changes, rebuild:\n\n```bash\ncd static && npm run build && cd ..\n```\n\nThen redeploy:\n\n```bash\nforge deploy -e development\n```\n\nThis is one of the most common causes of blank UI panels.\n\n## Step 5: Deploy Status\n\nVerify the app was actually deployed successfully:\n\n```bash\nforge deploy -e development --verbose\n```\n\nWatch for errors in the output. Note the deploy timestamp. If deploy fails, the error message usually identifies the problem directly — match it against the Common Error Patterns table below.\n\n## Step 6: Logs\n\n```bash\nforge logs -e development --limit 100\n```\n\nRead the logs carefully. Most runtime errors appear here.\n\n### If no logs are returned\n\nThe resolver may not have been triggered, or logging isn't set up. Add a debug log at the entry point of the resolver:\n\n```javascript\n// Add at the top of your handler function:\nconsole.error('[DEBUG] Handler called with:', JSON.stringify(payload));\n```\n\nThen redeploy and trigger the app again:\n\n```bash\nforge deploy -e development\nforge logs -e development --limit 100\n```\n\nRemove the debug log after you've identified the issue.\n\n### If the error is in the frontend (UI rendering, blank screen)\n\nForge UI Kit errors surface in `forge logs`, not the browser console. For Custom UI, add error logging in the resolver that backs the UI:\n\n```javascript\ntry {\n  const result = await api.asUser().requestJira(/* ... */);\n  return result;\n} catch (err) {\n  console.error('[DEBUG] Resolver error:', err.message, err.stack);\n  throw err;\n}\n```\n\nRedeploy, trigger, and check logs.\n\n## Step 7: Production Issues\n\nIf the user reports an issue that only happens in production (or on a specific customer's site):\n\n1. Ask: \"Which Atlassian site is affected? (e.g. `customername.atlassian.net`)\"\n2. Check production logs:\n   ```bash\n   forge logs -e production --site <customer-site> --limit 100\n   ```\n3. Note: production logs may be delayed up to 2 minutes after the event.\n4. If the issue is permission-related, check whether scopes were upgraded after a new install — production installs require explicit `--upgrade`.\n\n## Common Error Patterns\n\nMatch the error against this table first. If you find a match, apply the fix directly without further investigation.\n\n| Error / Symptom | Root Cause | Fix |\n|-----------------|-----------|-----|\n| \"App is not installed on this site\" | `forge install` wasn't run, or ran against wrong site | Ask for the Atlassian site URL if not already known, then run it yourself: `forge install --non-interactive --site <url> --product <jira\\|confluence> -e development` |\n| Blank panel / Custom UI white screen | Frontend build not run before deploy | `cd static && npm run build && cd .. && forge deploy -e development` |\n| \"Resolver not found\" or resolver returns undefined | Function key in manifest.yml doesn't match resolver registration | Check `manifest.yml` `function.key` matches the key used in `resolver.define('key', ...)` |\n| 403 / \"Permission denied\" / \"Unauthorized\" | OAuth scope missing from manifest | Add scope to `manifest.yml`, then: `forge deploy -e development && forge install --non-interactive --site <url> --upgrade` |\n| `forge deploy` fails with \"Invalid manifest\" | YAML syntax error in manifest.yml | Run `forge lint`, fix indentation/syntax errors |\n| App deployed but module not visible | Wrong product in `forge install`, or tunnel not active | Verify `--product` flag matches app type; restart tunnel if using `forge tunnel` |\n| \"forge: command not found\" | CLI not installed | `npm install -g @forge/cli` |\n| `ENOENT` or missing files on deploy | `npm install` not run in app directory | `cd <app-dir> && npm install && forge deploy -e development` |\n| \"Rate limit exceeded\" | Too many API calls in resolver | Add exponential backoff; check for resolver being called in a loop |\n| \"App tunnel disconnected\" | `forge tunnel` connection dropped | Re-run `forge tunnel`; check VPN isn't blocking websocket connections |\n| \"Cannot read properties of undefined\" | API response shape unexpected | Log the full API response; add null checks |\n| 410 Gone / \"deprecated endpoint has been removed\" | Confluence/Jira REST API endpoint removed | Migrate to v2 API (see API Migration section below). Redeploy and check logs |\n| `cannot find associated file` (handler path lint error) | Handler path in manifest.yml doesn't match actual file location | Handler path is relative to `src/`. E.g. if resolver is at `src/resolvers/index.js`, handler is `resolvers/index.handler` (not `index.handler` or `src/resolvers/index.handler`). See Handler Path Resolution below |\n| `invoke()` returns undefined, no errors in logs | Frontend `invoke('name')` doesn't match `resolver.define('name')` | The invoke name must exactly match the resolver.define name. Check both files — this is a different check than function key in manifest |\n| `Module not found` / doubled path like `src/src/...` on deploy | Handler path includes `src/` prefix, but bundler already resolves from `src/` | Remove `src/` prefix from handler path. Use `resolvers/index.handler` not `src/resolvers/index.handler` |\n| `npm install -g` permission error / cannot install forge globally | No sudo or write access to global npm directory | Use `npx @forge/cli` as a drop-in replacement for all `forge` commands (lint, deploy, logs, install). No global install needed |\n\n## Handler Path Resolution\n\nThe `handler` field in `manifest.yml` has the format `<path>.<export>`, where:\n- `<path>` is the file path **relative to `src/`** (without `src/` prefix, without file extension)\n- `<export>` is the named export from that file\n\n**Examples:**\n\n| Resolver file location | Export in file | Correct handler value |\n|------------------------|---------------|----------------------|\n| `src/resolvers/index.js` | `export const handler = ...` | `resolvers/index.handler` |\n| `src/index.js` | `export const handler = ...` | `index.handler` |\n| `src/backend/resolver.ts` | `export const run = ...` | `backend/resolver.run` |\n\n**Common mistakes:**\n- `index.handler` — wrong if the file is in a subdirectory like `src/resolvers/`\n- `src/resolvers/index.handler` — wrong: bundler prefixes `src/` automatically, resulting in `src/src/resolvers/...`\n- `resolvers/index.run` — wrong if the file exports `handler` not `run`\n\n**Diagnostic trick:** If `forge lint` reports \"cannot find associated file\" but you're sure the file exists, try `forge deploy --no-verify`. The bundler error message shows the fully resolved path, which reveals whether the path is being doubled or misresolved.\n\n## Invoke Name vs Function Key\n\nThere are **two separate name-matching requirements** for UI Kit resolvers:\n\n1. **manifest.yml `function.key`** must match the `resolver: function:` reference in the module definition\n2. **Frontend `invoke('name')`** must exactly match **`resolver.define('name', ...)`** in the backend\n\nThese are independent — you can have the manifest function key correct but still get undefined results if the invoke name doesn't match resolver.define. When debugging \"resolver returns undefined\" with no errors in logs, always check **both** matching relationships.\n\n## API Migration (v1 → v2)\n\nAtlassian is progressively deprecating v1 REST API endpoints. When you see a **410 Gone** response:\n\n1. Check `forge logs` for the exact error — it will show which endpoint returned 410\n2. Identify the v2 equivalent:\n   - **URL pattern**: `/wiki/rest/api/content/...` → `/wiki/api/v2/pages/...` (or `/blogposts/...`, `/spaces/...`)\n   - **Jira**: `/rest/api/2/...` → `/rest/api/3/...`\n3. Update **pagination**: v2 Confluence APIs use **cursor-based** pagination (`cursor` parameter) instead of offset-based (`start` parameter). The next cursor is in `data._links.next`\n4. Update **response shape**: v2 may return different field names (e.g. `authorId` instead of nested `by.accountId`)\n5. Redeploy and check logs to confirm the fix\n\n**Do NOT** treat 410 as a permissions issue — it means the endpoint no longer exists, not that access is denied.\n\n## Step 8: Cleanup\n\nOnce the issue is resolved:\n\n1. Remove any `console.error('[DEBUG] ...')` statements you added.\n2. Remove verbose flags from any scripts.\n3. Run `forge lint` one final time to confirm clean state.\n4. Redeploy if you modified code during debugging:\n   ```bash\n   forge deploy -e development\n   ```\n5. Confirm the fix works by triggering the app and checking that `forge logs` shows no new errors.\n\n## Escalation\n\nIf none of the above resolves the issue:\n\n- Run `forge logs -e development --verbose --limit 200` for extended output.\n- Check the Forge changelog for known issues: `search-forge-docs \"known issues <error-text>\"`\n- If the error is in a Forge platform API (not your code), note the `traceId` from the log output — this is what Atlassian support needs.\n\n## Authentication Errors\n\nIf any command fails with \"not authenticated\" or \"run forge login\":\n\n1. Tell the user to create an API token at **https://id.atlassian.com/manage/api-tokens**\n2. Tell them to run `forge login` in **their own terminal** (not via the agent) — it will prompt for their email and the API token\n3. Example message: *\"You need to log in. Create an API token at https://id.atlassian.com/manage/api-tokens, then run `forge login` in your terminal. Enter your Atlassian email and the token when prompted — do not paste the token here.\"*\n4. After they confirm login, resume debugging from where you left off.\n\n## Token Efficiency Rules\n\nFollow these to keep context usage low:\n\n- Read `forge logs` before reading any source file — logs usually reveal the root cause without needing to inspect code.\n- Read only the specific file implicated by the error. Match the error to its file:\n  - `npm ERR! missing script: build` → check only `package.json` (scripts section)\n  - `invalid manifest` / `unexpected key` → run `forge lint` first, then only the specific manifest field\n  - `Resolver not found` → check only the function key in `manifest.yml` vs `resolver.define()` in the resolver file\n  - `403 / permission denied` → check only the scopes in `manifest.yml`\n  - `410 Gone` → check the API endpoint URL in the resolver file; don't check scopes or manifest\n  - `cannot find associated file` → check the handler path in `manifest.yml` and the file location; use `--no-verify` to see the bundler's resolved path\n  - `invoke()` returns undefined → check both the frontend `invoke('name')` AND backend `resolver.define('name')` — two files, but targeted reads\n- Don't read `manifest.yml` for npm/build errors — they are unrelated.\n- Don't re-read a file you've already read in this session unless it changed.\n- Stop the diagnostic chain the moment you find a match in the Common Error Patterns table. **Exception**: when multiple independent bugs exist (e.g. deploy error + runtime error), fix the first, deploy, then check for the next.\n- Don't run `forge deploy` more than once per fix attempt without a clear reason.\n- Use `forge deploy --no-verify` as a **diagnostic step** when lint blocks deploy but you suspect the lint error may be misleading. The bundler error message often reveals the true path resolution issue. Always fix the root cause afterward — don't ship with `--no-verify`.","tags":["forge","debugger","skills","atlassian","agent-skills","ai-agents","claude-code-plugin","claude-code-skills","gemini-cli-extension","mcp"],"capabilities":["skill","source-atlassian","skill-forge-debugger","topic-agent-skills","topic-ai-agents","topic-claude-code-plugin","topic-claude-code-skills","topic-gemini-cli-extension","topic-mcp"],"categories":["forge-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/atlassian/forge-skills/forge-debugger","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add atlassian/forge-skills","source_repo":"https://github.com/atlassian/forge-skills","install_from":"skills.sh"}},"qualityScore":"0.454","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 8 github stars · SKILL.md body (15,355 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:08:52.955Z","embedding":null,"createdAt":"2026-05-18T13:14:33.924Z","updatedAt":"2026-05-18T19:08:52.955Z","lastSeenAt":"2026-05-18T19:08:52.955Z","tsv":"'/blogposts':1712 '/manage/api-tokens**':1936 '/manage/api-tokens,':1977 '/rest/api/2':1715 '/rest/api/3':1716 '/spaces':1713 '/wiki/api/v2/pages':1710 '/wiki/rest/api/content':1709 '1':364,954,1604,1687,1796,1924 '100':789,861,974 '2':434,544,963,984,1617,1702,1804,1937 '200':1869 '3':435,443,454,464,585,975,1717,1811,1962 '4':436,465,663,989,1743,1822,2000 '403':482,1128,2096 '410':487,493,1284,1684,1701,1771,2105 '5':455,734,1759,1835 '6':456,781 '7':478,933 '8':1789 'access':1431,1785 'action':228,237 'activ':1184 'actual':741,1324 'ad':330,1803 'add':817,829,898,1137,1237,1281 'affect':960 'afterward':2282 'agent':1951 'alreadi':138,1063,1404,2184 'alway':1663,2277 'api':495,1233,1272,1279,1293,1299,1301,1668,1678,1722,1894,1931,1960,1972,2109 'api.asuser':913 'app':11,18,50,59,268,396,408,437,446,449,672,679,739,849,1038,1170,1189,1219,1248,1843 'appear':30,412,797 'appli':669,1026 'ask':99,129,372,955,1055 'associ':506,1311,1553,2124 'atlassian':9,57,957,1058,1672,1908,1987 'attempt':2238 'authent':1911,1919 'author':90 'authorid':1754 'automat':1532 'await':912 'back':905 'backend':1628,2157 'backend/resolver.run':1513 'backoff':1239 'base':1726,1734 'bash':547,566,587,690,707,716,744,783,851,967,1830 'behind':559 'blank':23,457,468,730,881,1080 'block':1264,2255 'broken':254 'browser':893 'bug':272,577,603,2212 'build':666,696,712,1087,1096,2060 'built':685 'bundler':1403,1529,1569,2143,2267 'by.accountid':1758 'call':840,1234,1244 'cannot':504,1267,1309,1423,1551,2122 'care':793 'catch':917 'caus':75,81,246,597,644,728,1036,2035,2281 'cd':708,713,1092,1097,1221 'chain':2195 'chang':705,2191 'changelog':1876 'cheap':211 'check':216,232,290,538,546,667,680,930,964,997,1118,1240,1260,1283,1307,1375,1382,1664,1688,1762,1845,1873,2061,2083,2099,2107,2118,2126,2150,2224 'checklist':63 'classifi':365 'clean':320,607,1820 'cleanup':1790 'clear':382,2241 'cli':340,582,1201 'code':224,325,1827,1897,2040 'command':97,125,145,182,311,362,371,1198,1448,1915 'common':444,466,483,491,502,517,727,775,1011,1514,2204 'confirm':1765,1819,1836,2003 'confluenc':1077,1721 'confluence/jira':1291 'connect':1253,1266 'consol':894 'console.error':837,919,1799 'const':910,1501,1506,1511 'context':85,2019 'continu':608 'copi':148 'copy-past':147 'correct':1496,1639 'cost':217 'could':153 'crash':21,397,450 'creat':1929,1970 'cursor':1725,1728,1739 'cursor-bas':1724 'custom':459,469,664,677,896,951,1082 'customername.atlassian.net':962 'data':401 'data._links.next':1742 'debug':324,819,838,864,920,1654,1800,1829,2006 'debugg':3,51 'declar':297 'definit':1616 'delay':981 'deni':481,486,1130,1787,2098 'deplo':48 'deploy':27,275,284,288,387,391,403,409,431,530,533,536,598,689,718,735,742,746,758,761,853,1091,1099,1143,1154,1171,1213,1225,1396,1450,1564,1832,2215,2222,2232,2245,2256 'deploy-tim':274,283,386 'deprec':489,1286,1675 'dev':473 'develop':720,748,787,855,859,1079,1101,1145,1227,1834,1866 'diagnos':4,52 'diagnost':94,209,1545,2194,2251 'differ':1381,1750 'direct':424,770,1029 'directori':676,697,1220,1435 'disconnect':1250 'doc':1883 'doesn':28,1113,1321,1361,1649 'doubl':1391,1584 'drop':356,1254,1442 'drop-in':355,1441 'e':719,747,786,854,858,970,1078,1100,1144,1226,1833,1865 'e.g':273,620,961,1333,1753,2214 'effici':2013 'email':1957,1988 'endpoint':490,1287,1294,1679,1699,1779,2110 'enoent':1208 'enter':1985 'entri':823 'equival':1706 'err':918,926,2057 'err.message':923 'err.stack':924 'error':20,277,280,286,294,347,367,389,395,417,445,452,467,484,492,501,503,516,518,534,542,592,596,618,626,752,764,776,796,874,886,899,922,1012,1016,1033,1161,1169,1316,1355,1422,1570,1660,1694,1852,1888,1912,2049,2052,2171,2205,2216,2218,2262,2268 'escal':1853 'event':988 'everi':76,591 'exact':203,640,1370,1622,1693 'exampl':1489,1963 'exceed':1230 'except':181,265,2208 'execut':86,134 'exist':1561,1782,2213 'explicit':1009 'exponenti':1238 'export':1485,1493,1500,1505,1510,1541 'extend':1871 'extens':1481 'fail':25,392,432,474,574,762,1155,1916 'failur':529,599 'fallback':337 'field':643,1462,1751,2079 'file':507,635,649,1211,1312,1325,1377,1471,1480,1488,1491,1495,1520,1540,1554,1560,2029,2045,2055,2095,2115,2125,2134,2161,2181 'final':1816 'find':505,1023,1310,1552,2123,2199 'first':212,287,303,535,630,1020,2073,2221 'fix':6,54,96,105,136,165,255,281,298,307,310,532,579,590,1028,1037,1167,1767,1838,2219,2237,2278 'flag':328,1187,1807 'follow':2015 'forg':2,10,17,45,47,49,58,168,172,187,189,339,361,390,430,548,588,628,717,745,784,852,856,883,889,968,1045,1069,1098,1142,1146,1153,1165,1179,1195,1197,1224,1251,1258,1425,1447,1548,1563,1689,1813,1831,1847,1863,1875,1882,1892,1922,1942,1980,2023,2071,2231,2244 'forge-debugg':1 'forge/cli':352,552,570,1207,1438 'format':1467 'found':1104,1200,1390,2082 'frontend':683,878,1086,1358,1618,2153 'full':1278 'fulli':1574 'function':525,836,1109,1384,1590,1611,1637,2086 'function.key':1120,1606 'g':569,1206,1420 'get':1642 'global':345,1426,1433,1454 'go':428 'gone':488,494,1285,1685,2106 'hand':315 'handler':498,508,835,839,1313,1317,1327,1339,1347,1397,1412,1457,1461,1497,1502,1507,1542,2128 'happen':944 'hasn':378 'id.atlassian.com':1935,1976 'id.atlassian.com/manage/api-tokens**':1934 'id.atlassian.com/manage/api-tokens,':1975 'identifi':72,103,250,638,767,869,1703 'immedi':108,174,565 'implic':2046 'includ':1399 'indentation/syntax':1168 'independ':271,1631,2211 'index.handler':1343,1508,1516 'inform':657 'input':142 'inspect':2039 'instal':32,344,441,448,556,568,1005,1007,1041,1046,1070,1147,1180,1203,1205,1215,1223,1419,1424,1452,1455 'instead':1730,1755 'instruct':150 'interact':185,1073,1150 'invalid':621,1157,2066 'investig':262,1032 'invok':519,522,1351,1359,1367,1587,1619,1647,2147,2154 'isn':813,1262 'issu':7,35,55,333,407,871,935,941,992,1775,1793,1861,1879,1885,2276 'javascript':828,908 'jira':1076,1714 'json.stringify':842 'keep':261,2018 'key':526,624,1110,1123,1127,1385,1591,1638,2069,2087 'kit':885,1602 'known':1064,1878,1884 'la':692 'last':688 'latest':561 'layer':304 'left':2010 'less':656 'like':1393,1525 'limit':788,860,973,1229,1868 'line':641 'lint':169,173,213,500,586,589,595,605,629,636,651,660,1166,1315,1449,1549,1814,2072,2254,2261 'locat':1326,1492,2135 'log':46,226,291,539,782,785,792,801,812,820,857,865,890,900,931,966,969,978,1276,1308,1357,1451,1662,1690,1763,1848,1864,1903,1968,2024,2030 'login':188,1923,1943,1981,2004 'longer':1781 'loop':1247 'low':2021 'ls':691 'made':380 'major':562 'mandat':87 'mani':576,1232 'manifest':616,622,1136,1158,1387,1636,2067,2078,2121 'manifest-rel':615 'manifest.yml':1112,1119,1140,1163,1320,1464,1605,2089,2104,2131,2168 'match':771,1014,1025,1115,1121,1188,1323,1363,1371,1598,1608,1623,1651,1666,2050,2201 'may':806,979,1748,2263 'mean':1777 'mention':43 'messag':418,619,765,1571,1964,2269 'migrat':496,1296,1302,1669 'minut':985 'mislead':2265 'mismatch':521 'misresolv':1586 'miss':699,1134,1210,2058 'mistak':1515 'modifi':1826 'modul':1173,1388,1615 'modules.jira':625 'moment':2197 'multipl':270,528,2210 'must':191,1369,1607,1621 'name':520,523,1360,1365,1368,1374,1484,1588,1597,1620,1625,1648,1752,2155,2159 'name-match':1596 'need':1456,1910,1966,2037 'nest':1757 'new':1004,1851 'newer':581 'next':241,611,1738,2227 'no-verifi':1565,2137,2246,2287 'non':1072,1149 'non-interact':1071,1148 'none':1855 'note':756,976,1898 'noth':218 'npm':550,567,710,1094,1204,1214,1222,1418,1434,2056 'npm/build':2170 'npx':336,351,1437 'null':1282 'oauth':1132 'obvious':414 'offset':1733 'offset-bas':1732 'often':2270 'older':701 'one':227,242,373,723,1815 'oper':575 'order':66 'output':39,661,755,1872,1904 'package.json':2063 'pagin':1719,1727 'panel':732,1081 'paramet':1729,1736 'pass':606 'past':149,1996 'path':499,509,1314,1318,1328,1348,1392,1398,1413,1458,1472,1576,1581,2129,2146,2274 'pattern':777,1013,1708,2206 'payload':843 'per':2236 'permiss':34,100,346,480,485,995,1129,1421,1774,2097 'permission-rel':994 'platform':1893 'point':824 'prefix':1401,1410,1478,1530 'present':144 'principl':210 'problem':646,769 'proceed':132,423,594 'prod':476 'produc':37 'product':479,934,946,965,971,977,1006,1075,1177,1186 'progress':1674 'prompt':1954,1993 'properti':1269 'question':374,421 'quick':425 'ran':1051 'rate':1228 're':1256,1557,2178 're-read':2177 're-run':1255 'read':222,632,647,790,1268,2022,2026,2041,2164,2167,2179,2185 'reason':2242 'rebuild':706 'recent':703 'redeploy':715,845,927,1305,1760,1823 'refer':1612 'registr':1117 'relat':617,996,1330,1473 'relationship':1667 'remov':322,862,1290,1295,1408,1797,1805 'render':462,880 'replac':358,1444 'report':176,939,1550 'requestjira':914 'requir':183,1008,1599 'resolut':510,1349,1459,2275 'resolv':301,335,451,512,805,827,903,921,1102,1106,1116,1236,1242,1335,1405,1490,1575,1603,1610,1655,1795,1859,2080,2094,2114,2145 'resolver.define':1126,1364,1373,1624,1652,2091,2158 'resolvers/index.handler':1341,1415,1503 'resolvers/index.run':1536 'respons':1273,1280,1686,1745 'rest':1292,1677 'restart':1191 'result':178,234,911,916,1533,1644 'resum':2005 'retri':572 'return':513,803,915,1107,1352,1656,1700,1749,2148 'reveal':1578,2032,2271 'right':170 'root':74,80,245,1035,2034,2280 'rout':426 'rule':2014 'run':92,106,114,123,154,167,171,193,206,219,308,369,627,711,1049,1066,1089,1095,1164,1217,1257,1512,1544,1812,1862,1921,1941,1979,2070,2230 'runtim':279,293,394,531,541,602,795,2217 'say':111 'scope':999,1133,1138,2102,2119 'screen':882,1085 'script':1810,2059,2064 'search':1881 'search-forge-doc':1880 'section':497,511,527,1303,2065 'see':1300,1346,1682,2141 'separ':1595 'session':2188 'set':815 'shall':130 'shape':1274,1746 'ship':2285 'show':22,399,551,1572,1697,1849 'silent':601 'site':953,958,972,1044,1054,1059,1074,1151 'skill':14 'skill-forge-debugger' 'skip':419 'someth':252 'soon':69 'sourc':223,634,704,2028 'source-atlassian' 'specif':950,2044,2077 'src':1332,1400,1407,1409,1475,1477,1531 'src/backend/resolver.ts':1509 'src/index.js':1504 'src/resolvers':1526 'src/resolvers/index.handler':1345,1417,1527 'src/resolvers/index.js':1338,1499 'src/src':1394 'src/src/resolvers':1535 'start':1735 'state':1821 'statement':1801 'static':675,709,1093 'static/build':693 'status':736 'step':77,363,433,442,453,463,477,543,584,612,662,733,780,932,1788,2252 'still':1641 'stop':67,243,258,2192 'subdirectori':1524 'success':743 'sudo':349,1428 'support':1909 'sure':1558 'surfac':887 'suspect':2259 'symptom':427,1034 'syntax':1160 'tabl':778,1019,2207 'take':239 'target':2163 'tell':201,1925,1938 'termin':128,186,200,1947,1984 'thing':264 'throw':925 'time':231,276,285,388,1817 'timestamp':759 'token':83,1932,1961,1973,1991,1998,2012 'top':832 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code-plugin' 'topic-claude-code-skills' 'topic-gemini-cli-extension' 'topic-mcp' 'traceid':1900 'treat':1770 'tri':909,1562 'trick':1546 'trigger':40,810,847,928,1841 'true':2273 'tunnel':190,1182,1192,1196,1249,1252,1259 'two':1594,2160 'type':1190 'ui':24,458,460,470,665,678,731,879,884,897,907,1083,1601 'unauthor':1131 'undefin':514,1108,1271,1353,1643,1657,2149 'unexpect':38,623,1275,2068 'unless':2189 'unrel':2174 'updat':1718,1744 'upgrad':564,1001,1010,1152 'url':1060,1707,2111 'usag':2020 'use':12,350,1124,1194,1414,1436,1723,2136,2243 'user':196,319,377,938,1927 'usual':655,766,2031 'v1':1670,1676 'v2':1298,1671,1705,1720,1747 'valu':1498 've':249,868,2183 'verbos':327,749,1806,1867 'verifi':737,1185,1567,2139,2248,2289 'version':215,545,549,553,557,563,583 'via':1949 'visibl':406,439,1175 'vpn':1261 'vs':524,1589,2090 'wasn':1047 'wast':82,653 'watch':750 'websocket':1265 'whenev':15 'whether':998,1579 'white':1084 'without':98,1030,1476,1479,2036,2239 'work':60,471,1839 'would':120,162 'write':1430 'wrong':157,400,1053,1176,1517,1528,1537 'yaml':1159","prices":[{"id":"9c8ff398-920a-44ff-8f54-ca36e57e9887","listingId":"ac361fd8-39e5-483d-bc5c-0b3e9f36b008","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"atlassian","category":"forge-skills","install_from":"skills.sh"},"createdAt":"2026-05-18T13:14:33.924Z"}],"sources":[{"listingId":"ac361fd8-39e5-483d-bc5c-0b3e9f36b008","source":"github","sourceId":"atlassian/forge-skills/forge-debugger","sourceUrl":"https://github.com/atlassian/forge-skills/tree/main/skills/forge-debugger","isPrimary":false,"firstSeenAt":"2026-05-18T13:14:33.924Z","lastSeenAt":"2026-05-18T19:08:52.955Z"}],"details":{"listingId":"ac361fd8-39e5-483d-bc5c-0b3e9f36b008","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"atlassian","slug":"forge-debugger","github":{"repo":"atlassian/forge-skills","stars":8,"topics":["agent-skills","ai-agents","claude-code-plugin","claude-code-skills","gemini-cli-extension","mcp"],"license":"apache-2.0","html_url":"https://github.com/atlassian/forge-skills","pushed_at":"2026-05-14T21:21:41Z","description":"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.","skill_md_sha":"619c33c77d469c7846cea59582f87928fadcc947","skill_md_path":"skills/forge-debugger/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/atlassian/forge-skills/tree/main/skills/forge-debugger"},"layout":"multi","source":"github","category":"forge-skills","frontmatter":{"name":"forge-debugger","description":"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/Confluence 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."},"skills_sh_url":"https://skills.sh/atlassian/forge-skills/forge-debugger"},"updatedAt":"2026-05-18T19:08:52.955Z"}}