{"id":"1422d17c-56f6-4344-b448-85db7ec2a28c","shortId":"QUn8zs","kind":"skill","title":"forge-app-builder","tagline":"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 pag","description":"# Forge App Builder\n\n**When building a Forge app, the agent MUST complete this workflow in order. Do not skip steps. Do not substitute manual instructions for running the scripts below.**\n\n## Critical Rules\n\n1. **Always use `forge create`** to scaffold apps — it registers the app and generates a valid app ID\n2. **Never manually scaffold** — apps without valid app IDs cannot be deployed\n3. **If `forge create` fails, STOP** — inform the user and provide the manual command\n4. **Never ask for API tokens in chat** — direct users to run `forge login` in their terminal and enter credentials there\n5. **Always ask the user to choose** when multiple options exist (developer spaces, sites) — never pick on their behalf\n6. **Always ask the user for their Atlassian site URL during installation** — never try to discover it from other apps, environment variables, or any other source\n7. **Always run the deploy script for deploy and install** — do not give the user only manual `forge deploy` / `forge install` commands as the primary outcome; run `scripts.deploy_forge_app.py` yourself\n\n## MCP Server Prerequisites\n\nThis skill works best with the following MCP servers. The scripts and CLI workflow function without them, but the agent will lack access to up-to-date Forge documentation for template selection, module configuration, and code patterns.\n\n\n| MCP Server    | Required?            | Purpose                                                                   |\n| ------------- | -------------------- | ------------------------------------------------------------------------- |\n| **Forge MCP** | Strongly recommended | Template lookup, module discovery, manifest syntax, UI Kit/backend guides |\n| **ADS MCP**   | Optional             | Atlaskit component/token/icon lookup (Custom UI apps only)                |\n\n\nIf MCP servers are not connected, inform the user that code guidance may be based on the model's training data and could be outdated. Recommend they verify against [developer.atlassian.com/platform/forge](https://developer.atlassian.com/platform/forge/).\n                                                             |\n\n## Agent Workflow\n\n**Complete steps 0–5 in order. Run the scripts yourself; do not only instruct the user to run them.**\n\n### Step 0: Prerequisites (Install Automatically If Missing)\n\n**Before any other steps**, call the `forge-development-guide` tool to get the current Node.js version requirement and CLI setup instructions. Then check and install prerequisites:\n\n1. **Node.js** — Run `node -v`. If missing or below the version specified in the development guide:\n  - **macOS (Homebrew):** `brew install node`\n  - **nvm:** `nvm install <version>` then `nvm use <version>`\n  - **fnm:** `fnm install <version>` then `fnm use <version>`\n  - **Other:** [https://nodejs.org](https://nodejs.org) (LTS)\n2. **Forge CLI** — Run `forge --version`. If missing:\n  ```bash\n   npm install -g @forge/cli\n  ```\n3. **Forge login** — Run `forge whoami`. If not logged in:\n  - **Never ask for or accept API tokens in chat** — tokens are sensitive; the user must enter them only in their terminal\n  - Direct the user to create an API token: [https://id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens)\n  - Tell the user to run `forge login` **in their own terminal** (not via the agent). The CLI will prompt for:\n    - Atlassian email\n    - API token (paste only in the terminal when prompted)\n  - Example message: *\"You need to log in to Forge. Create an API token at [https://id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens), then run `forge login` in your terminal. Enter your email and token when prompted — do not paste them here.\"*\n  - After the user confirms they've logged in, retry the workflow\n\nInstall in order: Node.js first (required for npm), then Forge CLI, then login. Retry the workflow after installing.\n\n### Step 1: Discover Developer Spaces\n\n```bash\nforge developer-spaces list --json\n```\n\n### Step 2: Ask User to Choose Developer Space\n\n**Do not proceed to Step 3 until the user has selected a developer space.** Present the list from Step 1 (names and IDs) and ask which space to use. If only one space exists, you may use it and briefly inform the user. Never pick one of multiple spaces on the user's behalf.\n\n### Step 3: Create App\n\nAll `python3 -m scripts.`* commands must be run from the skill directory (the directory containing this SKILL.md file). Derive it from the SKILL.md path provided in the system prompt. Use `python3` on macOS if `python` is not available.\n\nRun from the skill directory. The `--directory` flag sets the **parent directory** under which the app folder (named after `--name`) will be created. The script `cd`s into that directory before running `forge create`, so the app appears as a subdirectory (e.g. `<parent-directory>/<app-name>/`). If omitted, the app is created under the current directory.\n\n```bash\npython3 -m scripts.create_forge_app \\\n  --template <template> \\\n  --name <app-name> \\\n  --dev-space-id <selected-id> \\\n  --directory <parent-directory>\n```\n\nTo find the right template for the user's needs:\n\n- Call `list-forge-modules` to identify the appropriate module type\n- Call `search-forge-docs` with a query like \"template for \" to find the matching template name\n\nValidate a template: `python3 -m scripts.list_templates --validate <name>`\nList all templates: `python3 -m scripts.list_templates --list`\n\n### Step 4: Customize Code\n\nAfter `forge create` succeeds:\n\n```bash\ncd <app-name>\nnpm install\n```\n\n#### UI Kit vs Custom UI — Choose the Right Tools\n\nBefore writing any UI code, determine which approach the app uses. **Getting this wrong causes import errors and broken builds.**\n\n- **UI Kit** (most `forge create` templates): manifest uses `render: native` or code imports from `@forge/react`. Use `forge-ui-kit-developer-guide` as the ONLY UI reference. Do NOT suggest `@atlaskit/`* imports — they won't work.\n- **Custom UI**: manifest has `resource` pointing to a `static/` directory. Use ADS MCP tools (`ads_plan`, `ads_get_components`, `ads_get_all_icons`) for component discovery. Do NOT use `forge-ui-kit-developer-guide` — it describes a different API.\n\n#### Knowledge tools for implementation\n\n- `forge-ui-kit-developer-guide` — Frontend components (**UI Kit only**)\n- `ads_plan` / `ads_get_components` — Component and token lookup (**Custom UI only**)\n- `forge-backend-developer-guide` — Backend resolvers and APIs\n- `forge-app-manifest-guide` — Manifest configuration\n- `search-forge-docs` — Search for specific APIs or props\n\n### Step 5: Deploy and Install (run the deploy script)\n\n**You MUST run the deploy script** — do not only paste manual `forge deploy` / `forge install` commands for the user to run. Execute the script from the skill directory.\n\n- **If you have the user's Atlassian site URL** (e.g. they provided it earlier or in the request), run in one go:\n\n```bash\npython3 -m scripts.deploy_forge_app \\\n  --app-dir <app-directory> \\\n  --site <site-url> \\\n  --product <jira|confluence>\n```\n\n- **If you do not have the site URL yet:** run deploy only, then ask for the site, then run again to install:\n\n```bash\n# 1) Deploy only\npython3 -m scripts.deploy_forge_app \\\n  --app-dir <app-directory> \\\n  --product <jira|confluence> \\\n  --deploy-only\n\n# 2) Ask the user: \"What is your Atlassian site URL (e.g. yourcompany.atlassian.net)?\"\n\n# 3) After they reply, run again with their site to complete install\npython3 -m scripts.deploy_forge_app \\\n  --app-dir <app-directory> \\\n  --site <site-url> \\\n  --product <jira|confluence> \\\n  --skip-deps\n```\n\n**Always ask the user for their site URL** when needed for install; never try to discover it. If scopes changed from a previous install, add `--upgrade` to the install (or run the script again with `--site` and the script will handle it; for manual upgrade use `forge install ... --upgrade`).\n\n#### Cross-product installation\n\nWhen an app uses scopes from multiple products (e.g. a Confluence macro that also reads Jira data), the deploy script **automatically detects** the required products from the manifest scopes and installs on all of them. The `--product` flag sets the primary product; the script adds any additional products found in the scopes.\n\nIf you need to install manually, run `forge install` once per product:\n\n```bash\nforge install --non-interactive --site <site-url> --product confluence -e development\nforge install --non-interactive --site <site-url> --product jira -e development\n```\n\n## Handling `forge create` Failures\n\nWhen `forge create` fails, **never attempt workarounds or manual scaffolding**.\n\n\n| Error                                      | Action                                                                                                                                            |\n| ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Prerequisites missing (Node.js, Forge CLI) | Run Step 0 install commands, then retry                                                                                                           |\n| \"Prompts can not be meaningfully rendered\" | Ask user to run `forge create` in an interactive terminal                                                                                         |\n| \"No developer spaces found\"                | Direct user to [https://developer.atlassian.com/console/](https://developer.atlassian.com/console/)                                               |\n| \"directory already exists\"                 | A folder named `<app-name>` already exists inside the parent directory. Choose a different name or remove the existing folder                     |\n| Network/auth issues, not logged in         | Direct user to [https://id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens), then run `forge login` in their terminal |\n| Any other error                            | Show error, ask user for guidance                                                                                                                 |\n\n\nExample response when it fails:\n\n```\nforge create needs an interactive terminal. Please run:\n\n  forge create --template jira-dashboard-gadget my-app-name\n\nOnce created, let me know and I'll help customize it.\n```\n\n## Module Selection\n\nCall `list-forge-modules` for a comprehensive, up-to-date list of all available modules organized by product. Then use `search-forge-docs` with the module name for configuration details and YAML examples.\n\n## Scripts\n\n\n| Script                        | Purpose                                                                                                                                                                                               |\n| ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `scripts/create_forge_app.py` | Create app with dev space selection and template validation. `--directory` sets the parent dir (script cd's into it). Run: `python3 -m scripts.create_forge_app`                                      |\n| `scripts/list_templates.py`   | List/validate all Forge templates from Atlassian registry. Run: `python3 -m scripts.list_templates`                                                                                                   |\n| `scripts/deploy_forge_app.py` | Deploy and install app (prerequisites check, npm install, lint, deploy, install). Auto-detects cross-product scopes and installs on all required products. Run: `python3 -m scripts.deploy_forge_app` |\n\n\n## Completion checklist\n\nBefore considering the workflow done, confirm:\n\n- User selected developer space when more than one existed (or only one existed)\n- App was created via `create_forge_app` (or user ran `forge create` after a failure)\n- Code was customized and `npm install` run in the app directory\n- **Deploy script was executed by the agent** (not only manual commands given to the user)\n- If install was needed, user was asked for site URL and the script was run with `--site` (or user provided site and install completed)\n- If the app uses cross-product scopes (e.g. Confluence app reading Jira data), it was installed on **all** required products (the deploy script handles this automatically)\n\n## Common agent mistakes (avoid these)\n\n- **Picking a developer space when multiple exist** — always ask the user to choose.\n- **Skipping the deploy script** — giving only \"run `forge deploy` and `forge install`\" instructions instead of running `deploy_forge_app.py` yourself.\n- **Not asking for site URL** — when install is required, ask the user for their Atlassian site URL; do not guess or skip install.\n- **Proceeding to create app before user chooses a developer space** — wait for their selection when there are multiple spaces.\n\n## Troubleshooting\n\nFor CLI commands, debugging techniques, and common error patterns, call `forge-development-guide`. For quick checks:\n\n- **Not logged in / auth failed**: Create API token at [id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens), then run `forge login` in your terminal (never paste token in chat)\n- **App not appearing after install**: Check `forge logs -e development --limit 50`, verify manifest with `forge lint`, re-install with `--upgrade` if scopes changed\n- **\"forge: command not found\"**: `npm install -g @forge/cli`","tags":["forge","app","builder","skills","atlassian","agent-skills","ai-agents","claude-code-plugin","claude-code-skills","gemini-cli-extension","mcp"],"capabilities":["skill","source-atlassian","skill-forge-app-builder","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-app-builder","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 (13,644 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.648Z","embedding":null,"createdAt":"2026-05-18T13:14:33.529Z","updatedAt":"2026-05-18T19:08:52.648Z","lastSeenAt":"2026-05-18T19:08:52.648Z","tsv":"'/console/](https://developer.atlassian.com/console/)':1306 '/manage/api-tokens](https://id.atlassian.com/manage/api-tokens)':462 '/manage/api-tokens](https://id.atlassian.com/manage/api-tokens),':510,1338,1721 '/platform/forge](https://developer.atlassian.com/platform/forge/).':315 '0':320,338,1276 '1':77,371,560,598,1059 '2':95,408,572,1076 '3':107,421,584,634,1088 '4':121,795 '5':142,321,965 '50':1745 '6':161 '7':187 'accept':435 'access':241 'action':1268 'ad':274,882,885,887,890,926,928 'add':1139,1212 'addit':1214 'agent':54,238,316,477,1554,1615 'alreadi':1308,1313 'also':1181 'alway':78,143,162,188,1115,1626 'api':125,436,458,485,505,910,946,961,1716 'app':3,13,36,46,52,84,88,93,99,102,180,282,636,690,711,720,732,824,949,1028,1030,1066,1068,1104,1106,1170,1377,1433,1456,1474,1500,1522,1528,1546,1589,1597,1676,1734 'app-dir':1029,1067,1105 'appear':712,1736 'approach':822 'appropri':758 'ask':123,144,163,432,573,603,1049,1077,1116,1287,1351,1569,1627,1651,1659 'atlaskit':277,865 'atlassian':11,168,483,1007,1083,1463,1664 'attempt':1262 'auth':1713 'auto':1483 'auto-detect':1482 'automat':341,1188,1613 'avail':674,1407 'avoid':1617 'backend':940,943 'base':298 'bash':416,564,727,802,1023,1058,1232 'behalf':160,632 'best':222 'brew':389 'briefli':618 'broken':833 'build':6,49,834 'builder':4,47 'built':16 'call':348,750,761,1392,1702 'cannot':104 'caus':829 'cd':700,803,1447 'chang':1134,1758 'chat':128,439,1733 'check':367,1476,1709,1739 'checklist':1502 'choos':148,576,811,1319,1631,1679 'cli':20,231,363,410,479,551,1273,1694 'code':255,294,797,819,846,1537 'command':120,208,641,988,1278,1558,1695,1760 'common':1614,1699 'complet':56,318,1098,1501,1586 'compon':889,895,922,930,931 'component/token/icon':278 'comprehens':1399 'configur':253,953,1423 'confirm':533,1508 'confluenc':41,1035,1072,1111,1178,1240,1596 'connect':289 'consid':1504 'contain':651 'could':306 'creat':22,33,81,110,456,503,635,697,708,722,800,839,1255,1259,1292,1361,1369,1380,1432,1524,1526,1533,1675,1715 'credenti':140 'critic':75 'cross':1165,1486,1592 'cross-product':1164,1485,1591 'current':358,725 'custom':14,280,796,809,871,935,1388,1539 'dashboard':39,1373 'data':304,1184,1600 'date':246,1403 'debug':1696 'dep':1114 'deploy':7,24,106,191,194,205,966,971,977,985,1046,1060,1074,1186,1471,1480,1548,1609,1634,1640 'deploy-on':1073 'deploy_forge_app.py':1648 'deriv':655 'describ':907 'detail':1424 'detect':1189,1484 'determin':820 'dev':736,1435 'dev-space-id':735 'develop':153,352,385,562,567,577,591,855,904,919,941,1242,1252,1298,1511,1621,1681,1705,1743 'developer-spac':566 'developer.atlassian.com':314,1305 'developer.atlassian.com/console/](https://developer.atlassian.com/console/)':1304 'developer.atlassian.com/platform/forge](https://developer.atlassian.com/platform/forge/).':313 'differ':909,1321 'dir':1031,1069,1107,1445 'direct':129,452,1301,1333 'directori':648,650,679,681,686,704,726,739,880,1000,1307,1318,1441,1547 'discov':176,561,1130 'discoveri':268,896 'doc':765,957,1417 'document':248 'done':1507 'e':1241,1251,1742 'e.g':716,1010,1086,1176,1595 'earlier':1014 'email':484,520 'enter':139,446,518 'environ':181 'error':831,1267,1348,1350,1700 'exampl':494,1355,1427 'execut':994,1551 'exist':152,612,1309,1314,1326,1517,1521,1625 'extens':15 'fail':111,1260,1359,1714 'failur':1256,1536 'file':654 'find':741,773 'first':545 'flag':682,1205 'fnm':398,399,402 'folder':691,1311,1327 'follow':225 'forg':2,12,19,21,23,25,35,45,51,80,109,133,204,206,247,261,351,409,412,422,425,468,502,513,550,565,707,731,753,764,799,838,852,901,916,939,948,956,984,986,1027,1065,1103,1161,1227,1233,1243,1254,1258,1272,1291,1341,1360,1368,1395,1416,1455,1460,1499,1527,1532,1639,1642,1704,1724,1740,1749,1759 'forge-app-build':1 'forge-app-manifest-guid':947 'forge-backend-developer-guid':938 'forge-development-guid':350,1703 'forge-ui-kit-developer-guid':851,900,915 'forge/cli':420,1766 'forge/react':849 'found':1216,1300,1762 'frontend':921 'function':233 'g':419,1765 'gadget':40,1374 'generat':90 'get':356,826,888,891,929 'give':199,1636 'given':1559 'global':43 'go':1022 'guess':1669 'guid':5,273,353,386,856,905,920,942,951,1706 'guidanc':295,1354 'handl':1155,1253,1611 'help':1387 'homebrew':388 'icon':893 'id':94,103,601,738 'id.atlassian.com':461,509,1337,1720 'id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens)':460 'id.atlassian.com/manage/api-tokens](https://id.atlassian.com/manage/api-tokens),':508,1336,1719 'identifi':756 'implement':914 'import':830,847,866 'inform':113,290,619 'insid':1315 'instal':10,26,172,196,207,340,369,390,394,400,418,541,558,805,968,987,1057,1099,1126,1138,1143,1162,1167,1198,1224,1228,1234,1244,1277,1473,1478,1481,1490,1542,1564,1585,1603,1643,1656,1672,1738,1753,1764 'instead':1645 'instruct':69,331,365,1644 'interact':1237,1247,1295,1364 'issu':37,1329 'jira':1034,1071,1110,1183,1250,1372,1599 'jira-dashboard-gadget':1371 'json':570 'kit':807,836,854,903,918,924 'kit/backend':272 'know':1383 'knowledg':911 'lack':240 'let':1381 'like':769 'limit':1744 'lint':1479,1750 'list':569,595,752,786,793,1394,1404 'list-forge-modul':751,1393 'list/validate':1458 'll':1386 'log':429,499,536,1331,1711,1741 'login':134,423,469,514,553,1342,1725 'lookup':266,279,934 'lts':407 'm':639,729,782,790,1025,1063,1101,1453,1467,1497 'maco':387,669 'macro':42,1179 'manifest':269,841,873,950,952,1195,1747 'manual':68,97,119,203,983,1158,1225,1265,1557 'match':775 'may':296,614 'mcp':216,226,257,262,275,285,883 'meaning':1285 'messag':495 'miss':343,377,415,1270 'mistak':1616 'model':301 'modul':252,267,754,759,1390,1396,1408,1420 'multipl':150,626,1174,1624,1690 'must':55,445,642,974 'my-app-nam':1375 'name':599,692,694,734,777,1312,1322,1378,1421 'nativ':844 'need':497,749,1124,1222,1362,1566 'network/auth':1328 'never':96,122,156,173,431,622,1127,1261,1729 'node':374,391 'node.js':359,372,544,1271 'nodejs.org':405,406 'non':1236,1246 'non-interact':1235,1245 'npm':417,548,804,1477,1541,1763 'nvm':392,393,396 'omit':718 'one':610,624,1021,1516,1520 'option':151,276 'order':60,323,543 'organ':1409 'outcom':212 'outdat':308 'pag':44 'panel':38 'parent':685,1317,1444 'past':487,527,982,1730 'path':660 'pattern':256,1701 'per':1230 'pick':157,623,1619 'plan':886,927 'pleas':1366 'point':876 'prerequisit':218,339,370,1269,1475 'present':593 'previous':1137 'primari':211,1208 'proceed':581,1673 'product':1033,1070,1109,1166,1175,1192,1204,1209,1215,1231,1239,1249,1411,1487,1494,1593,1607 'prompt':481,493,524,665,1281 'prop':963 'provid':117,661,1012,1582 'purpos':260,1430 'python':671 'python3':638,667,728,781,789,1024,1062,1100,1452,1466,1496 'queri':768 'quick':1708 'ran':1531 're':1752 're-instal':1751 'read':1182,1598 'recommend':264,309 'refer':861 'regist':86 'registri':1464 'remov':1324 'render':843,1286 'repli':1091 'request':1018 'requir':259,361,546,1191,1493,1606,1658 'resolv':944 'resourc':875 'respons':1356 'retri':538,554,1280 'right':743,813 'rule':76 'run':71,132,189,213,324,335,373,411,424,467,512,644,675,706,969,975,993,1019,1045,1054,1092,1145,1226,1274,1290,1340,1367,1451,1465,1495,1543,1577,1638,1647,1723 'scaffold':83,98,1266 'scope':1133,1172,1196,1219,1488,1594,1757 'script':73,192,229,326,640,699,972,978,996,1147,1153,1187,1211,1428,1429,1446,1549,1575,1610,1635 'scripts.create':730,1454 'scripts.deploy':1026,1064,1102,1498 'scripts.deploy_forge_app.py':214 'scripts.list':783,791,1468 'scripts/create_forge_app.py':1431 'scripts/deploy_forge_app.py':1470 'scripts/list_templates.py':1457 'search':763,955,958,1415 'search-forge-doc':762,954,1414 'select':251,589,1391,1437,1510,1686 'sensit':442 'server':217,227,258,286 'set':683,1206,1442 'setup':364 'show':1349 'site':155,169,1008,1032,1042,1052,1084,1096,1108,1121,1150,1238,1248,1571,1579,1583,1653,1665 'skill':220,647,678,999 'skill-forge-app-builder' 'skill.md':653,659 'skip':63,1113,1632,1671 'skip-dep':1112 'sourc':186 'source-atlassian' 'space':154,563,568,578,592,605,611,627,737,1299,1436,1512,1622,1682,1691 'specif':960 'specifi':382 'static':879 'step':64,319,337,347,559,571,583,597,633,794,964,1275 'stop':112 'strong':263 'subdirectori':715 'substitut':67 'succeed':801 'suggest':864 'syntax':270 'system':664 'techniqu':1697 'tell':463 'templat':250,265,733,744,770,776,780,784,788,792,840,1370,1439,1461,1469 'termin':137,451,473,491,517,1296,1345,1365,1728 'token':126,437,440,459,486,506,522,933,1717,1731 'tool':354,814,884,912 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code-plugin' 'topic-claude-code-skills' 'topic-gemini-cli-extension' 'topic-mcp' 'train':303 'tri':174,1128 'troubleshoot':8,1692 'type':760 'ui':271,281,806,810,818,835,853,860,872,902,917,923,936 'up-to-d':243,1400 'upgrad':1140,1159,1163,1755 'url':170,1009,1043,1085,1122,1572,1654,1666 'use':27,79,397,403,607,615,666,825,842,850,881,899,1160,1171,1413,1590 'user':30,115,130,146,165,201,292,333,444,454,465,532,574,587,621,630,747,991,1005,1079,1118,1288,1302,1334,1352,1509,1530,1562,1567,1581,1629,1661,1678 'v':375 'valid':92,101,778,785,1440 'variabl':182 've':535 'verifi':311,1746 'version':360,381,413 'via':475,1525 'vs':808 'wait':1683 'want':31 'whoami':426 'without':100,234 'won':868 'work':221,870 'workaround':1263 'workflow':58,232,317,540,556,1506 'write':816 'wrong':828 'yaml':1426 'yet':1044 'yourcompany.atlassian.net':1087","prices":[{"id":"21c7b23c-900b-4478-94da-45e0f5607dc1","listingId":"1422d17c-56f6-4344-b448-85db7ec2a28c","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.529Z"}],"sources":[{"listingId":"1422d17c-56f6-4344-b448-85db7ec2a28c","source":"github","sourceId":"atlassian/forge-skills/forge-app-builder","sourceUrl":"https://github.com/atlassian/forge-skills/tree/main/skills/forge-app-builder","isPrimary":false,"firstSeenAt":"2026-05-18T13:14:33.529Z","lastSeenAt":"2026-05-18T19:08:52.648Z"}],"details":{"listingId":"1422d17c-56f6-4344-b448-85db7ec2a28c","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"atlassian","slug":"forge-app-builder","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":"061731e8bb7eb13088b1a967dd388bb7ae8d5b7e","skill_md_path":"skills/forge-app-builder/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/atlassian/forge-skills/tree/main/skills/forge-app-builder"},"layout":"multi","source":"github","category":"forge-skills","frontmatter":{"name":"forge-app-builder","license":"Apache-2.0","description":"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."},"skills_sh_url":"https://skills.sh/atlassian/forge-skills/forge-app-builder"},"updatedAt":"2026-05-18T19:08:52.648Z"}}