@synapta/skills 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (354) hide show
  1. package/dist/index.js +11 -4
  2. package/package.json +3 -4
  3. package/skills/ATTRIBUTION.md +80 -0
  4. package/skills/accessibility-audit/SKILL.md +325 -0
  5. package/skills/accessibility-audit/reference/wcag-checklist.md +103 -0
  6. package/skills/apns-notifier/SKILL.md +86 -0
  7. package/skills/approval-policy-enforcer/SKILL.md +66 -0
  8. package/skills/apps-sdk-builder/LICENSE.txt +201 -0
  9. package/skills/apps-sdk-builder/SKILL.md +328 -0
  10. package/skills/apps-sdk-builder/agents/openai.yaml +13 -0
  11. package/skills/apps-sdk-builder/references/app-archetypes.md +132 -0
  12. package/skills/apps-sdk-builder/references/apps-sdk-docs-workflow.md +135 -0
  13. package/skills/apps-sdk-builder/references/interactive-state-sync-patterns.md +113 -0
  14. package/skills/apps-sdk-builder/references/repo-contract-and-validation.md +93 -0
  15. package/skills/apps-sdk-builder/references/search-fetch-standard.md +67 -0
  16. package/skills/apps-sdk-builder/references/upstream-example-workflow.md +79 -0
  17. package/skills/apps-sdk-builder/references/window-openai-patterns.md +79 -0
  18. package/skills/apps-sdk-builder/scripts/scaffold_node_ext_apps.mjs +606 -0
  19. package/skills/architecture-selector/SKILL.md +64 -0
  20. package/skills/backlog-planner/SKILL.md +68 -0
  21. package/skills/carplay-entitlement-checker/SKILL.md +82 -0
  22. package/skills/concept-deepener/SKILL.md +86 -0
  23. package/skills/concept-discovery/SKILL.md +517 -0
  24. package/skills/concept-discovery/assets/sample-analysis.json +81 -0
  25. package/skills/concept-discovery/expected_outputs/sample-enum-dictionary.md +25 -0
  26. package/skills/concept-discovery/expected_outputs/sample-page-user-list.md +83 -0
  27. package/skills/concept-discovery/expected_outputs/sample-prd-readme.md +43 -0
  28. package/skills/concept-discovery/references/framework-patterns.md +228 -0
  29. package/skills/concept-discovery/references/prd-quality-checklist.md +65 -0
  30. package/skills/concept-discovery/scripts/codebase_analyzer.py +732 -0
  31. package/skills/concept-discovery/scripts/prd_scaffolder.py +435 -0
  32. package/skills/dast-zap/SKILL.md +453 -0
  33. package/skills/dast-zap/assets/.gitkeep +9 -0
  34. package/skills/dast-zap/assets/github_action.yml +207 -0
  35. package/skills/dast-zap/assets/gitlab_ci.yml +226 -0
  36. package/skills/dast-zap/assets/zap_automation.yaml +196 -0
  37. package/skills/dast-zap/assets/zap_context.xml +192 -0
  38. package/skills/dast-zap/references/EXAMPLE.md +40 -0
  39. package/skills/dast-zap/references/api_testing_guide.md +475 -0
  40. package/skills/dast-zap/references/authentication_guide.md +431 -0
  41. package/skills/dast-zap/references/false_positive_handling.md +427 -0
  42. package/skills/dast-zap/references/owasp_mapping.md +255 -0
  43. package/skills/dep-sbom-scan/SKILL.md +466 -0
  44. package/skills/deploy-cloudflare/SKILL.md +930 -0
  45. package/skills/deploy-docker/SKILL.md +55 -0
  46. package/skills/deploy-fly/SKILL.md +228 -0
  47. package/skills/deploy-k8s/SKILL.md +108 -0
  48. package/skills/deploy-k8s/assets/logo.png +0 -0
  49. package/skills/deploy-k8s/docs/README.md +29 -0
  50. package/skills/deploy-k8s/docs/SUMMARY.md +56 -0
  51. package/skills/deploy-k8s/docs/advanced/token-efficiency.md +61 -0
  52. package/skills/deploy-k8s/docs/architecture/multi-tenancy.md +96 -0
  53. package/skills/deploy-k8s/docs/architecture/storage-and-state.md +102 -0
  54. package/skills/deploy-k8s/docs/architecture/workload-patterns.md +87 -0
  55. package/skills/deploy-k8s/docs/book.json +16 -0
  56. package/skills/deploy-k8s/docs/community/changelog.md +34 -0
  57. package/skills/deploy-k8s/docs/community/contributing.md +67 -0
  58. package/skills/deploy-k8s/docs/core-concepts/failure-modes.md +153 -0
  59. package/skills/deploy-k8s/docs/core-concepts/philosophy.md +83 -0
  60. package/skills/deploy-k8s/docs/core-concepts/workflow.md +124 -0
  61. package/skills/deploy-k8s/docs/examples/bad-patterns.md +47 -0
  62. package/skills/deploy-k8s/docs/examples/do-dont-checklist.md +37 -0
  63. package/skills/deploy-k8s/docs/examples/good-patterns.md +49 -0
  64. package/skills/deploy-k8s/docs/failure-modes/api-drift.md +104 -0
  65. package/skills/deploy-k8s/docs/failure-modes/fragile-rollouts.md +99 -0
  66. package/skills/deploy-k8s/docs/failure-modes/insecure-workload-defaults.md +80 -0
  67. package/skills/deploy-k8s/docs/failure-modes/network-exposure.md +98 -0
  68. package/skills/deploy-k8s/docs/failure-modes/privilege-sprawl.md +91 -0
  69. package/skills/deploy-k8s/docs/failure-modes/resource-starvation.md +85 -0
  70. package/skills/deploy-k8s/docs/getting-started/installation.md +152 -0
  71. package/skills/deploy-k8s/docs/getting-started/quick-start.md +115 -0
  72. package/skills/deploy-k8s/docs/guides/helm-patterns.md +71 -0
  73. package/skills/deploy-k8s/docs/guides/kustomize-patterns.md +65 -0
  74. package/skills/deploy-k8s/docs/guides/observability.md +67 -0
  75. package/skills/deploy-k8s/docs/guides/security-hardening.md +59 -0
  76. package/skills/deploy-k8s/docs/guides/validation-and-policy.md +66 -0
  77. package/skills/deploy-k8s/docs/integrations/mcp-integration.md +52 -0
  78. package/skills/deploy-k8s/docs/package-lock.json +2892 -0
  79. package/skills/deploy-k8s/docs/package.json +13 -0
  80. package/skills/deploy-k8s/references/api-drift.md +298 -0
  81. package/skills/deploy-k8s/references/conditional/aks-patterns.md +70 -0
  82. package/skills/deploy-k8s/references/conditional/eks-patterns.md +79 -0
  83. package/skills/deploy-k8s/references/conditional/gitops-controllers.md +71 -0
  84. package/skills/deploy-k8s/references/conditional/gke-patterns.md +74 -0
  85. package/skills/deploy-k8s/references/conditional/observability-stacks.md +80 -0
  86. package/skills/deploy-k8s/references/conditional/openshift-patterns.md +67 -0
  87. package/skills/deploy-k8s/references/daemonset-operator-patterns.md +155 -0
  88. package/skills/deploy-k8s/references/deployment-patterns.md +146 -0
  89. package/skills/deploy-k8s/references/do-dont-patterns.md +87 -0
  90. package/skills/deploy-k8s/references/examples-bad.md +282 -0
  91. package/skills/deploy-k8s/references/examples-good.md +440 -0
  92. package/skills/deploy-k8s/references/fragile-rollouts.md +303 -0
  93. package/skills/deploy-k8s/references/helm-patterns.md +203 -0
  94. package/skills/deploy-k8s/references/insecure-workload-defaults.md +300 -0
  95. package/skills/deploy-k8s/references/job-patterns.md +120 -0
  96. package/skills/deploy-k8s/references/kustomize-patterns.md +239 -0
  97. package/skills/deploy-k8s/references/multi-tenancy.md +343 -0
  98. package/skills/deploy-k8s/references/network-exposure.md +481 -0
  99. package/skills/deploy-k8s/references/observability.md +302 -0
  100. package/skills/deploy-k8s/references/privilege-sprawl.md +273 -0
  101. package/skills/deploy-k8s/references/resource-starvation.md +374 -0
  102. package/skills/deploy-k8s/references/security-hardening.md +209 -0
  103. package/skills/deploy-k8s/references/stateful-patterns.md +130 -0
  104. package/skills/deploy-k8s/references/storage-and-state.md +330 -0
  105. package/skills/deploy-k8s/references/validation-and-policy.md +242 -0
  106. package/skills/deploy-railway/SKILL.md +235 -0
  107. package/skills/deploy-railway/references/analyze-db-mongo.md +84 -0
  108. package/skills/deploy-railway/references/analyze-db-mysql.md +254 -0
  109. package/skills/deploy-railway/references/analyze-db-postgres.md +479 -0
  110. package/skills/deploy-railway/references/analyze-db-redis.md +208 -0
  111. package/skills/deploy-railway/references/analyze-db.md +344 -0
  112. package/skills/deploy-railway/references/configure.md +309 -0
  113. package/skills/deploy-railway/references/deploy.md +195 -0
  114. package/skills/deploy-railway/references/operate.md +214 -0
  115. package/skills/deploy-railway/references/request.md +248 -0
  116. package/skills/deploy-railway/references/setup.md +312 -0
  117. package/skills/deploy-railway/scripts/analyze-mongo.py +1549 -0
  118. package/skills/deploy-railway/scripts/analyze-mysql.py +1195 -0
  119. package/skills/deploy-railway/scripts/analyze-postgres.py +3058 -0
  120. package/skills/deploy-railway/scripts/analyze-redis.py +1090 -0
  121. package/skills/deploy-railway/scripts/dal.py +671 -0
  122. package/skills/deploy-railway/scripts/enable-pg-stats.py +170 -0
  123. package/skills/deploy-railway/scripts/pg-extensions.py +370 -0
  124. package/skills/deploy-railway/scripts/railway-api.sh +52 -0
  125. package/skills/deploy-ssh/SKILL.md +91 -0
  126. package/skills/deploy-vercel/SKILL.md +304 -0
  127. package/skills/deploy-vercel/resources/deploy-codex.sh +301 -0
  128. package/skills/deploy-vercel/resources/deploy.sh +301 -0
  129. package/skills/docs-runbooks/SKILL.md +399 -0
  130. package/skills/drive-status-renderer/SKILL.md +62 -0
  131. package/skills/iac-scan/SKILL.md +680 -0
  132. package/skills/iac-scan/assets/.gitkeep +9 -0
  133. package/skills/iac-scan/assets/checkov_config.yaml +94 -0
  134. package/skills/iac-scan/assets/github_actions.yml +199 -0
  135. package/skills/iac-scan/assets/gitlab_ci.yml +218 -0
  136. package/skills/iac-scan/assets/pre_commit_config.yaml +92 -0
  137. package/skills/iac-scan/references/EXAMPLE.md +40 -0
  138. package/skills/iac-scan/references/compliance_mapping.md +237 -0
  139. package/skills/iac-scan/references/custom_policies.md +460 -0
  140. package/skills/iac-scan/references/suppression_guide.md +431 -0
  141. package/skills/incident-briefing/SKILL.md +66 -0
  142. package/skills/incident-triage/SKILL.md +481 -0
  143. package/{LICENSE → skills/mcp-builder/LICENSE.txt} +15 -14
  144. package/skills/mcp-builder/SKILL.md +244 -0
  145. package/skills/mcp-builder/reference/evaluation.md +602 -0
  146. package/skills/mcp-builder/reference/mcp_best_practices.md +249 -0
  147. package/skills/mcp-builder/reference/node_mcp_server.md +970 -0
  148. package/skills/mcp-builder/reference/python_mcp_server.md +719 -0
  149. package/skills/mcp-builder/scripts/connections.py +151 -0
  150. package/skills/mcp-builder/scripts/evaluation.py +373 -0
  151. package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  152. package/skills/mcp-builder/scripts/requirements.txt +2 -0
  153. package/skills/mobile-pairing/SKILL.md +52 -0
  154. package/skills/ops-sre/SKILL.md +297 -0
  155. package/skills/playwright-qa/LICENSE.txt +201 -0
  156. package/skills/playwright-qa/NOTICE.txt +14 -0
  157. package/skills/playwright-qa/SKILL.md +156 -0
  158. package/skills/playwright-qa/agents/openai.yaml +6 -0
  159. package/skills/playwright-qa/assets/playwright-small.svg +3 -0
  160. package/skills/playwright-qa/assets/playwright.png +0 -0
  161. package/skills/playwright-qa/references/cli.md +116 -0
  162. package/skills/playwright-qa/references/workflows.md +95 -0
  163. package/skills/playwright-qa/scripts/playwright_cli.sh +25 -0
  164. package/skills/release-publish/SKILL.md +85 -0
  165. package/skills/repo-bootstrap/SKILL.md +92 -0
  166. package/skills/repo-bootstrap/assets/example-workflows/validate-agents.yml +89 -0
  167. package/skills/repo-bootstrap/assets/root-thin.md +141 -0
  168. package/skills/repo-bootstrap/assets/root-verbose.md +149 -0
  169. package/skills/repo-bootstrap/assets/scoped/backend-go.md +107 -0
  170. package/skills/repo-bootstrap/assets/scoped/backend-php.md +94 -0
  171. package/skills/repo-bootstrap/assets/scoped/backend-python.md +84 -0
  172. package/skills/repo-bootstrap/assets/scoped/backend-typescript.md +89 -0
  173. package/skills/repo-bootstrap/assets/scoped/claude-code-skill.md +101 -0
  174. package/skills/repo-bootstrap/assets/scoped/cli.md +83 -0
  175. package/skills/repo-bootstrap/assets/scoped/concourse.md +196 -0
  176. package/skills/repo-bootstrap/assets/scoped/ddev.md +68 -0
  177. package/skills/repo-bootstrap/assets/scoped/docker.md +160 -0
  178. package/skills/repo-bootstrap/assets/scoped/documentation.md +98 -0
  179. package/skills/repo-bootstrap/assets/scoped/examples.md +96 -0
  180. package/skills/repo-bootstrap/assets/scoped/frontend-typescript.md +88 -0
  181. package/skills/repo-bootstrap/assets/scoped/github-actions.md +174 -0
  182. package/skills/repo-bootstrap/assets/scoped/gitlab-ci.md +174 -0
  183. package/skills/repo-bootstrap/assets/scoped/oro-bundle.md +209 -0
  184. package/skills/repo-bootstrap/assets/scoped/oro-project.md +170 -0
  185. package/skills/repo-bootstrap/assets/scoped/python-modern.md +170 -0
  186. package/skills/repo-bootstrap/assets/scoped/resources.md +96 -0
  187. package/skills/repo-bootstrap/assets/scoped/skill-repo.md +139 -0
  188. package/skills/repo-bootstrap/assets/scoped/symfony.md +168 -0
  189. package/skills/repo-bootstrap/assets/scoped/testing.md +87 -0
  190. package/skills/repo-bootstrap/assets/scoped/typo3-docs.md +103 -0
  191. package/skills/repo-bootstrap/assets/scoped/typo3-extension.md +133 -0
  192. package/skills/repo-bootstrap/assets/scoped/typo3-project.md +137 -0
  193. package/skills/repo-bootstrap/assets/scoped/typo3-testing.md +80 -0
  194. package/skills/repo-bootstrap/checkpoints.yaml +279 -0
  195. package/skills/repo-bootstrap/evals/evals.json +385 -0
  196. package/skills/repo-bootstrap/references/ai-contribution-guidelines.md +63 -0
  197. package/skills/repo-bootstrap/references/ai-tool-compatibility.md +223 -0
  198. package/skills/repo-bootstrap/references/directory-coverage.md +82 -0
  199. package/skills/repo-bootstrap/references/examples/coding-agent-cli/AGENTS.md +70 -0
  200. package/skills/repo-bootstrap/references/examples/coding-agent-cli/go.mod +3 -0
  201. package/skills/repo-bootstrap/references/examples/coding-agent-cli/scripts-AGENTS.md +389 -0
  202. package/skills/repo-bootstrap/references/examples/express-api-ts/.env.example +13 -0
  203. package/skills/repo-bootstrap/references/examples/express-api-ts/AGENTS.md +91 -0
  204. package/skills/repo-bootstrap/references/examples/express-api-ts/package.json +33 -0
  205. package/skills/repo-bootstrap/references/examples/express-api-ts/pnpm-lock.yaml +3 -0
  206. package/skills/repo-bootstrap/references/examples/express-api-ts/src/AGENTS.md +91 -0
  207. package/skills/repo-bootstrap/references/examples/express-api-ts/src/config.ts +28 -0
  208. package/skills/repo-bootstrap/references/examples/express-api-ts/src/controllers/userController.ts +74 -0
  209. package/skills/repo-bootstrap/references/examples/express-api-ts/src/index.ts +26 -0
  210. package/skills/repo-bootstrap/references/examples/express-api-ts/src/middleware/errorHandler.ts +45 -0
  211. package/skills/repo-bootstrap/references/examples/express-api-ts/src/middleware/requestLogger.ts +18 -0
  212. package/skills/repo-bootstrap/references/examples/express-api-ts/src/routes/health.ts +18 -0
  213. package/skills/repo-bootstrap/references/examples/express-api-ts/src/routes/users.ts +13 -0
  214. package/skills/repo-bootstrap/references/examples/express-api-ts/src/utils/errors.ts +40 -0
  215. package/skills/repo-bootstrap/references/examples/express-api-ts/src/utils/logger.ts +14 -0
  216. package/skills/repo-bootstrap/references/examples/express-api-ts/tsconfig.json +24 -0
  217. package/skills/repo-bootstrap/references/examples/fastapi-app/.env.example +19 -0
  218. package/skills/repo-bootstrap/references/examples/fastapi-app/AGENTS.md +92 -0
  219. package/skills/repo-bootstrap/references/examples/fastapi-app/pyproject.toml +88 -0
  220. package/skills/repo-bootstrap/references/examples/fastapi-app/src/AGENTS.md +85 -0
  221. package/skills/repo-bootstrap/references/examples/fastapi-app/src/__init__.py +3 -0
  222. package/skills/repo-bootstrap/references/examples/fastapi-app/src/config.py +49 -0
  223. package/skills/repo-bootstrap/references/examples/fastapi-app/src/main.py +66 -0
  224. package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/__init__.py +13 -0
  225. package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/item.py +43 -0
  226. package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/user.py +40 -0
  227. package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/__init__.py +5 -0
  228. package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/health.py +20 -0
  229. package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/items.py +61 -0
  230. package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/users.py +55 -0
  231. package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/__init__.py +6 -0
  232. package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/item_service.py +77 -0
  233. package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/user_service.py +69 -0
  234. package/skills/repo-bootstrap/references/examples/fastapi-app/uv.lock +4 -0
  235. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/.scopes +3 -0
  236. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/AGENTS.md +86 -0
  237. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/admin/package.json +20 -0
  238. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/admin/src/App.tsx +5 -0
  239. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/cmd/api/main.go +7 -0
  240. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/go.mod +2 -0
  241. package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/main.go +7 -0
  242. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/.scopes +3 -0
  243. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/AGENTS.md +89 -0
  244. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/go.mod +2 -0
  245. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/AGENTS.md +90 -0
  246. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/package.json +17 -0
  247. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/App.tsx +1 -0
  248. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Button.tsx +1 -0
  249. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Footer.tsx +1 -0
  250. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Header.tsx +1 -0
  251. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Sidebar.tsx +1 -0
  252. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/main.go +7 -0
  253. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/package-lock.json +0 -0
  254. package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/package.json +12 -0
  255. package/skills/repo-bootstrap/references/examples/ldap-selfservice/AGENTS.md +70 -0
  256. package/skills/repo-bootstrap/references/examples/ldap-selfservice/go.mod +3 -0
  257. package/skills/repo-bootstrap/references/examples/ldap-selfservice/internal-AGENTS.md +371 -0
  258. package/skills/repo-bootstrap/references/examples/ldap-selfservice/internal-web-AGENTS.md +448 -0
  259. package/skills/repo-bootstrap/references/examples/php-with-frontend/.scopes +3 -0
  260. package/skills/repo-bootstrap/references/examples/php-with-frontend/AGENTS.md +91 -0
  261. package/skills/repo-bootstrap/references/examples/php-with-frontend/composer.json +8 -0
  262. package/skills/repo-bootstrap/references/examples/php-with-frontend/package.json +15 -0
  263. package/skills/repo-bootstrap/references/examples/php-with-frontend/pnpm-lock.yaml +0 -0
  264. package/skills/repo-bootstrap/references/examples/php-with-frontend/src/Controller.php +3 -0
  265. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/AGENTS.md +92 -0
  266. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/package.json +26 -0
  267. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/App.tsx +3 -0
  268. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Button.tsx +10 -0
  269. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Footer.tsx +9 -0
  270. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Header.tsx +9 -0
  271. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/main.tsx +3 -0
  272. package/skills/repo-bootstrap/references/examples/php-with-frontend/web/tsconfig.json +13 -0
  273. package/skills/repo-bootstrap/references/examples/pnpm-workspace/AGENTS.md +75 -0
  274. package/skills/repo-bootstrap/references/examples/pnpm-workspace/package.json +7 -0
  275. package/skills/repo-bootstrap/references/examples/pnpm-workspace/packages/web/package.json +11 -0
  276. package/skills/repo-bootstrap/references/examples/pnpm-workspace/packages/web/src/index.ts +11 -0
  277. package/skills/repo-bootstrap/references/examples/pnpm-workspace/pnpm-lock.yaml +42 -0
  278. package/skills/repo-bootstrap/references/examples/pnpm-workspace/pnpm-workspace.yaml +2 -0
  279. package/skills/repo-bootstrap/references/examples/simple-ldap-go/AGENTS.md +70 -0
  280. package/skills/repo-bootstrap/references/examples/simple-ldap-go/examples-AGENTS.md +45 -0
  281. package/skills/repo-bootstrap/references/examples/simple-ldap-go/go.mod +3 -0
  282. package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/AGENTS.md +70 -0
  283. package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/Classes-AGENTS.md +392 -0
  284. package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/composer.json +8 -0
  285. package/skills/repo-bootstrap/references/feedback-memory-schema.md +135 -0
  286. package/skills/repo-bootstrap/references/git-hooks-setup.md +79 -0
  287. package/skills/repo-bootstrap/references/output-structure.md +124 -0
  288. package/skills/repo-bootstrap/references/scripts-guide.md +175 -0
  289. package/skills/repo-bootstrap/references/verification-guide.md +137 -0
  290. package/skills/repo-bootstrap/scripts/analyze-git-history.sh +315 -0
  291. package/skills/repo-bootstrap/scripts/check-freshness.sh +230 -0
  292. package/skills/repo-bootstrap/scripts/detect-golden-samples.sh +161 -0
  293. package/skills/repo-bootstrap/scripts/detect-heuristics.sh +93 -0
  294. package/skills/repo-bootstrap/scripts/detect-project.sh +486 -0
  295. package/skills/repo-bootstrap/scripts/detect-scopes.sh +330 -0
  296. package/skills/repo-bootstrap/scripts/detect-utilities.sh +133 -0
  297. package/skills/repo-bootstrap/scripts/extract-adrs.sh +194 -0
  298. package/skills/repo-bootstrap/scripts/extract-agent-configs.sh +331 -0
  299. package/skills/repo-bootstrap/scripts/extract-architecture-rules.sh +522 -0
  300. package/skills/repo-bootstrap/scripts/extract-ci-commands.sh +385 -0
  301. package/skills/repo-bootstrap/scripts/extract-ci-rules.sh +384 -0
  302. package/skills/repo-bootstrap/scripts/extract-commands.sh +358 -0
  303. package/skills/repo-bootstrap/scripts/extract-documentation.sh +308 -0
  304. package/skills/repo-bootstrap/scripts/extract-github-rulesets.sh +96 -0
  305. package/skills/repo-bootstrap/scripts/extract-github-settings.sh +88 -0
  306. package/skills/repo-bootstrap/scripts/extract-ide-settings.sh +228 -0
  307. package/skills/repo-bootstrap/scripts/extract-platform-files.sh +290 -0
  308. package/skills/repo-bootstrap/scripts/extract-quality-configs.sh +442 -0
  309. package/skills/repo-bootstrap/scripts/generate-agents.sh +2424 -0
  310. package/skills/repo-bootstrap/scripts/generate-file-map.sh +153 -0
  311. package/skills/repo-bootstrap/scripts/lib/config-root.sh +211 -0
  312. package/skills/repo-bootstrap/scripts/lib/summary.sh +244 -0
  313. package/skills/repo-bootstrap/scripts/lib/template.sh +397 -0
  314. package/skills/repo-bootstrap/scripts/validate-structure.sh +324 -0
  315. package/skills/repo-bootstrap/scripts/verify-commands.sh +615 -0
  316. package/skills/repo-bootstrap/scripts/verify-content.sh +302 -0
  317. package/skills/schema-api-contracts/SKILL.md +56 -0
  318. package/skills/secret-hygiene/SKILL.md +511 -0
  319. package/skills/secret-hygiene/assets/.gitkeep +9 -0
  320. package/skills/secret-hygiene/assets/config-balanced.toml +81 -0
  321. package/skills/secret-hygiene/assets/config-custom.toml +178 -0
  322. package/skills/secret-hygiene/assets/config-strict.toml +48 -0
  323. package/skills/secret-hygiene/assets/github-action.yml +181 -0
  324. package/skills/secret-hygiene/assets/gitlab-ci.yml +257 -0
  325. package/skills/secret-hygiene/assets/precommit-config.yaml +70 -0
  326. package/skills/secret-hygiene/references/EXAMPLE.md +40 -0
  327. package/skills/secret-hygiene/references/compliance_mapping.md +538 -0
  328. package/skills/secret-hygiene/references/detection_rules.md +276 -0
  329. package/skills/secret-hygiene/references/false_positives.md +598 -0
  330. package/skills/secret-hygiene/references/remediation_guide.md +530 -0
  331. package/skills/stack-selector/SKILL.md +56 -0
  332. package/skills/telegram-control/SKILL.md +110 -0
  333. package/skills/telegram-control/references/architecture.md +184 -0
  334. package/skills/telegram-control/references/convex.md +173 -0
  335. package/skills/telegram-control/references/error_handling.md +212 -0
  336. package/skills/telegram-control/references/initial_setup.md +165 -0
  337. package/skills/telegram-control/references/telegram_api.md +156 -0
  338. package/skills/telegram-control/scripts/cancel_message.ts +53 -0
  339. package/skills/telegram-control/scripts/list_scheduled.ts +103 -0
  340. package/skills/telegram-control/scripts/logger.ts +121 -0
  341. package/skills/telegram-control/scripts/proxy-util.ts +11 -0
  342. package/skills/telegram-control/scripts/schedule_message.ts +216 -0
  343. package/skills/telegram-control/scripts/send_message.ts +115 -0
  344. package/skills/telegram-control/scripts/setup.ts +185 -0
  345. package/skills/telegram-control/scripts/types.ts +75 -0
  346. package/skills/telegram-control/scripts/view_history.ts +74 -0
  347. package/skills/test-strategy/SKILL.md +352 -0
  348. package/skills/threat-model/SKILL.md +303 -0
  349. package/skills/threat-model/examples/example-output.md +196 -0
  350. package/skills/threat-model/template.md +96 -0
  351. package/skills/ts-lint/SKILL.md +80 -0
  352. package/skills/ui-flow/SKILL.md +668 -0
  353. package/skills/voice-command-router/SKILL.md +51 -0
  354. package/skills/widget-live-activity-sync/SKILL.md +66 -0
