agent-toolkit-cli 1.0.3__tar.gz

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 (401) hide show
  1. agent_toolkit_cli-1.0.3/.gitignore +25 -0
  2. agent_toolkit_cli-1.0.3/AGENTS.md +304 -0
  3. agent_toolkit_cli-1.0.3/CHANGELOG.md +63 -0
  4. agent_toolkit_cli-1.0.3/LICENSE +21 -0
  5. agent_toolkit_cli-1.0.3/PKG-INFO +411 -0
  6. agent_toolkit_cli-1.0.3/README.md +359 -0
  7. agent_toolkit_cli-1.0.3/agents/architect/AGENT.md +30 -0
  8. agent_toolkit_cli-1.0.3/agents/assistant/AGENT.md +59 -0
  9. agent_toolkit_cli-1.0.3/agents/build-error-resolver/AGENT.md +30 -0
  10. agent_toolkit_cli-1.0.3/agents/client-workflow-bootstrap/AGENT.md +60 -0
  11. agent_toolkit_cli-1.0.3/agents/code-reviewer/AGENT.md +49 -0
  12. agent_toolkit_cli-1.0.3/agents/database-reviewer/AGENT.md +44 -0
  13. agent_toolkit_cli-1.0.3/agents/docs-lookup/AGENT.md +28 -0
  14. agent_toolkit_cli-1.0.3/agents/e2e-runner/AGENT.md +38 -0
  15. agent_toolkit_cli-1.0.3/agents/performance-optimizer/AGENT.md +52 -0
  16. agent_toolkit_cli-1.0.3/agents/planner/AGENT.md +41 -0
  17. agent_toolkit_cli-1.0.3/agents/refactor-cleaner/AGENT.md +43 -0
  18. agent_toolkit_cli-1.0.3/agents/reference-lookup/AGENT.md +33 -0
  19. agent_toolkit_cli-1.0.3/agents/security-reviewer/AGENT.md +47 -0
  20. agent_toolkit_cli-1.0.3/agents/tdd-guide/AGENT.md +58 -0
  21. agent_toolkit_cli-1.0.3/agents/tech-assistant/AGENT.md +11 -0
  22. agent_toolkit_cli-1.0.3/agents/typescript-reviewer/AGENT.md +61 -0
  23. agent_toolkit_cli-1.0.3/catalogs/agent-catalog.yaml +202 -0
  24. agent_toolkit_cli-1.0.3/catalogs/loop-catalog.yaml +165 -0
  25. agent_toolkit_cli-1.0.3/catalogs/skill-catalog.yaml +699 -0
  26. agent_toolkit_cli-1.0.3/catalogs/skills-layout.json +337 -0
  27. agent_toolkit_cli-1.0.3/docs/ARCHITECTURE.md +273 -0
  28. agent_toolkit_cli-1.0.3/docs/HOW_TO_ADD_AGENT.md +338 -0
  29. agent_toolkit_cli-1.0.3/docs/HOW_TO_ADD_SKILL.md +331 -0
  30. agent_toolkit_cli-1.0.3/docs/HOW_TO_CREATE_LOOP.md +422 -0
  31. agent_toolkit_cli-1.0.3/docs/INSTALLATION.md +325 -0
  32. agent_toolkit_cli-1.0.3/docs/LOOPS.md +314 -0
  33. agent_toolkit_cli-1.0.3/docs/MCP.md +297 -0
  34. agent_toolkit_cli-1.0.3/docs/PROFILES.md +373 -0
  35. agent_toolkit_cli-1.0.3/docs/SKILLS.md +310 -0
  36. agent_toolkit_cli-1.0.3/docs/wiki/Agents-Reference.md +536 -0
  37. agent_toolkit_cli-1.0.3/docs/wiki/Contributing.md +483 -0
  38. agent_toolkit_cli-1.0.3/docs/wiki/FAQ.md +300 -0
  39. agent_toolkit_cli-1.0.3/docs/wiki/Home.md +175 -0
  40. agent_toolkit_cli-1.0.3/docs/wiki/Installation.md +405 -0
  41. agent_toolkit_cli-1.0.3/docs/wiki/Loop-Engineering.md +609 -0
  42. agent_toolkit_cli-1.0.3/docs/wiki/MCP-Setup.md +485 -0
  43. agent_toolkit_cli-1.0.3/docs/wiki/Plugin-Marketplace.md +301 -0
  44. agent_toolkit_cli-1.0.3/docs/wiki/Profiles.md +452 -0
  45. agent_toolkit_cli-1.0.3/docs/wiki/Skills-Reference.md +332 -0
  46. agent_toolkit_cli-1.0.3/docs/wiki/_Sidebar.md +20 -0
  47. agent_toolkit_cli-1.0.3/examples/README.md +56 -0
  48. agent_toolkit_cli-1.0.3/examples/oss-maintenance/README.md +300 -0
  49. agent_toolkit_cli-1.0.3/examples/project-onboarding/README.md +279 -0
  50. agent_toolkit_cli-1.0.3/loops/changelog-drafter/loop.yaml +40 -0
  51. agent_toolkit_cli-1.0.3/loops/ci-sweeper/loop.yaml +53 -0
  52. agent_toolkit_cli-1.0.3/loops/daily-triage/loop.yaml +47 -0
  53. agent_toolkit_cli-1.0.3/loops/dep-sweeper/loop.yaml +46 -0
  54. agent_toolkit_cli-1.0.3/loops/issue-triage/loop.yaml +40 -0
  55. agent_toolkit_cli-1.0.3/loops/oss-daily-briefing/loop.yaml +65 -0
  56. agent_toolkit_cli-1.0.3/loops/oss-pr-monitor/loop.yaml +85 -0
  57. agent_toolkit_cli-1.0.3/loops/oss-triage/loop.yaml +67 -0
  58. agent_toolkit_cli-1.0.3/loops/post-merge-cleanup/loop.yaml +44 -0
  59. agent_toolkit_cli-1.0.3/loops/pr-babysitter/loop.yaml +46 -0
  60. agent_toolkit_cli-1.0.3/mcp/templates/clickup/README.md +45 -0
  61. agent_toolkit_cli-1.0.3/mcp/templates/clickup/config.template.json +7 -0
  62. agent_toolkit_cli-1.0.3/mcp/templates/clickup/wrapper.sh +23 -0
  63. agent_toolkit_cli-1.0.3/mcp/templates/figma/README.md +56 -0
  64. agent_toolkit_cli-1.0.3/mcp/templates/figma/config.template.json +9 -0
  65. agent_toolkit_cli-1.0.3/mcp/templates/github/README.md +11 -0
  66. agent_toolkit_cli-1.0.3/mcp/templates/github/config.template.json +7 -0
  67. agent_toolkit_cli-1.0.3/mcp/templates/github/wrapper.sh +23 -0
  68. agent_toolkit_cli-1.0.3/mcp/templates/linear/README.md +49 -0
  69. agent_toolkit_cli-1.0.3/mcp/templates/linear/config.template.json +10 -0
  70. agent_toolkit_cli-1.0.3/mcp/templates/notion/README.md +7 -0
  71. agent_toolkit_cli-1.0.3/mcp/templates/notion/config.template.json +7 -0
  72. agent_toolkit_cli-1.0.3/mcp/templates/notion/wrapper.sh +23 -0
  73. agent_toolkit_cli-1.0.3/mcp/templates/slack/README.md +8 -0
  74. agent_toolkit_cli-1.0.3/mcp/templates/slack/config.template.json +8 -0
  75. agent_toolkit_cli-1.0.3/mcp/templates/slack/wrapper.sh +23 -0
  76. agent_toolkit_cli-1.0.3/packs/README.md +30 -0
  77. agent_toolkit_cli-1.0.3/packs/delivery-discipline/README.md +12 -0
  78. agent_toolkit_cli-1.0.3/packs/engineering-workflow/README.md +13 -0
  79. agent_toolkit_cli-1.0.3/packs/oss-maintenance/README.md +245 -0
  80. agent_toolkit_cli-1.0.3/plugins/README.md +37 -0
  81. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/.claude-plugin/plugin.json +13 -0
  82. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/.cursor-plugin/plugin.json +13 -0
  83. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/README.md +30 -0
  84. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/architect/AGENT.md +30 -0
  85. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/assistant/AGENT.md +59 -0
  86. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/build-error-resolver/AGENT.md +30 -0
  87. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/client-workflow-bootstrap/AGENT.md +60 -0
  88. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/code-reviewer/AGENT.md +49 -0
  89. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/database-reviewer/AGENT.md +44 -0
  90. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/docs-lookup/AGENT.md +28 -0
  91. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/e2e-runner/AGENT.md +38 -0
  92. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/performance-optimizer/AGENT.md +52 -0
  93. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/planner/AGENT.md +41 -0
  94. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/refactor-cleaner/AGENT.md +43 -0
  95. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/reference-lookup/AGENT.md +33 -0
  96. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/security-reviewer/AGENT.md +47 -0
  97. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/tdd-guide/AGENT.md +58 -0
  98. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/tech-assistant/AGENT.md +11 -0
  99. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-agents/agents/typescript-reviewer/AGENT.md +61 -0
  100. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/.claude-plugin/plugin.json +13 -0
  101. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/.cursor-plugin/plugin.json +13 -0
  102. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/README.md +28 -0
  103. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/agents/code-reviewer/AGENT.md +49 -0
  104. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/assistant/SKILL.md +213 -0
  105. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/assistant/references/AGENTS_TEMPLATE.md +0 -0
  106. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/assistant/references/ORCHESTRATION.md +0 -0
  107. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/assistant/references/REPO_INSPECTION.md +0 -0
  108. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/dev-companion/SKILL.md +65 -0
  109. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/dev-companion/references/LOOP_GUARDRAILS.md +0 -0
  110. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/onboarding/SKILL.md +119 -0
  111. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/output-handshake/SKILL.md +24 -0
  112. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/pr-fallback/SKILL.md +33 -0
  113. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/pr-fallback/references/pr-body-default.md +0 -0
  114. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-core/skills/workspace-knowledge-sync/SKILL.md +141 -0
  115. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/.claude-plugin/plugin.json +13 -0
  116. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/.cursor-plugin/plugin.json +13 -0
  117. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/README.md +19 -0
  118. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-address-comments/LICENSE.txt +202 -0
  119. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-address-comments/NOTICE.txt +20 -0
  120. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-address-comments/SKILL.md +69 -0
  121. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-address-comments/scripts/fetch_comments.py +237 -0
  122. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-contribution-planner/SKILL.md +157 -0
  123. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-contribution-planner/scripts/inspect_contributions.py +800 -0
  124. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-fix-ci/LICENSE.txt +201 -0
  125. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-fix-ci/NOTICE.txt +20 -0
  126. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-fix-ci/SKILL.md +71 -0
  127. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gh-fix-ci/scripts/inspect_pr_checks.py +509 -0
  128. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/github-cli-workflow/SKILL.md +49 -0
  129. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/gitlab-cli-workflow/SKILL.md +44 -0
  130. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/workflow-client-bootstrap/SKILL.md +14 -0
  131. agent_toolkit_cli-1.0.3/plugins/agent-toolkit-forge/skills/workflow-generic-project/SKILL.md +14 -0
  132. agent_toolkit_cli-1.0.3/profiles/claude-code/CLAUDE.md +66 -0
  133. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/assistant.md +59 -0
  134. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/build-error-resolver.md +30 -0
  135. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/client-workflow-bootstrap.md +60 -0
  136. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/contribution-planner.md +39 -0
  137. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/database-reviewer.md +44 -0
  138. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/docs-lookup.md +28 -0
  139. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/e2e-runner.md +38 -0
  140. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/performance-optimizer.md +52 -0
  141. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/planner.md +41 -0
  142. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/refactor-cleaner.md +43 -0
  143. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/reference-lookup.md +33 -0
  144. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/security-reviewer.md +47 -0
  145. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/tdd-guide.md +58 -0
  146. agent_toolkit_cli-1.0.3/profiles/claude-code/agents/typescript-reviewer.md +61 -0
  147. agent_toolkit_cli-1.0.3/profiles/claude-code/settings.json +87 -0
  148. agent_toolkit_cli-1.0.3/profiles/copilot/copilot-instructions.md +15 -0
  149. agent_toolkit_cli-1.0.3/profiles/cursor/README.md +33 -0
  150. agent_toolkit_cli-1.0.3/profiles/cursor/rules/architect.mdc +23 -0
  151. agent_toolkit_cli-1.0.3/profiles/cursor/rules/assistant.mdc +25 -0
  152. agent_toolkit_cli-1.0.3/profiles/cursor/rules/build-error-resolver.mdc +20 -0
  153. agent_toolkit_cli-1.0.3/profiles/cursor/rules/code-reviewer.mdc +21 -0
  154. agent_toolkit_cli-1.0.3/profiles/cursor/rules/database-reviewer.mdc +29 -0
  155. agent_toolkit_cli-1.0.3/profiles/cursor/rules/docs-lookup.mdc +15 -0
  156. agent_toolkit_cli-1.0.3/profiles/cursor/rules/e2e-runner.mdc +30 -0
  157. agent_toolkit_cli-1.0.3/profiles/cursor/rules/performance-optimizer.mdc +27 -0
  158. agent_toolkit_cli-1.0.3/profiles/cursor/rules/planner.mdc +28 -0
  159. agent_toolkit_cli-1.0.3/profiles/cursor/rules/refactor-cleaner.mdc +26 -0
  160. agent_toolkit_cli-1.0.3/profiles/cursor/rules/reference-lookup.mdc +20 -0
  161. agent_toolkit_cli-1.0.3/profiles/cursor/rules/security-reviewer.mdc +20 -0
  162. agent_toolkit_cli-1.0.3/profiles/cursor/rules/tdd-guide.mdc +26 -0
  163. agent_toolkit_cli-1.0.3/profiles/cursor/rules/typescript-reviewer.mdc +28 -0
  164. agent_toolkit_cli-1.0.3/profiles/opencode/agents/architect.md +30 -0
  165. agent_toolkit_cli-1.0.3/profiles/opencode/agents/assistant.md +52 -0
  166. agent_toolkit_cli-1.0.3/profiles/opencode/agents/build-error-resolver.md +31 -0
  167. agent_toolkit_cli-1.0.3/profiles/opencode/agents/client-workflow-bootstrap.md +66 -0
  168. agent_toolkit_cli-1.0.3/profiles/opencode/agents/code-reviewer.md +47 -0
  169. agent_toolkit_cli-1.0.3/profiles/opencode/agents/contribution-planner.md +44 -0
  170. agent_toolkit_cli-1.0.3/profiles/opencode/agents/database-reviewer.md +43 -0
  171. agent_toolkit_cli-1.0.3/profiles/opencode/agents/docs-lookup.md +28 -0
  172. agent_toolkit_cli-1.0.3/profiles/opencode/agents/e2e-runner.md +33 -0
  173. agent_toolkit_cli-1.0.3/profiles/opencode/agents/performance-optimizer.md +34 -0
  174. agent_toolkit_cli-1.0.3/profiles/opencode/agents/planner.md +27 -0
  175. agent_toolkit_cli-1.0.3/profiles/opencode/agents/refactor-cleaner.md +27 -0
  176. agent_toolkit_cli-1.0.3/profiles/opencode/agents/reference-lookup.md +27 -0
  177. agent_toolkit_cli-1.0.3/profiles/opencode/agents/security-reviewer.md +27 -0
  178. agent_toolkit_cli-1.0.3/profiles/opencode/agents/tdd-guide.md +27 -0
  179. agent_toolkit_cli-1.0.3/profiles/opencode/agents/typescript-reviewer.md +30 -0
  180. agent_toolkit_cli-1.0.3/profiles/opencode/opencode.json +37 -0
  181. agent_toolkit_cli-1.0.3/profiles/pi/skills/architect/skill.md +5 -0
  182. agent_toolkit_cli-1.0.3/profiles/pi/skills/assistant/skill.md +3 -0
  183. agent_toolkit_cli-1.0.3/profiles/pi/skills/code-reviewer/skill.md +5 -0
  184. agent_toolkit_cli-1.0.3/profiles/pi/skills/planner/skill.md +3 -0
  185. agent_toolkit_cli-1.0.3/profiles/pi/skills/security-reviewer/skill.md +3 -0
  186. agent_toolkit_cli-1.0.3/profiles/windsurf/memories/global_rules.md +74 -0
  187. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/architect.mdc +23 -0
  188. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/build-error-resolver.mdc +20 -0
  189. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/code-reviewer.mdc +21 -0
  190. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/database-reviewer.mdc +29 -0
  191. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/docs-lookup.mdc +15 -0
  192. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/e2e-runner.mdc +30 -0
  193. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/performance-optimizer.mdc +27 -0
  194. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/planner.mdc +28 -0
  195. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/refactor-cleaner.mdc +26 -0
  196. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/security-reviewer.mdc +20 -0
  197. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/tdd-guide.mdc +26 -0
  198. agent_toolkit_cli-1.0.3/profiles/windsurf/rules/typescript-reviewer.mdc +28 -0
  199. agent_toolkit_cli-1.0.3/pyproject.toml +91 -0
  200. agent_toolkit_cli-1.0.3/schemas/loop.schema.json +122 -0
  201. agent_toolkit_cli-1.0.3/schemas/skill-md-frontmatter.schema.json +58 -0
  202. agent_toolkit_cli-1.0.3/schemas/skill.schema.json +154 -0
  203. agent_toolkit_cli-1.0.3/scripts/doctor.sh +44 -0
  204. agent_toolkit_cli-1.0.3/scripts/gen-surfaces.py +94 -0
  205. agent_toolkit_cli-1.0.3/scripts/install.sh +423 -0
  206. agent_toolkit_cli-1.0.3/scripts/validate-agents.py +63 -0
  207. agent_toolkit_cli-1.0.3/scripts/validate-manifests.py +80 -0
  208. agent_toolkit_cli-1.0.3/scripts/validate-skills.py +113 -0
  209. agent_toolkit_cli-1.0.3/scripts/validate-skills.sh +278 -0
  210. agent_toolkit_cli-1.0.3/skills/core/assistant/SKILL.md +213 -0
  211. agent_toolkit_cli-1.0.3/skills/core/assistant/references/AGENTS_TEMPLATE.md +0 -0
  212. agent_toolkit_cli-1.0.3/skills/core/assistant/references/ORCHESTRATION.md +0 -0
  213. agent_toolkit_cli-1.0.3/skills/core/assistant/references/REPO_INSPECTION.md +0 -0
  214. agent_toolkit_cli-1.0.3/skills/core/dev-companion/SKILL.md +65 -0
  215. agent_toolkit_cli-1.0.3/skills/core/dev-companion/references/LOOP_GUARDRAILS.md +0 -0
  216. agent_toolkit_cli-1.0.3/skills/core/onboarding/SKILL.md +119 -0
  217. agent_toolkit_cli-1.0.3/skills/core/output-handshake/SKILL.md +24 -0
  218. agent_toolkit_cli-1.0.3/skills/core/pr-fallback/SKILL.md +33 -0
  219. agent_toolkit_cli-1.0.3/skills/core/pr-fallback/references/pr-body-default.md +0 -0
  220. agent_toolkit_cli-1.0.3/skills/core/workspace-knowledge-sync/SKILL.md +141 -0
  221. agent_toolkit_cli-1.0.3/skills/data/dbt-validation/SKILL.md +41 -0
  222. agent_toolkit_cli-1.0.3/skills/data/snowflake-validation/SKILL.md +38 -0
  223. agent_toolkit_cli-1.0.3/skills/delivery/adr/SKILL.md +46 -0
  224. agent_toolkit_cli-1.0.3/skills/delivery/adr/references/default-template.md +0 -0
  225. agent_toolkit_cli-1.0.3/skills/delivery/adr/references/example-001-graphql-adoption.md +66 -0
  226. agent_toolkit_cli-1.0.3/skills/delivery/agreement/SKILL.md +23 -0
  227. agent_toolkit_cli-1.0.3/skills/delivery/agreement/references/default-template.md +0 -0
  228. agent_toolkit_cli-1.0.3/skills/delivery/agreement/references/example-api-versioning.md +29 -0
  229. agent_toolkit_cli-1.0.3/skills/delivery/bug/SKILL.md +25 -0
  230. agent_toolkit_cli-1.0.3/skills/delivery/bug/references/default-template.md +0 -0
  231. agent_toolkit_cli-1.0.3/skills/delivery/bug/references/example-search-filter-bug.md +58 -0
  232. agent_toolkit_cli-1.0.3/skills/delivery/decision-log/SKILL.md +27 -0
  233. agent_toolkit_cli-1.0.3/skills/delivery/decision-log/references/default-template.md +0 -0
  234. agent_toolkit_cli-1.0.3/skills/delivery/decision-log/references/example-repository-pattern.md +27 -0
  235. agent_toolkit_cli-1.0.3/skills/delivery/development-workflow/SKILL.md +33 -0
  236. agent_toolkit_cli-1.0.3/skills/delivery/development-workflow/references/default-template.md +0 -0
  237. agent_toolkit_cli-1.0.3/skills/delivery/development-workflow/references/default-workflow-checklist.md +44 -0
  238. agent_toolkit_cli-1.0.3/skills/delivery/epic/SKILL.md +21 -0
  239. agent_toolkit_cli-1.0.3/skills/delivery/epic/references/default-template.md +0 -0
  240. agent_toolkit_cli-1.0.3/skills/delivery/epic/references/example-unified-dashboard.md +40 -0
  241. agent_toolkit_cli-1.0.3/skills/delivery/incident/SKILL.md +23 -0
  242. agent_toolkit_cli-1.0.3/skills/delivery/incident/references/default-template.md +0 -0
  243. agent_toolkit_cli-1.0.3/skills/delivery/incident/references/example-payment-outage.md +62 -0
  244. agent_toolkit_cli-1.0.3/skills/delivery/management-unit-assessment/SKILL.md +105 -0
  245. agent_toolkit_cli-1.0.3/skills/delivery/management-unit-assessment/references/default-template.md +0 -0
  246. agent_toolkit_cli-1.0.3/skills/delivery/management-unit-assessment/references/example-team-assessment.md +126 -0
  247. agent_toolkit_cli-1.0.3/skills/delivery/meeting-minutes/SKILL.md +24 -0
  248. agent_toolkit_cli-1.0.3/skills/delivery/meeting-minutes/references/default-template.md +0 -0
  249. agent_toolkit_cli-1.0.3/skills/delivery/meeting-minutes/references/example-weekly-sync.md +72 -0
  250. agent_toolkit_cli-1.0.3/skills/delivery/planning/SKILL.md +30 -0
  251. agent_toolkit_cli-1.0.3/skills/delivery/planning/references/default-template.md +0 -0
  252. agent_toolkit_cli-1.0.3/skills/delivery/planning/references/example-sprint-planning.md +62 -0
  253. agent_toolkit_cli-1.0.3/skills/delivery/prd/SKILL.md +44 -0
  254. agent_toolkit_cli-1.0.3/skills/delivery/prd/references/default-template.md +0 -0
  255. agent_toolkit_cli-1.0.3/skills/delivery/prd/references/example-unified-api.md +71 -0
  256. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment/SKILL.md +90 -0
  257. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment/references/default-template.md +0 -0
  258. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment/references/example-platform-assessment.md +122 -0
  259. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment-evidence/SKILL.md +88 -0
  260. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment-evidence/references/default-template.md +0 -0
  261. agent_toolkit_cli-1.0.3/skills/delivery/project-assessment-evidence/references/example-evidence-map.md +46 -0
  262. agent_toolkit_cli-1.0.3/skills/delivery/spike/SKILL.md +23 -0
  263. agent_toolkit_cli-1.0.3/skills/delivery/spike/references/default-template.md +0 -0
  264. agent_toolkit_cli-1.0.3/skills/delivery/spike/references/example-graphql-federation.md +79 -0
  265. agent_toolkit_cli-1.0.3/skills/delivery/task/SKILL.md +20 -0
  266. agent_toolkit_cli-1.0.3/skills/delivery/task/references/default-template.md +0 -0
  267. agent_toolkit_cli-1.0.3/skills/delivery/task/references/example-nav-system.md +33 -0
  268. agent_toolkit_cli-1.0.3/skills/delivery/technical-unit-assessment/SKILL.md +58 -0
  269. agent_toolkit_cli-1.0.3/skills/delivery/technical-unit-assessment/references/default-template.md +0 -0
  270. agent_toolkit_cli-1.0.3/skills/delivery/technical-unit-assessment/references/example-frontend-assessment.md +112 -0
  271. agent_toolkit_cli-1.0.3/skills/delivery/technical-unit-assessment/references/indicator-groups.md +65 -0
  272. agent_toolkit_cli-1.0.3/skills/delivery/trd/SKILL.md +47 -0
  273. agent_toolkit_cli-1.0.3/skills/delivery/trd/references/default-template.md +0 -0
  274. agent_toolkit_cli-1.0.3/skills/delivery/trd/references/example-api-migration.md +122 -0
  275. agent_toolkit_cli-1.0.3/skills/delivery/user-story/SKILL.md +20 -0
  276. agent_toolkit_cli-1.0.3/skills/delivery/user-story/references/default-template.md +0 -0
  277. agent_toolkit_cli-1.0.3/skills/delivery/user-story/references/example-advanced-filtering.md +37 -0
  278. agent_toolkit_cli-1.0.3/skills/delivery/work-item/SKILL.md +30 -0
  279. agent_toolkit_cli-1.0.3/skills/delivery/work-item/references/default-template.md +0 -0
  280. agent_toolkit_cli-1.0.3/skills/delivery/work-item/references/example-routing-dashboard.md +23 -0
  281. agent_toolkit_cli-1.0.3/skills/delivery/workflow-client-bootstrap/SKILL.md +148 -0
  282. agent_toolkit_cli-1.0.3/skills/delivery/workflow-client-bootstrap/questions.yaml +165 -0
  283. agent_toolkit_cli-1.0.3/skills/delivery/workflow-generic-project/SKILL.md +78 -0
  284. agent_toolkit_cli-1.0.3/skills/design/figma/LICENSE.txt +2 -0
  285. agent_toolkit_cli-1.0.3/skills/design/figma/NOTICE.txt +25 -0
  286. agent_toolkit_cli-1.0.3/skills/design/figma/SKILL.md +95 -0
  287. agent_toolkit_cli-1.0.3/skills/design/figma/references/figma-mcp-config.md +82 -0
  288. agent_toolkit_cli-1.0.3/skills/design/figma/references/figma-tools-and-prompts.md +34 -0
  289. agent_toolkit_cli-1.0.3/skills/design/figma-code-connect-components/LICENSE.txt +2 -0
  290. agent_toolkit_cli-1.0.3/skills/design/figma-code-connect-components/NOTICE.txt +18 -0
  291. agent_toolkit_cli-1.0.3/skills/design/figma-code-connect-components/SKILL.md +350 -0
  292. agent_toolkit_cli-1.0.3/skills/design/figma-code-connect-components/references/mapping-checklist.md +7 -0
  293. agent_toolkit_cli-1.0.3/skills/design/figma-code-connect-components/scripts/normalize_node_id.py +25 -0
  294. agent_toolkit_cli-1.0.3/skills/design/figma-create-design-system-rules/LICENSE.txt +2 -0
  295. agent_toolkit_cli-1.0.3/skills/design/figma-create-design-system-rules/NOTICE.txt +19 -0
  296. agent_toolkit_cli-1.0.3/skills/design/figma-create-design-system-rules/SKILL.md +550 -0
  297. agent_toolkit_cli-1.0.3/skills/design/figma-create-design-system-rules/references/rule-template.md +15 -0
  298. agent_toolkit_cli-1.0.3/skills/design/figma-create-design-system-rules/scripts/check_agents_md.sh +9 -0
  299. agent_toolkit_cli-1.0.3/skills/design/figma-create-new-file/LICENSE.txt +2 -0
  300. agent_toolkit_cli-1.0.3/skills/design/figma-create-new-file/NOTICE.txt +17 -0
  301. agent_toolkit_cli-1.0.3/skills/design/figma-create-new-file/SKILL.md +69 -0
  302. agent_toolkit_cli-1.0.3/skills/design/figma-implement-design/LICENSE.txt +2 -0
  303. agent_toolkit_cli-1.0.3/skills/design/figma-implement-design/NOTICE.txt +19 -0
  304. agent_toolkit_cli-1.0.3/skills/design/figma-implement-design/SKILL.md +264 -0
  305. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/SKILL.md +60 -0
  306. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/charts.csv +26 -0
  307. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/colors.csv +97 -0
  308. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/icons.csv +101 -0
  309. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/landing.csv +31 -0
  310. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/products.csv +97 -0
  311. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/react-performance.csv +45 -0
  312. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  313. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  314. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  315. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  316. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  317. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  318. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  319. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  320. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/react.csv +54 -0
  321. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  322. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  323. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  324. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  325. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/styles.csv +68 -0
  326. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/typography.csv +58 -0
  327. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  328. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  329. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/data/web-interface.csv +31 -0
  330. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/references/pre-delivery-checklist.md +39 -0
  331. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/references/search-reference.md +44 -0
  332. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/references/ui-rules.md +35 -0
  333. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/scripts/core.py +253 -0
  334. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/scripts/design_system.py +1067 -0
  335. agent_toolkit_cli-1.0.3/skills/design/ui-ux-pro-max/scripts/search.py +114 -0
  336. agent_toolkit_cli-1.0.3/skills/forge/gh-address-comments/LICENSE.txt +202 -0
  337. agent_toolkit_cli-1.0.3/skills/forge/gh-address-comments/NOTICE.txt +20 -0
  338. agent_toolkit_cli-1.0.3/skills/forge/gh-address-comments/SKILL.md +69 -0
  339. agent_toolkit_cli-1.0.3/skills/forge/gh-address-comments/scripts/fetch_comments.py +237 -0
  340. agent_toolkit_cli-1.0.3/skills/forge/gh-contribution-planner/SKILL.md +157 -0
  341. agent_toolkit_cli-1.0.3/skills/forge/gh-contribution-planner/scripts/inspect_contributions.py +800 -0
  342. agent_toolkit_cli-1.0.3/skills/forge/gh-fix-ci/LICENSE.txt +201 -0
  343. agent_toolkit_cli-1.0.3/skills/forge/gh-fix-ci/NOTICE.txt +20 -0
  344. agent_toolkit_cli-1.0.3/skills/forge/gh-fix-ci/SKILL.md +71 -0
  345. agent_toolkit_cli-1.0.3/skills/forge/gh-fix-ci/scripts/inspect_pr_checks.py +509 -0
  346. agent_toolkit_cli-1.0.3/skills/forge/github-cli-workflow/SKILL.md +49 -0
  347. agent_toolkit_cli-1.0.3/skills/forge/gitlab-cli-workflow/SKILL.md +44 -0
  348. agent_toolkit_cli-1.0.3/skills/forge/workflow-client-bootstrap/SKILL.md +14 -0
  349. agent_toolkit_cli-1.0.3/skills/forge/workflow-generic-project/SKILL.md +14 -0
  350. agent_toolkit_cli-1.0.3/skills/integrations/clickup-cli/SKILL.md +75 -0
  351. agent_toolkit_cli-1.0.3/skills/integrations/clickup-cli/references/docs-management.md +57 -0
  352. agent_toolkit_cli-1.0.3/skills/integrations/clickup-cli/references/task-management.md +131 -0
  353. agent_toolkit_cli-1.0.3/skills/integrations/clickup-cli/references/time-tracking.md +38 -0
  354. agent_toolkit_cli-1.0.3/skills/integrations/linear/LICENSE.txt +202 -0
  355. agent_toolkit_cli-1.0.3/skills/integrations/linear/NOTICE.txt +23 -0
  356. agent_toolkit_cli-1.0.3/skills/integrations/linear/SKILL.md +131 -0
  357. agent_toolkit_cli-1.0.3/skills/integrations/slack-assistant/SKILL.md +134 -0
  358. agent_toolkit_cli-1.0.3/skills/integrations/slack-cli/SKILL.md +105 -0
  359. agent_toolkit_cli-1.0.3/skills/integrations/slack-cli/references/INSTALLATION.md +42 -0
  360. agent_toolkit_cli-1.0.3/skills/loops/loop-runner/SKILL.md +90 -0
  361. agent_toolkit_cli-1.0.3/skills/ops/docs-generator/SKILL.md +81 -0
  362. agent_toolkit_cli-1.0.3/skills/ops/llm-cost-advisor/SKILL.md +83 -0
  363. agent_toolkit_cli-1.0.3/skills/ops/triage/SKILL.md +117 -0
  364. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/LICENSE.txt +201 -0
  365. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/NOTICE.txt +27 -0
  366. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/SKILL.md +142 -0
  367. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/assets/experiment-template.ipynb +110 -0
  368. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/assets/tutorial-template.ipynb +107 -0
  369. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/references/experiment-patterns.md +10 -0
  370. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/references/notebook-structure.md +17 -0
  371. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/references/quality-checklist.md +11 -0
  372. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/references/tutorial-patterns.md +9 -0
  373. agent_toolkit_cli-1.0.3/skills/tooling/jupyter-notebook/scripts/new_notebook.py +130 -0
  374. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/LICENSE.txt +201 -0
  375. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/NOTICE.txt +29 -0
  376. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/SKILL.md +151 -0
  377. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/references/cli.md +116 -0
  378. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/references/workflows.md +98 -0
  379. agent_toolkit_cli-1.0.3/skills/tooling/playwright-cli/scripts/executable_playwright_cli.sh +25 -0
  380. agent_toolkit_cli-1.0.3/src/agent_toolkit/__init__.py +4 -0
  381. agent_toolkit_cli-1.0.3/src/agent_toolkit/__main__.py +3 -0
  382. agent_toolkit_cli-1.0.3/src/agent_toolkit/_paths.py +64 -0
  383. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/__init__.py +0 -0
  384. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/doctor.py +453 -0
  385. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/install.py +445 -0
  386. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/main.py +66 -0
  387. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/mcp.py +418 -0
  388. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/plugin.py +213 -0
  389. agent_toolkit_cli-1.0.3/src/agent_toolkit/cli/skills.py +421 -0
  390. agent_toolkit_cli-1.0.3/src/agent_toolkit/loop/__init__.py +0 -0
  391. agent_toolkit_cli-1.0.3/src/agent_toolkit/loop/gh_gate.py +626 -0
  392. agent_toolkit_cli-1.0.3/src/agent_toolkit/loop/runner.py +1548 -0
  393. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/__init__.py +0 -0
  394. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/dispatcher.py +164 -0
  395. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/policy.py +345 -0
  396. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/__init__.py +21 -0
  397. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/anthropic_provider.py +109 -0
  398. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/base.py +53 -0
  399. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/ollama_provider.py +108 -0
  400. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/openai_provider.py +105 -0
  401. agent_toolkit_cli-1.0.3/src/agent_toolkit/runner/providers/opencode_provider.py +127 -0
@@ -0,0 +1,25 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ .venv/
5
+ *.egg-info/
6
+
7
+ # Node
8
+ node_modules/
9
+
10
+ # OS
11
+ .DS_Store
12
+ *.swp
13
+
14
+ # Secrets - never commit
15
+ *.env
16
+ .env.*
17
+ !.env.example
18
+
19
+ # Build artifacts
20
+ dist/
21
+ build/
22
+
23
+ # Editor
24
+ .idea/
25
+ .vscode/settings.json
@@ -0,0 +1,304 @@
1
+ # AGENTS.md — AI Agent Contract
2
+
3
+ **Purpose**: This file is the primary contract for any AI agent contributing to or working inside this repository. Read it before touching any file.
4
+
5
+ ---
6
+
7
+ ## What This Toolkit Does
8
+
9
+ `agent-toolkit` is a modular library of AI capabilities — skills, agent personas, loop templates, MCP configs, and per-tool profiles — designed to work across every major AI coding assistant (Claude Code, Cursor, OpenCode, GitHub Copilot, Windsurf, Pi Coding Agent).
10
+
11
+ The goal is a single source of truth: author a skill once, deploy it to any tool via its profile. When you add, modify, or remove anything here, you are affecting every downstream consumer who installs this toolkit.
12
+
13
+ **Operate accordingly: be precise, cite sources, and validate before finalizing.**
14
+
15
+ ---
16
+
17
+ ## Repository Structure
18
+
19
+ ```
20
+ agent-toolkit/
21
+ ├── skills/
22
+ │ ├── core/ # Memory, planning, context injection
23
+ │ ├── delivery/ # Code review, PR workflows, CI fix
24
+ │ ├── design/ # UI/UX, design systems, components
25
+ │ ├── forge/ # Code generation, TDD, refactoring
26
+ │ ├── integrations/ # JIRA, Confluence, Slack, Linear, ClickUp, Notion
27
+ │ ├── data/ # DBT, Snowflake, data pipelines
28
+ │ ├── tooling/ # Git, Docker, CI/CD, env setup
29
+ │ ├── ops/ # Incident, security review, performance
30
+ │ └── loops/ # Recurring agentic workflow skills
31
+ ├── agents/ # Tool-agnostic agent persona definitions
32
+ ├── profiles/
33
+ │ ├── claude-code/ # .claude/settings.json overlay + CLAUDE.md
34
+ │ ├── cursor/ # .mdc rule files for Cursor
35
+ │ ├── opencode/ # System prompt overlays for OpenCode
36
+ │ ├── copilot/ # copilot-instructions.md for GitHub Copilot
37
+ │ ├── windsurf/ # rules.md + memory files for Windsurf
38
+ │ └── pi/ # Skill files for Pi Coding Agent
39
+ ├── mcp/
40
+ │ └── templates/ # MCP server config templates (JSON)
41
+ ├── loops/ # Loop engineering templates
42
+ │ └── <name>/
43
+ │ ├── request.md # Prompt template with YAML frontmatter
44
+ │ ├── report.md # Output report template
45
+ │ └── runbook.md # Human operational runbook
46
+ ├── packs/ # Solution packs (YAML bundles)
47
+ ├── catalogs/
48
+ │ ├── skill-catalog.yaml
49
+ │ └── agent-catalog.yaml
50
+ ├── schemas/ # JSON schemas for validation
51
+ │ ├── skill.schema.json
52
+ │ └── loop.schema.json
53
+ ├── docs/ # Human-facing documentation
54
+ └── scripts/ # install.sh, validate-skills.sh, validate-loops.sh
55
+ ```
56
+
57
+ ---
58
+
59
+ ## Operating Rules
60
+
61
+ **Always:**
62
+
63
+ - Check `catalogs/skill-catalog.yaml` before adding a new skill — avoid duplicates
64
+ - Validate with `bash scripts/validate-skills.sh` before marking any skill work complete
65
+ - Cite which file a convention comes from when referencing repo standards
66
+ - Use English for all file content, commit messages, and PR descriptions
67
+ - Check the compatibility matrix in `skill.json` before claiming a skill works with a tool
68
+ - Keep secrets out of the repository — MCP templates use placeholder values only
69
+
70
+ **Never:**
71
+
72
+ - Commit credentials, API keys, or tokens to any file
73
+ - Claim a skill is compatible with a tool without testing or explicit authorship confirmation
74
+ - Skip the `skill.json` manifest when adding a skill
75
+ - Modify `catalogs/` manually — these are generated by `scripts/build-catalog.sh`
76
+ - Add content specific to any private organization — this is a public, vendor-neutral toolkit
77
+
78
+ ---
79
+
80
+ ## How to Add a Skill
81
+
82
+ Each skill lives in its own directory under the appropriate domain:
83
+
84
+ ```
85
+ skills/<domain>/<skill-name>/
86
+ ├── SKILL.md # Human-readable description and usage guide
87
+ └── skill.json # Machine-readable manifest
88
+ ```
89
+
90
+ ### SKILL.md Frontmatter Spec
91
+
92
+ Every `SKILL.md` must begin with a YAML frontmatter block:
93
+
94
+ ```markdown
95
+ ---
96
+ name: my-skill-name
97
+ description: One-sentence description of what this skill does.
98
+ metadata:
99
+ author: github-username
100
+ version: "1.0.0"
101
+ tags:
102
+ - tag1
103
+ - tag2
104
+ domain: delivery # one of: core, delivery, design, forge, integrations, data, tooling, ops, loops
105
+ ---
106
+
107
+ # My Skill Name
108
+
109
+ [Human-readable usage guide follows]
110
+ ```
111
+
112
+ Required frontmatter fields:
113
+
114
+ | Field | Type | Description |
115
+ |---|---|---|
116
+ | `name` | string | Kebab-case skill identifier, unique within the domain |
117
+ | `description` | string | One sentence, present tense ("Reviews pull requests for…") |
118
+ | `metadata.author` | string | GitHub username of the primary author |
119
+ | `metadata.version` | string | Semver string, start at `"1.0.0"` |
120
+ | `metadata.tags` | list | Searchable tags, lowercase kebab-case |
121
+ | `metadata.domain` | string | Parent domain directory name |
122
+
123
+ ### skill.json Spec
124
+
125
+ Every skill directory must also contain a `skill.json` manifest:
126
+
127
+ ```json
128
+ {
129
+ "name": "my-skill-name",
130
+ "version": "1.0.0",
131
+ "description": "One-sentence description matching SKILL.md.",
132
+ "source": "skills/delivery/my-skill-name",
133
+ "author": "github-username",
134
+ "tags": ["tag1", "tag2"],
135
+ "compatibility": {
136
+ "claude-code": true,
137
+ "cursor": true,
138
+ "opencode": true,
139
+ "copilot": false,
140
+ "windsurf": true,
141
+ "pi": false
142
+ }
143
+ }
144
+ ```
145
+
146
+ `compatibility` values:
147
+
148
+ - `true` — skill works with this tool and has been verified
149
+ - `false` — skill does not apply to this tool (e.g., tool-specific API unavailable)
150
+ - `"partial"` — skill works with limitations; document them in `SKILL.md`
151
+
152
+ The `skill.json` is validated against `schemas/skill.schema.json`. Run `bash scripts/validate-skills.sh` to check.
153
+
154
+ ---
155
+
156
+ ## How to Add a Loop Template
157
+
158
+ Loop templates live in `loops/<loop-name>/`. A complete loop template requires three files.
159
+
160
+ ### request.md — Prompt Template
161
+
162
+ ```markdown
163
+ ---
164
+ name: my-loop-name
165
+ tier: L1 # L1 (minutes-hours), L2 (daily), L3 (weekly/monthly)
166
+ cadence: "*/30 * * * *" # cron expression or human description
167
+ goal: "One sentence describing the loop's objective."
168
+ allowlist:
169
+ - github
170
+ - slack
171
+ deny:
172
+ - file_write # tools the loop must never invoke
173
+ budget:
174
+ tokens: 50000 # max tokens per run
175
+ duration_minutes: 10 # hard timeout
176
+ resumable: true # whether partial runs can be resumed
177
+ ---
178
+
179
+ [Prompt body follows. Use {{variables}} for substitution at runtime.]
180
+ ```
181
+
182
+ Required frontmatter fields:
183
+
184
+ | Field | Type | Description |
185
+ |---|---|---|
186
+ | `name` | string | Kebab-case loop identifier |
187
+ | `tier` | string | `L1`, `L2`, or `L3` |
188
+ | `cadence` | string | Cron expression or human-readable cadence |
189
+ | `goal` | string | One sentence describing what the loop achieves |
190
+ | `allowlist` | list | MCP servers or tool categories the loop may use |
191
+ | `deny` | list | Capabilities explicitly forbidden in this loop |
192
+ | `budget.tokens` | integer | Maximum token budget per run |
193
+ | `budget.duration_minutes` | integer | Hard timeout in minutes |
194
+ | `resumable` | boolean | Whether the loop supports mid-run checkpoint/resume |
195
+
196
+ ### report.md — Output Template
197
+
198
+ Define the structure of the loop's output report. Use Markdown with placeholder sections that the loop fills in at runtime.
199
+
200
+ ### runbook.md — Operational Runbook
201
+
202
+ Human-readable guide covering:
203
+ - What the loop does and why
204
+ - How to trigger it manually
205
+ - How to interpret its output
206
+ - Common failure modes and remediation steps
207
+ - Escalation path if the loop cannot complete
208
+
209
+ ---
210
+
211
+ ## How to Add a Profile
212
+
213
+ Profiles adapt toolkit skills for a specific tool. Each profile lives in `profiles/<tool-name>/`.
214
+
215
+ ### Claude Code (`profiles/claude-code/`)
216
+
217
+ - `CLAUDE.md` — system prompt overlay referencing skills by path
218
+ - `settings.json` — skill loading configuration
219
+
220
+ ### Cursor (`profiles/cursor/`)
221
+
222
+ - `rules/<domain>.mdc` — one rule file per domain, using Cursor's MDC format
223
+ - Keep each rule file focused on one domain; avoid catch-all files
224
+
225
+ ### OpenCode (`profiles/opencode/`)
226
+
227
+ - `system-prompt.md` — system prompt that opencode loads on startup
228
+ - `skills.yaml` — list of skill paths to inject
229
+
230
+ ### GitHub Copilot (`profiles/copilot/`)
231
+
232
+ - `copilot-instructions.md` — the file that gets copied to `.github/copilot-instructions.md` in projects
233
+ - Must be self-contained (Copilot cannot reference external files at runtime)
234
+
235
+ ### Windsurf (`profiles/windsurf/`)
236
+
237
+ - `rules.md` — rules file that Windsurf loads from `~/.codeium/windsurf/`
238
+ - `memories/` — optional pre-seeded memory files
239
+
240
+ ### Pi Coding Agent (`profiles/pi/`)
241
+
242
+ - `skills/<skill-name>.md` — individual skill files in Pi's expected format
243
+ - Pi skills are standalone; each file must be self-contained
244
+
245
+ ---
246
+
247
+ ## Agent Persona Format
248
+
249
+ Agent personas in `agents/` follow this structure:
250
+
251
+ ```
252
+ agents/<persona-name>/
253
+ ├── README.md # Role description, triggers, handoff rules
254
+ └── persona.json # Machine-readable manifest
255
+ ```
256
+
257
+ `persona.json` fields:
258
+
259
+ ```json
260
+ {
261
+ "name": "persona-name",
262
+ "role": "Short role title",
263
+ "description": "What this persona does and when to use it.",
264
+ "triggers": ["keyword1", "keyword2"],
265
+ "handoff_to": ["other-persona"],
266
+ "skills": ["skill-domain/skill-name"],
267
+ "compatibility": {
268
+ "claude-code": true,
269
+ "cursor": true,
270
+ "opencode": true,
271
+ "copilot": false,
272
+ "windsurf": true,
273
+ "pi": false
274
+ }
275
+ }
276
+ ```
277
+
278
+ ---
279
+
280
+ ## Catalog Generation
281
+
282
+ `catalogs/skill-catalog.yaml` and `catalogs/agent-catalog.yaml` are **generated files**. Do not edit them by hand.
283
+
284
+ To regenerate after adding or modifying skills or agents:
285
+
286
+ ```bash
287
+ bash scripts/build-catalog.sh
288
+ ```
289
+
290
+ The CI pipeline runs this automatically and will fail if the catalogs are out of sync with the source files.
291
+
292
+ ---
293
+
294
+ ## Validation
295
+
296
+ Before marking any contribution complete:
297
+
298
+ ```bash
299
+ bash scripts/validate-skills.sh # Validates all skill.json against schema
300
+ bash scripts/validate-loops.sh # Validates all loop frontmatter against schema
301
+ bash scripts/build-catalog.sh # Regenerates and checks catalogs
302
+ ```
303
+
304
+ All three must exit 0.
@@ -0,0 +1,63 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ---
9
+
10
+ ## [1.0.1] — 2026-08-04
11
+
12
+ ### Fixed
13
+ - Publish agent-toolkit-cli to PyPI (release.yml was missing build + publish steps in v1.0.0)
14
+ - SVG animations: replace CSS @keyframes with native SVG <animate> (GitHub strips CSS)
15
+ - Banner SVG: fix text overlap between title and right panel (shift from x=575 to x=530)
16
+ - CLI wheel install: shared _paths.py resolves toolkit root correctly in all install modes
17
+ - CI: remove pytest || true so test failures block the pipeline
18
+
19
+ ## [1.0.2] — 2026-08-04
20
+
21
+ ### Fixed
22
+ - release.yml now correctly builds wheel and publishes to PyPI
23
+
24
+ ## [1.0.3] — 2026-08-04
25
+
26
+ ### Fixed
27
+ - release.yml YAML syntax fixed for GitHub Actions validator
28
+
29
+ ## [Unreleased]
30
+
31
+ ### Added
32
+
33
+ - Initial toolkit release with 53+ skills across 9 domains (core, delivery, design, forge, integrations, data, tooling, ops, loops)
34
+ - Agent personas for all major AI coding tools: architect, planner, code-reviewer, security-reviewer, performance-optimizer, tdd-guide, refactor-cleaner, docs-lookup
35
+ - Profiles for Claude Code, Cursor, OpenCode, GitHub Copilot, Windsurf, and Pi Coding Agent
36
+ - 10 loop engineering templates including OSS maintenance patterns:
37
+ - `oss-pr-monitor` (L1) — monitor open PRs across OSS repos
38
+ - `oss-triage` (L1) — triage new issues and apply labels
39
+ - `oss-daily-briefing` (L2) — daily activity summary across tracked repos
40
+ - `dependency-drift` (L2) — detect and PR outdated dependencies
41
+ - `ci-health` (L1) — watch CI status and auto-diagnose failures
42
+ - `release-notes` (L3) — draft release notes from merged PRs
43
+ - `security-sweep` (L2) — vulnerability scan across repos
44
+ - `codeowner-review` (L2) — remind code owners of pending reviews
45
+ - `stale-branch-cleanup` (L3) — identify and archive stale branches
46
+ - `contributor-digest` (L3) — generate weekly contributor activity digest
47
+ - MCP configuration templates for 6 services: GitHub, Slack, Notion, Linear, Figma, ClickUp
48
+ - Solution packs: `oss-ecosystem`, `startup-delivery`, `enterprise-ops`, `data-platform`
49
+ - JSON schemas for skill and loop validation (`schemas/skill.schema.json`, `schemas/loop.schema.json`)
50
+ - `catalogs/skill-catalog.yaml` — machine-readable index of all skills
51
+ - `catalogs/agent-catalog.yaml` — machine-readable index of all agent personas
52
+ - `scripts/validate-skills.sh` — validates all skill.json manifests against schema
53
+ - `scripts/validate-loops.sh` — validates all loop frontmatter against schema
54
+ - `scripts/build-catalog.sh` — regenerates skill and agent catalogs
55
+ - `scripts/install.sh` — quick-setup installer for all supported tools
56
+ - `AGENTS.md` — AI agent contract with authoring specs for skills, loops, and profiles
57
+ - `CONTRIBUTING.md` — contributor guide with step-by-step instructions
58
+ - `SECURITY.md` — security policy including private disclosure process
59
+ - GitHub Actions CI workflow for automated skill and loop validation on every push and PR
60
+
61
+ ---
62
+
63
+ [Unreleased]: https://github.com/ulises-jeremias/agent-toolkit/compare/HEAD...HEAD
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ulises Jeremias
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.