@@ -0,0 +1,64 @@
1
+ ---
2
+ name: architecture-selector
3
+ description: Choose the simplest architecture that satisfies a captured ArchitectureBrief. Default to a modular monolith with Twelve-Factor practices; justify distributed services only when the brief surfaces concrete constraints (tenancy isolation, geo latency, independent deploy cadence, regulatory).
4
+ triggers: [synapta architecture, architecture selection, monolith vs microservices, stack architecture, system design]
5
+ network: off
6
+ tools: [Read, Write, Glob]
7
+ source:
8
+ origin: authored-by-synapta
9
+ reason: "No community SKILL.md found that acts as a true multi-axis architecture selector (existing skills are framework advocates, not selectors)."
10
+ citation_patterns:
11
+ - "Twelve-Factor App (https://12factor.net)"
12
+ - "AWS Well-Architected (https://aws.amazon.com/architecture/well-architected/)"
13
+ - "Monolith First — Martin Fowler (https://martinfowler.com/bliki/MonolithFirst.html)"
14
+ - "Choose Boring Technology — Dan McKinley (https://boringtechnology.club)"
15
+ ---
16
+
17
+ # Architecture Selector
18
+
19
+ Read the `ArchitectureBrief` artifact and produce an `ArchitectureDoc` + ADRs. Pick the simplest architecture that satisfies the brief's hard constraints. Be ruthless about ruling out complexity.
20
+
21
+ ## Default architecture
22
+
23
+ **Modular monolith + Twelve-Factor**, deployed to a single platform target (Vercel / Fly / Railway / Cloudflare / Docker / K8s / SSH — see deployment adapters).
24
+
25
+ This is the default unless the brief surfaces ≥1 of:
26
+ - **Tenancy isolation requirement** (regulated multi-tenant data; hardware isolation needed)
27
+ - **Geo latency budget** below ~150ms p95 to multiple regions simultaneously
28
+ - **Independent deploy cadence** across teams that can't share a release train
29
+ - **Regulatory boundary** that requires physical separation (e.g. FedRAMP High zones, HIPAA isolation)
30
+ - **Scale break**: existing component throughput is >1 OOM beyond what a monolith can serve, *measured*, not projected
31
+
32
+ If none of the above appear in the brief, the answer is the modular monolith.
33
+
34
+ ## Process
35
+
36
+ 1. **Read the brief**. Extract scale (concurrent users, peak load, growth curve), latency targets, tenancy, compliance, data sensitivity, integrations, offline, team size, release cadence, uptime target, geo.
37
+ 2. **Run the decision matrix**:
38
+
39
+ | Axis | Monolith | Distributed |
40
+ |---|---|---|
41
+ | Team size | ≤ ~15 engineers | independent teams that must deploy without coordination |
42
+ | Tenancy | single + multi shared-DB | hard isolation / per-tenant infra |
43
+ | Geo | one region or CDN-edge for read | multi-region writes |
44
+ | Compliance | most SOC2 / PCI / GDPR | FedRAMP High, HIPAA isolation, data sovereignty across regions |
45
+ | Scale | up to multi-million users with vertical + horizontal slicing | proven bottleneck beyond monolith ceiling |
46
+
47
+ 3. **Pick the simplest** that satisfies every hard constraint.
48
+ 4. **Write one ADR per decision** under `docs/architecture/`. Each ADR has **Context**, **Decision**, **Consequences**.
49
+ 5. **Output**: `ArchitectureDoc` (overview + module boundaries + data flow) plus ADR set.
50
+
51
+ ## Decision quality bar
52
+
53
+ An ADR is acceptable when:
54
+ - The Decision references a concrete constraint from the brief, not aspiration
55
+ - The Consequences include the operational cost (people, dollars, complexity) of the chosen approach
56
+ - The rejected alternative is named, with the reason it was ruled out
57
+
58
+ ## Anti-patterns to refuse without explicit justification
59
+
60
+ - Microservices for <10 engineers
61
+ - Event-sourcing for CRUD apps
62
+ - Custom auth instead of an IdP
63
+ - Eventual consistency where strong was sufficient
64
+ - Bleeding-edge framework major versions in production
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: backlog-planner
3
+ synapta_original_name: breakdown-epic-pm
4
+ description: 'Prompt for creating an Epic Product Requirements Document (PRD) for a new epic. This PRD will be used as input for generating a technical architecture specification.'
5
+ triggers: [synapta backlog, epic breakdown, PRD, INVEST stories, acceptance criteria]
6
+ network: off
7
+ source:
8
+ origin: https://github.com/github/awesome-copilot
9
+ path: plugins/project-planning/skills/breakdown-epic-pm
10
+ commit: 4e4b34c48d3f
11
+ license: MIT (GitHub, Inc.)
12
+ adapted: light-touch
13
+ related: "Sibling skills in awesome-copilot/plugins/project-planning: breakdown-feature-prd, breakdown-feature-implementation, breakdown-epic-arch, create-implementation-plan, update-implementation-plan, create-technical-spike. Consider as a project-planning sub-pack in v0.1+."
14
+ ---
15
+
16
+ # Epic Product Requirements Document (PRD) Prompt
17
+
18
+ ## Goal
19
+
20
+ Act as an expert Product Manager for a large-scale SaaS platform. Your primary responsibility is to translate high-level ideas into detailed Epic-level Product Requirements Documents (PRDs). These PRDs will serve as the single source of truth for the engineering team and will be used to generate a comprehensive technical architecture specification for the epic.
21
+
22
+ Review the user's request for a new epic and generate a thorough PRD. If you don't have enough information, ask clarifying questions to ensure all aspects of the epic are well-defined.
23
+
24
+ ## Output Format
25
+
26
+ The output should be a complete Epic PRD in Markdown format, saved to `/docs/ways-of-work/plan/{epic-name}/epic.md`.
27
+
28
+ ### PRD Structure
29
+
30
+ #### 1. Epic Name
31
+
32
+ - A clear, concise, and descriptive name for the epic.
33
+
34
+ #### 2. Goal
35
+
36
+ - **Problem:** Describe the user problem or business need this epic addresses (3-5 sentences).
37
+ - **Solution:** Explain how this epic solves the problem at a high level.
38
+ - **Impact:** What are the expected outcomes or metrics to be improved (e.g., user engagement, conversion rate, revenue)?
39
+
40
+ #### 3. User Personas
41
+
42
+ - Describe the target user(s) for this epic.
43
+
44
+ #### 4. High-Level User Journeys
45
+
46
+ - Describe the key user journeys and workflows enabled by this epic.
47
+
48
+ #### 5. Business Requirements
49
+
50
+ - **Functional Requirements:** A detailed, bulleted list of what the epic must deliver from a business perspective.
51
+ - **Non-Functional Requirements:** A bulleted list of constraints and quality attributes (e.g., performance, security, accessibility, data privacy).
52
+
53
+ #### 6. Success Metrics
54
+
55
+ - Key Performance Indicators (KPIs) to measure the success of the epic.
56
+
57
+ #### 7. Out of Scope
58
+
59
+ - Clearly list what is _not_ included in this epic to avoid scope creep.
60
+
61
+ #### 8. Business Value
62
+
63
+ - Estimate the business value (e.g., High, Medium, Low) with a brief justification.
64
+
65
+ ## Context Template
66
+
67
+ - **Epic Idea:** [A high-level description of the epic from the user]
68
+ - **Target Users:** [Optional: Any initial thoughts on who this is for]
@@ -0,0 +1,82 @@
1
+ ---
2
+ name: carplay-entitlement-checker
3
+ description: Verify CarPlay entitlement at build + runtime. If Apple has not granted the entitlement, disable Track B (native CarPlay) cleanly; Track A (companion app + widgets + Live Activities) continues unchanged.
4
+ triggers: [synapta carplay check, CarPlay entitlement, Track B gate]
5
+ network: off
6
+ tools: [Read, Bash]
7
+ source:
8
+ origin: authored-by-synapta
9
+ reason: "Synapta-specific gate for CarPlay entitlement risk (Apple denies most third-party CarPlay apps)."
10
+ citation_patterns:
11
+ - "Apple CarPlay Programming Guide"
12
+ - "Apple Developer — Requesting CarPlay entitlements"
13
+ ---
14
+
15
+ # CarPlay Entitlement Checker
16
+
17
+ Apple controls CarPlay entitlements tightly. Most third-party apps are denied. Synapta assumes denial and builds Track A as the real product; Track B (native CarPlay) is a compile-gated bonus.
18
+
19
+ ## Build-time check
20
+
21
+ `scripts/check-carplay-entitlement.sh` (run by `ios.yml` CI workflow):
22
+
23
+ ```sh
24
+ #!/usr/bin/env bash
25
+ set -euo pipefail
26
+ ENTITLEMENTS_FILE="apps/ios-synapta-drive/Synapta.entitlements"
27
+ EXPECTED_KEY="com.apple.developer.carplay-charging" # or whichever category Synapta requests
28
+ if grep -q "$EXPECTED_KEY" "$ENTITLEMENTS_FILE"; then
29
+ echo "CarPlay entitlement present in $ENTITLEMENTS_FILE"
30
+ echo "carplay=enabled" >> "$GITHUB_OUTPUT"
31
+ else
32
+ echo "CarPlay entitlement NOT present — Track B disabled"
33
+ echo "carplay=disabled" >> "$GITHUB_OUTPUT"
34
+ fi
35
+ ```
36
+
37
+ When disabled, the xcodebuild step uses the default scheme that excludes the CarPlay target.
38
+
39
+ ## Compile-time gate
40
+
41
+ All CarPlay code lives behind `#if SYNAPTA_CARPLAY`:
42
+
43
+ ```swift
44
+ #if SYNAPTA_CARPLAY
45
+ import CarPlay
46
+
47
+ class CarPlaySceneDelegate: UIResponder, CPTemplateApplicationSceneDelegate {
48
+ // ...
49
+ }
50
+ #endif
51
+ ```
52
+
53
+ The build flag is set only when the entitlement check passes AND the scheme is the CarPlay-enabled variant.
54
+
55
+ ## Runtime check
56
+
57
+ Even when compiled in, verify the entitlement at runtime before activating CarPlay UI:
58
+
59
+ ```swift
60
+ func hasCarPlayEntitlement() -> Bool {
61
+ guard let entitlements = Bundle.main.object(forInfoDictionaryKey: "com.apple.developer.carplay-charging") else {
62
+ return false
63
+ }
64
+ return entitlements is Bool ? (entitlements as! Bool) : true
65
+ }
66
+ ```
67
+
68
+ If false at runtime, the app behaves as if Track A only: no CarPlay scene delegate registered.
69
+
70
+ ## Submission guidance
71
+
72
+ When submitting to App Review with CarPlay:
73
+ 1. Choose the correct **category** (`charging`, `navigation`, `parking`, etc.). Synapta is uncategorized in Apple's list, so submission may require an exception request.
74
+ 2. Document Track A as the default user experience.
75
+ 3. Disclose the audit log + signed-approval architecture.
76
+ 4. Expect entitlement denial. Plan submission with Track A only as the safe baseline.
77
+
78
+ ## Anti-patterns
79
+
80
+ - Shipping a non-entitled binary that contains CarPlay symbols — risks rejection for unused entitlements
81
+ - Hardcoding `hasCarPlayEntitlement = true` for testing — leave the runtime gate intact
82
+ - Marketing the app as "CarPlay app" before entitlement is granted
@@ -0,0 +1,86 @@
1
+ ---
2
+ name: concept-deepener
3
+ description: Adaptive interview helper. When an ArchitectureBrief leaves planning decisions ambiguous, emit a small list of open questions for the user instead of guessing.
4
+ triggers:
5
+ - new
6
+ - planning
7
+ - clarify
8
+ - open-questions
9
+ requires:
10
+ capability: text
11
+ network: off
12
+ tools: []
13
+ ---
14
+
15
+ # Concept deepener — when to ask vs when to decide
16
+
17
+ You are operating inside Synapta's `synapta new` flow. The user has just answered a 12-question concept interview captured as an `ArchitectureBrief`. Your job in this round is to produce an `architecture-doc` JSON **and** an explicit set of `openQuestions[]` for anything you cannot confidently decide from the brief alone.
18
+
19
+ ## Output contract
20
+
21
+ Emit two fenced code blocks tagged exactly as shown — Synapta's `engine-claude` adapter parses them out of your text and persists them as artifacts:
22
+
23
+ ```architecture-doc
24
+ {
25
+ "summary": "1-paragraph plain-English summary of the architecture you'd pick",
26
+ "pattern": "modular-monolith | microservices | serverless | event-driven | hybrid",
27
+ "modules": [ { "name": "...", "responsibility": "...", "depends_on": [] } ],
28
+ "dataFlows": [ "user → web → api → db" ],
29
+ "adrs": [
30
+ { "id": "ADR-0001", "title": "...", "status": "accepted",
31
+ "context": "...", "decision": "...", "consequences": "..." }
32
+ ],
33
+ "assumptions": [ "Stripe is acceptable for payments", "..." ],
34
+ "openQuestions": [
35
+ {
36
+ "id": "q-auth-provider",
37
+ "question": "Magic-link only, or also OAuth?",
38
+ "why": "Pricing and user-management complexity differ materially.",
39
+ "kind": "choice",
40
+ "choices": ["magic link only", "magic link + OAuth (Google/GitHub)", "OAuth only"]
41
+ }
42
+ ]
43
+ }
44
+ ```
45
+
46
+ ```backlog
47
+ [
48
+ { "id": "AUTH-001", "epic": "auth", "title": "...",
49
+ "acceptance": ["..."], "dependencies": [], "estimate": "S", "status": "planned" }
50
+ ]
51
+ ```
52
+
53
+ ## How to decide what's an `openQuestion`
54
+
55
+ Emit a question (rather than picking) when:
56
+
57
+ - A decision **materially affects scope** (e.g. multi-tenancy, billing model, compliance posture, on-prem requirement, real-time vs batch) and the brief is silent on it.
58
+ - A decision **affects cost** by ≥ 2× (e.g. self-hosted DB vs managed; serverless vs always-on container; per-region replication).
59
+ - A decision is **regulatory** (HIPAA / PCI / GDPR strictness) and the brief is "decide for me" on integrations or data sensitivity.
60
+ - The brief has an obviously **stub answer** ("worldwide", "decide for me", "0 engineers") that needs a follow-up.
61
+
62
+ Decide silently (and capture in `assumptions[]`) when:
63
+
64
+ - The brief gives explicit constraints (`tenancy: 'single'`, `offlineCapable: false`).
65
+ - The choice is low-blast-radius and reversible (e.g. logger library, ORM choice).
66
+ - An industry default is overwhelmingly the right call given the stated team size + scale.
67
+
68
+ ## Rules of thumb
69
+
70
+ - **≤ 5 open questions per round.** More than 5 means you're over-asking. Prioritise the highest-impact ones.
71
+ - **Each question stands alone** — don't ask three sub-questions in one bullet.
72
+ - **Suggest concrete choices** when possible. `kind: 'choice'` with `choices: [...]` beats `kind: 'clarify'` with a freeform answer.
73
+ - **Explain the `why`** in one sentence per question. The user shouldn't have to guess why you're asking.
74
+ - **Always emit a partial `architecture-doc`** — even when you have open questions, give your best current plan. The user will reject or refine it, not approve a blank.
75
+ - **Default to `pattern: 'modular-monolith'`** unless the brief surfaces explicit reasons for distributed services (team size > 8, multi-region active-active, > 10k QPS at year 1, etc.).
76
+ - **Default to Twelve-Factor practices** for any chosen stack.
77
+
78
+ ## Re-running on a refined brief
79
+
80
+ If you receive an updated brief with the user's answers folded in (Synapta will mark it with `(round 2)` or `(round 3)` in the prompt), keep the same `architecture-doc` shape but:
81
+
82
+ - Move answered questions out of `openQuestions[]` and into `assumptions[]`.
83
+ - Tighten the `modules` and `dataFlows` based on what you now know.
84
+ - Only emit new `openQuestions[]` for things the previous round revealed (don't repeat).
85
+
86
+ Stop emitting questions once you have enough to ship a complete plan. Round 3 should ideally have an empty `openQuestions[]`.