@jetrabbits/agentic 0.0.1

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 (440) hide show
  1. package/AGENTS.md +143 -0
  2. package/README.md +154 -0
  3. package/agentic +1615 -0
  4. package/areas/devops/ci-cd/AGENTS.md +48 -0
  5. package/areas/devops/ci-cd/PROMPTS.md +7 -0
  6. package/areas/devops/ci-cd/prompts/onboard-repo.md +97 -0
  7. package/areas/devops/ci-cd/prompts/pipeline-debug.md +103 -0
  8. package/areas/devops/ci-cd/prompts/release-pipeline.md +115 -0
  9. package/areas/devops/ci-cd/rules/pipeline-standards.md +33 -0
  10. package/areas/devops/ci-cd/rules/quality-gates.md +24 -0
  11. package/areas/devops/ci-cd/rules/supply-chain-security.md +34 -0
  12. package/areas/devops/ci-cd/skills/artifact-management/SKILL.md +157 -0
  13. package/areas/devops/ci-cd/skills/build-optimization/SKILL.md +168 -0
  14. package/areas/devops/ci-cd/skills/github-actions-patterns/SKILL.md +190 -0
  15. package/areas/devops/ci-cd/skills/gitlab-ci-patterns/SKILL.md +169 -0
  16. package/areas/devops/ci-cd/skills/pipeline-security/SKILL.md +161 -0
  17. package/areas/devops/ci-cd/workflows/onboard-repo.md +73 -0
  18. package/areas/devops/ci-cd/workflows/pipeline-debug.md +66 -0
  19. package/areas/devops/ci-cd/workflows/release-pipeline.md +115 -0
  20. package/areas/devops/database-ops/AGENTS.md +47 -0
  21. package/areas/devops/database-ops/prompts/backup-verify.md +83 -0
  22. package/areas/devops/database-ops/prompts/db-incident.md +127 -0
  23. package/areas/devops/database-ops/rules/access-control.md +20 -0
  24. package/areas/devops/database-ops/rules/backup-policy.md +33 -0
  25. package/areas/devops/database-ops/rules/migration-runbook.md +32 -0
  26. package/areas/devops/database-ops/skills/backup-restore/SKILL.md +226 -0
  27. package/areas/devops/database-ops/skills/db-performance/SKILL.md +205 -0
  28. package/areas/devops/database-ops/skills/migration-safety/SKILL.md +155 -0
  29. package/areas/devops/database-ops/skills/postgres-operations/SKILL.md +156 -0
  30. package/areas/devops/database-ops/skills/redis-operations/SKILL.md +174 -0
  31. package/areas/devops/database-ops/workflows/backup-verify.md +107 -0
  32. package/areas/devops/database-ops/workflows/db-incident.md +86 -0
  33. package/areas/devops/devsecops/AGENTS.md +47 -0
  34. package/areas/devops/devsecops/prompts/policy-onboard.md +79 -0
  35. package/areas/devops/devsecops/prompts/security-scan-pipeline.md +131 -0
  36. package/areas/devops/devsecops/rules/container-security.md +22 -0
  37. package/areas/devops/devsecops/rules/policy-as-code.md +37 -0
  38. package/areas/devops/devsecops/rules/shift-left-policy.md +26 -0
  39. package/areas/devops/devsecops/skills/container-hardening/SKILL.md +146 -0
  40. package/areas/devops/devsecops/skills/opa-policies/SKILL.md +188 -0
  41. package/areas/devops/devsecops/skills/sbom-supply-chain/SKILL.md +165 -0
  42. package/areas/devops/devsecops/skills/secret-detection/SKILL.md +190 -0
  43. package/areas/devops/devsecops/skills/sigstore-signing/SKILL.md +184 -0
  44. package/areas/devops/devsecops/workflows/policy-onboard.md +104 -0
  45. package/areas/devops/devsecops/workflows/security-scan-pipeline.md +155 -0
  46. package/areas/devops/infrastructure/AGENTS.md +50 -0
  47. package/areas/devops/infrastructure/prompts/destroy-environment.md +81 -0
  48. package/areas/devops/infrastructure/prompts/drift-remediation.md +71 -0
  49. package/areas/devops/infrastructure/prompts/module-development.md +69 -0
  50. package/areas/devops/infrastructure/prompts/provision-environment.md +121 -0
  51. package/areas/devops/infrastructure/rules/iac-standards.md +80 -0
  52. package/areas/devops/infrastructure/rules/immutability.md +28 -0
  53. package/areas/devops/infrastructure/rules/secret-hygiene.md +53 -0
  54. package/areas/devops/infrastructure/rules/state-management.md +47 -0
  55. package/areas/devops/infrastructure/skills/ansible-playbooks/SKILL.md +174 -0
  56. package/areas/devops/infrastructure/skills/cost-optimization/SKILL.md +177 -0
  57. package/areas/devops/infrastructure/skills/drift-detection/SKILL.md +178 -0
  58. package/areas/devops/infrastructure/skills/state-management/SKILL.md +159 -0
  59. package/areas/devops/infrastructure/skills/terraform-modules/SKILL.md +169 -0
  60. package/areas/devops/infrastructure/workflows/destroy-environment.md +96 -0
  61. package/areas/devops/infrastructure/workflows/drift-remediation.md +66 -0
  62. package/areas/devops/infrastructure/workflows/module-development.md +101 -0
  63. package/areas/devops/infrastructure/workflows/provision-environment.md +96 -0
  64. package/areas/devops/kubernetes/AGENTS.md +57 -0
  65. package/areas/devops/kubernetes/PROMPTS.md +9 -0
  66. package/areas/devops/kubernetes/prompts/cluster-bootstrap.md +67 -0
  67. package/areas/devops/kubernetes/prompts/debug-workload.md +91 -0
  68. package/areas/devops/kubernetes/prompts/onboard-service.md +101 -0
  69. package/areas/devops/kubernetes/prompts/upgrade-cluster.md +63 -0
  70. package/areas/devops/kubernetes/rules/cluster-standards.md +51 -0
  71. package/areas/devops/kubernetes/rules/resource-governance.md +80 -0
  72. package/areas/devops/kubernetes/rules/upgrade-policy.md +52 -0
  73. package/areas/devops/kubernetes/rules/workload-security.md +64 -0
  74. package/areas/devops/kubernetes/skills/cluster-operations/SKILL.md +136 -0
  75. package/areas/devops/kubernetes/skills/helm-charts/SKILL.md +152 -0
  76. package/areas/devops/kubernetes/skills/network-policies/SKILL.md +169 -0
  77. package/areas/devops/kubernetes/skills/pod-troubleshooting/SKILL.md +129 -0
  78. package/areas/devops/kubernetes/skills/rbac-design/SKILL.md +148 -0
  79. package/areas/devops/kubernetes/skills/resource-tuning/SKILL.md +156 -0
  80. package/areas/devops/kubernetes/workflows/cluster-bootstrap.md +194 -0
  81. package/areas/devops/kubernetes/workflows/debug-workload.md +108 -0
  82. package/areas/devops/kubernetes/workflows/onboard-service.md +124 -0
  83. package/areas/devops/kubernetes/workflows/upgrade-cluster.md +165 -0
  84. package/areas/devops/networking/AGENTS.md +47 -0
  85. package/areas/devops/networking/prompts/onboard-ingress.md +119 -0
  86. package/areas/devops/networking/prompts/service-mesh-onboard.md +77 -0
  87. package/areas/devops/networking/rules/ingress-standards.md +17 -0
  88. package/areas/devops/networking/rules/network-segmentation.md +24 -0
  89. package/areas/devops/networking/rules/tls-policy.md +32 -0
  90. package/areas/devops/networking/skills/dns-management/SKILL.md +169 -0
  91. package/areas/devops/networking/skills/ingress-patterns/SKILL.md +165 -0
  92. package/areas/devops/networking/skills/service-mesh/SKILL.md +206 -0
  93. package/areas/devops/networking/skills/tls-termination/SKILL.md +198 -0
  94. package/areas/devops/networking/skills/vpc-design/SKILL.md +132 -0
  95. package/areas/devops/networking/workflows/onboard-ingress.md +64 -0
  96. package/areas/devops/networking/workflows/service-mesh-onboard.md +122 -0
  97. package/areas/devops/observability/AGENTS.md +48 -0
  98. package/areas/devops/observability/prompts/alert-investigation.md +117 -0
  99. package/areas/devops/observability/prompts/observability-stack-setup.md +99 -0
  100. package/areas/devops/observability/prompts/onboard-service-monitoring.md +79 -0
  101. package/areas/devops/observability/rules/alerting-standards.md +36 -0
  102. package/areas/devops/observability/rules/data-retention.md +19 -0
  103. package/areas/devops/observability/rules/golden-signals.md +28 -0
  104. package/areas/devops/observability/skills/distributed-tracing/SKILL.md +149 -0
  105. package/areas/devops/observability/skills/grafana-dashboards/SKILL.md +201 -0
  106. package/areas/devops/observability/skills/log-aggregation/SKILL.md +159 -0
  107. package/areas/devops/observability/skills/prometheus-alertmanager/SKILL.md +188 -0
  108. package/areas/devops/observability/skills/slo-implementation/SKILL.md +189 -0
  109. package/areas/devops/observability/workflows/alert-investigation.md +98 -0
  110. package/areas/devops/observability/workflows/observability-stack-setup.md +156 -0
  111. package/areas/devops/observability/workflows/onboard-service-monitoring.md +83 -0
  112. package/areas/devops/sre/AGENTS.md +48 -0
  113. package/areas/devops/sre/prompts/incident-response.md +129 -0
  114. package/areas/devops/sre/prompts/postmortem.md +101 -0
  115. package/areas/devops/sre/prompts/slo-review.md +125 -0
  116. package/areas/devops/sre/rules/error-budget-policy.md +25 -0
  117. package/areas/devops/sre/rules/on-call-standards.md +25 -0
  118. package/areas/devops/sre/rules/slo-policy.md +31 -0
  119. package/areas/devops/sre/skills/capacity-planning/SKILL.md +162 -0
  120. package/areas/devops/sre/skills/chaos-engineering/SKILL.md +186 -0
  121. package/areas/devops/sre/skills/incident-command/SKILL.md +119 -0
  122. package/areas/devops/sre/skills/postmortem-analysis/SKILL.md +104 -0
  123. package/areas/devops/sre/skills/slo-sli-design/SKILL.md +145 -0
  124. package/areas/devops/sre/workflows/incident-response.md +66 -0
  125. package/areas/devops/sre/workflows/postmortem.md +90 -0
  126. package/areas/devops/sre/workflows/slo-review.md +95 -0
  127. package/areas/software/backend/AGENTS.md +59 -0
  128. package/areas/software/backend/PROMPTS.md +50 -0
  129. package/areas/software/backend/README.md +48 -0
  130. package/areas/software/backend/prompts/add-migration.md +93 -0
  131. package/areas/software/backend/prompts/create-endpoint.md +97 -0
  132. package/areas/software/backend/prompts/debug-issue.md +87 -0
  133. package/areas/software/backend/prompts/develop-epic.md +83 -0
  134. package/areas/software/backend/prompts/develop-feature.md +91 -0
  135. package/areas/software/backend/prompts/refactor-module.md +79 -0
  136. package/areas/software/backend/prompts/test-feature.md +89 -0
  137. package/areas/software/backend/rules/architecture.md +20 -0
  138. package/areas/software/backend/rules/data_access.md +20 -0
  139. package/areas/software/backend/rules/security.md +20 -0
  140. package/areas/software/backend/rules/testing.md +19 -0
  141. package/areas/software/backend/skills/api-design/SKILL.md +170 -0
  142. package/areas/software/backend/skills/async-processing/SKILL.md +152 -0
  143. package/areas/software/backend/skills/database-modeling/SKILL.md +173 -0
  144. package/areas/software/backend/skills/observability/SKILL.md +162 -0
  145. package/areas/software/backend/skills/troubleshooting/SKILL.md +139 -0
  146. package/areas/software/backend/workflows/add-migration.md +79 -0
  147. package/areas/software/backend/workflows/create-endpoint.md +89 -0
  148. package/areas/software/backend/workflows/debug-issue.md +77 -0
  149. package/areas/software/backend/workflows/develop-epic.md +78 -0
  150. package/areas/software/backend/workflows/develop-feature.md +98 -0
  151. package/areas/software/backend/workflows/refactor-module.md +73 -0
  152. package/areas/software/backend/workflows/test-feature.md +67 -0
  153. package/areas/software/data-engineering/AGENTS.md +59 -0
  154. package/areas/software/data-engineering/PROMPTS.md +32 -0
  155. package/areas/software/data-engineering/prompts/backfill-data.md +107 -0
  156. package/areas/software/data-engineering/prompts/data-quality-incident.md +109 -0
  157. package/areas/software/data-engineering/prompts/lineage-trace.md +121 -0
  158. package/areas/software/data-engineering/prompts/new-model.md +117 -0
  159. package/areas/software/data-engineering/prompts/schema-migration.md +111 -0
  160. package/areas/software/data-engineering/rules/data-governance.md +11 -0
  161. package/areas/software/data-engineering/rules/pii-handling.md +19 -0
  162. package/areas/software/data-engineering/rules/pipeline-integrity.md +11 -0
  163. package/areas/software/data-engineering/rules/schema-management.md +21 -0
  164. package/areas/software/data-engineering/skills/data-modeling/SKILL.md +49 -0
  165. package/areas/software/data-engineering/skills/dbt-patterns/SKILL.md +43 -0
  166. package/areas/software/data-engineering/skills/lineage-governance/SKILL.md +38 -0
  167. package/areas/software/data-engineering/skills/orchestration/SKILL.md +35 -0
  168. package/areas/software/data-engineering/skills/quality-checks/SKILL.md +50 -0
  169. package/areas/software/data-engineering/skills/sql-optimization/SKILL.md +47 -0
  170. package/areas/software/data-engineering/skills/streaming-patterns/SKILL.md +48 -0
  171. package/areas/software/data-engineering/workflows/backfill-data.md +59 -0
  172. package/areas/software/data-engineering/workflows/data-quality-incident.md +64 -0
  173. package/areas/software/data-engineering/workflows/lineage-trace.md +56 -0
  174. package/areas/software/data-engineering/workflows/new-model.md +71 -0
  175. package/areas/software/data-engineering/workflows/schema-migration.md +67 -0
  176. package/areas/software/frontend/AGENTS.md +60 -0
  177. package/areas/software/frontend/PROMPTS.md +32 -0
  178. package/areas/software/frontend/prompts/a11y-fix.md +75 -0
  179. package/areas/software/frontend/prompts/bundle-analyze.md +75 -0
  180. package/areas/software/frontend/prompts/release-prep.md +83 -0
  181. package/areas/software/frontend/prompts/scaffold-component.md +69 -0
  182. package/areas/software/frontend/prompts/visual-regression.md +73 -0
  183. package/areas/software/frontend/rules/accessibility.md +16 -0
  184. package/areas/software/frontend/rules/architecture.md +29 -0
  185. package/areas/software/frontend/rules/performance.md +23 -0
  186. package/areas/software/frontend/rules/quality.md +12 -0
  187. package/areas/software/frontend/skills/a11y-audit/SKILL.md +61 -0
  188. package/areas/software/frontend/skills/api-integration/SKILL.md +58 -0
  189. package/areas/software/frontend/skills/component-design/SKILL.md +171 -0
  190. package/areas/software/frontend/skills/css-architecture/SKILL.md +146 -0
  191. package/areas/software/frontend/skills/error-handling/SKILL.md +55 -0
  192. package/areas/software/frontend/skills/performance-tuning/SKILL.md +58 -0
  193. package/areas/software/frontend/skills/state-management/SKILL.md +54 -0
  194. package/areas/software/frontend/skills/testing-patterns/SKILL.md +69 -0
  195. package/areas/software/frontend/workflows/a11y-fix.md +63 -0
  196. package/areas/software/frontend/workflows/bundle-analyze.md +56 -0
  197. package/areas/software/frontend/workflows/release-prep.md +66 -0
  198. package/areas/software/frontend/workflows/scaffold-component.md +67 -0
  199. package/areas/software/frontend/workflows/visual-regression.md +65 -0
  200. package/areas/software/full-stack/AGENTS.md +72 -0
  201. package/areas/software/full-stack/PROMPTS.md +66 -0
  202. package/areas/software/full-stack/prompts/backend-project-full-cycle.md +141 -0
  203. package/areas/software/full-stack/prompts/debug-issue.md +115 -0
  204. package/areas/software/full-stack/prompts/develop-feature.md +119 -0
  205. package/areas/software/full-stack/prompts/feature-implementation-flow.md +137 -0
  206. package/areas/software/full-stack/prompts/testing-ci-pipeline.md +119 -0
  207. package/areas/software/full-stack/rules/api-design-guide.md +24 -0
  208. package/areas/software/full-stack/rules/async-concurrency-guide.md +21 -0
  209. package/areas/software/full-stack/rules/backend-architecture-rule.md +41 -0
  210. package/areas/software/full-stack/rules/background-jobs-guide.md +20 -0
  211. package/areas/software/full-stack/rules/code-quality-guide.md +22 -0
  212. package/areas/software/full-stack/rules/database-access-guide.md +24 -0
  213. package/areas/software/full-stack/rules/database-migrations-guide.md +24 -0
  214. package/areas/software/full-stack/rules/domain-models-guide.md +28 -0
  215. package/areas/software/full-stack/rules/e2e-test-guide.md +18 -0
  216. package/areas/software/full-stack/rules/env-settings-guide.md +34 -0
  217. package/areas/software/full-stack/rules/error-handling-guide.md +20 -0
  218. package/areas/software/full-stack/rules/logging-observability-guide.md +22 -0
  219. package/areas/software/full-stack/rules/project-guide.md +34 -0
  220. package/areas/software/full-stack/rules/python-venv-guide.md +23 -0
  221. package/areas/software/full-stack/rules/security-guide.md +22 -0
  222. package/areas/software/full-stack/rules/svt-test-guide.md +17 -0
  223. package/areas/software/full-stack/rules/testing-ci-guide.md +25 -0
  224. package/areas/software/full-stack/skills/api-design-principles/SKILL.md +125 -0
  225. package/areas/software/full-stack/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  226. package/areas/software/full-stack/skills/api-design-principles/assets/rest-api-template.py +182 -0
  227. package/areas/software/full-stack/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  228. package/areas/software/full-stack/skills/api-design-principles/references/rest-best-practices.md +408 -0
  229. package/areas/software/full-stack/skills/api-design-principles/resources/implementation-playbook.md +513 -0
  230. package/areas/software/full-stack/skills/api-patterns/SKILL.md +81 -0
  231. package/areas/software/full-stack/skills/api-patterns/api-style.md +42 -0
  232. package/areas/software/full-stack/skills/api-patterns/auth.md +24 -0
  233. package/areas/software/full-stack/skills/api-patterns/documentation.md +26 -0
  234. package/areas/software/full-stack/skills/api-patterns/graphql.md +41 -0
  235. package/areas/software/full-stack/skills/api-patterns/rate-limiting.md +31 -0
  236. package/areas/software/full-stack/skills/api-patterns/response.md +37 -0
  237. package/areas/software/full-stack/skills/api-patterns/rest.md +40 -0
  238. package/areas/software/full-stack/skills/api-patterns/scripts/api_validator.py +211 -0
  239. package/areas/software/full-stack/skills/api-patterns/security-testing.md +122 -0
  240. package/areas/software/full-stack/skills/api-patterns/trpc.md +41 -0
  241. package/areas/software/full-stack/skills/api-patterns/versioning.md +22 -0
  242. package/areas/software/full-stack/skills/app-builder/SKILL.md +135 -0
  243. package/areas/software/full-stack/skills/app-builder/agent-coordination.md +71 -0
  244. package/areas/software/full-stack/skills/app-builder/feature-building.md +53 -0
  245. package/areas/software/full-stack/skills/app-builder/project-detection.md +34 -0
  246. package/areas/software/full-stack/skills/app-builder/scaffolding.md +118 -0
  247. package/areas/software/full-stack/skills/app-builder/tech-stack.md +40 -0
  248. package/areas/software/full-stack/skills/app-builder/templates/SKILL.md +39 -0
  249. package/areas/software/full-stack/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  250. package/areas/software/full-stack/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  251. package/areas/software/full-stack/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  252. package/areas/software/full-stack/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  253. package/areas/software/full-stack/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  254. package/areas/software/full-stack/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  255. package/areas/software/full-stack/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  256. package/areas/software/full-stack/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +82 -0
  257. package/areas/software/full-stack/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +100 -0
  258. package/areas/software/full-stack/skills/app-builder/templates/nextjs-static/TEMPLATE.md +106 -0
  259. package/areas/software/full-stack/skills/app-builder/templates/nuxt-app/TEMPLATE.md +101 -0
  260. package/areas/software/full-stack/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  261. package/areas/software/full-stack/skills/app-builder/templates/react-native-app/TEMPLATE.md +93 -0
  262. package/areas/software/full-stack/skills/backend-developer/SKILL.md +58 -0
  263. package/areas/software/full-stack/skills/bash-pro/SKILL.md +310 -0
  264. package/areas/software/full-stack/skills/blackbox-test/SKILL.md +84 -0
  265. package/areas/software/full-stack/skills/prompt-project-planner/SKILL.md +130 -0
  266. package/areas/software/full-stack/skills/prompt-project-planner/output.schema.md +68 -0
  267. package/areas/software/full-stack/skills/prompt-project-planner/questions.md +80 -0
  268. package/areas/software/full-stack/skills/python-pro/SKILL.md +158 -0
  269. package/areas/software/full-stack/skills/skill-creator/LICENSE.txt +202 -0
  270. package/areas/software/full-stack/skills/skill-creator/SKILL.md +356 -0
  271. package/areas/software/full-stack/skills/skill-creator/references/output-patterns.md +82 -0
  272. package/areas/software/full-stack/skills/skill-creator/references/workflows.md +28 -0
  273. package/areas/software/full-stack/skills/skill-creator/scripts/init_skill.py +303 -0
  274. package/areas/software/full-stack/skills/skill-creator/scripts/package_skill.py +110 -0
  275. package/areas/software/full-stack/skills/skill-creator/scripts/quick_validate.py +95 -0
  276. package/areas/software/full-stack/workflows/backend-project-full-cycle.md +132 -0
  277. package/areas/software/full-stack/workflows/debug-issue.md +70 -0
  278. package/areas/software/full-stack/workflows/develop-feature.md +85 -0
  279. package/areas/software/full-stack/workflows/feature-implementation-flow.md +78 -0
  280. package/areas/software/full-stack/workflows/testing-ci-pipeline.md +65 -0
  281. package/areas/software/general/AGENTS.md +68 -0
  282. package/areas/software/general/prompts/code-review-workflow.md +87 -0
  283. package/areas/software/general/prompts/development-cycle-workflow.md +83 -0
  284. package/areas/software/general/prompts/project-setup-workflow.md +93 -0
  285. package/areas/software/general/rules/code-style-guide.md +31 -0
  286. package/areas/software/general/rules/docker-compose-guide.md +27 -0
  287. package/areas/software/general/rules/git-workflow-guide.md +27 -0
  288. package/areas/software/general/rules/github-workflow-guide.md +27 -0
  289. package/areas/software/general/rules/gitlab-ci-guide.md +27 -0
  290. package/areas/software/general/rules/lint-format-guide.md +29 -0
  291. package/areas/software/general/rules/makefile-guide.md +34 -0
  292. package/areas/software/general/rules/readme-sync-guide.md +40 -0
  293. package/areas/software/general/rules/sdlc-methodology-guide.md +27 -0
  294. package/areas/software/general/rules/sdlc-role-responsibilities.md +108 -0
  295. package/areas/software/general/skills/general-dev-tools/SKILL.md +324 -0
  296. package/areas/software/general/workflows/code-review-workflow.md +84 -0
  297. package/areas/software/general/workflows/development-cycle-workflow.md +85 -0
  298. package/areas/software/general/workflows/project-setup-workflow.md +94 -0
  299. package/areas/software/mlops/AGENTS.md +57 -0
  300. package/areas/software/mlops/PROMPTS.md +32 -0
  301. package/areas/software/mlops/prompts/champion-challenger.md +87 -0
  302. package/areas/software/mlops/prompts/deploy-endpoint.md +91 -0
  303. package/areas/software/mlops/prompts/evaluate-model.md +87 -0
  304. package/areas/software/mlops/prompts/model-incident.md +87 -0
  305. package/areas/software/mlops/prompts/train-experiment.md +83 -0
  306. package/areas/software/mlops/rules/data-integrity.md +9 -0
  307. package/areas/software/mlops/rules/model-governance.md +9 -0
  308. package/areas/software/mlops/rules/production-safety.md +9 -0
  309. package/areas/software/mlops/rules/reproducibility.md +9 -0
  310. package/areas/software/mlops/skills/experiment-tracking/SKILL.md +29 -0
  311. package/areas/software/mlops/skills/feature-engineering/SKILL.md +44 -0
  312. package/areas/software/mlops/skills/inference-serving/SKILL.md +35 -0
  313. package/areas/software/mlops/skills/model-evaluation/SKILL.md +40 -0
  314. package/areas/software/mlops/skills/model-monitoring/SKILL.md +32 -0
  315. package/areas/software/mlops/workflows/champion-challenger.md +65 -0
  316. package/areas/software/mlops/workflows/deploy-endpoint.md +70 -0
  317. package/areas/software/mlops/workflows/evaluate-model.md +63 -0
  318. package/areas/software/mlops/workflows/model-incident.md +64 -0
  319. package/areas/software/mlops/workflows/train-experiment.md +56 -0
  320. package/areas/software/mobile/AGENTS.md +58 -0
  321. package/areas/software/mobile/PROMPTS.md +32 -0
  322. package/areas/software/mobile/prompts/crash-triage.md +63 -0
  323. package/areas/software/mobile/prompts/device-testing.md +83 -0
  324. package/areas/software/mobile/prompts/ota-update.md +75 -0
  325. package/areas/software/mobile/prompts/release-build.md +67 -0
  326. package/areas/software/mobile/prompts/store-submission.md +79 -0
  327. package/areas/software/mobile/rules/offline-first.md +10 -0
  328. package/areas/software/mobile/rules/performance-budget.md +20 -0
  329. package/areas/software/mobile/rules/platform-compliance.md +17 -0
  330. package/areas/software/mobile/rules/security-mobile.md +9 -0
  331. package/areas/software/mobile/skills/app-store-prep/SKILL.md +27 -0
  332. package/areas/software/mobile/skills/mobile-testing/SKILL.md +36 -0
  333. package/areas/software/mobile/skills/native-modules/SKILL.md +38 -0
  334. package/areas/software/mobile/skills/navigation-patterns/SKILL.md +49 -0
  335. package/areas/software/mobile/skills/push-notifications/SKILL.md +40 -0
  336. package/areas/software/mobile/skills/state-sync/SKILL.md +48 -0
  337. package/areas/software/mobile/workflows/crash-triage.md +63 -0
  338. package/areas/software/mobile/workflows/device-testing.md +54 -0
  339. package/areas/software/mobile/workflows/ota-update.md +54 -0
  340. package/areas/software/mobile/workflows/release-build.md +67 -0
  341. package/areas/software/mobile/workflows/store-submission.md +63 -0
  342. package/areas/software/platform/AGENTS.md +67 -0
  343. package/areas/software/platform/PROMPTS.md +32 -0
  344. package/areas/software/platform/prompts/cost-audit.md +117 -0
  345. package/areas/software/platform/prompts/deploy-production.md +109 -0
  346. package/areas/software/platform/prompts/drift-check.md +107 -0
  347. package/areas/software/platform/prompts/incident-response.md +121 -0
  348. package/areas/software/platform/prompts/provision-env.md +113 -0
  349. package/areas/software/platform/rules/cost-governance.md +11 -0
  350. package/areas/software/platform/rules/immutability.md +17 -0
  351. package/areas/software/platform/rules/reliability.md +19 -0
  352. package/areas/software/platform/rules/security-posture.md +12 -0
  353. package/areas/software/platform/skills/ci-cd-pipelines/SKILL.md +58 -0
  354. package/areas/software/platform/skills/incident-response/SKILL.md +41 -0
  355. package/areas/software/platform/skills/k8s-manifests/SKILL.md +56 -0
  356. package/areas/software/platform/skills/networking/SKILL.md +44 -0
  357. package/areas/software/platform/skills/observability-setup/SKILL.md +49 -0
  358. package/areas/software/platform/skills/secrets-management/SKILL.md +43 -0
  359. package/areas/software/platform/skills/terraform-patterns/SKILL.md +75 -0
  360. package/areas/software/platform/workflows/cost-audit.md +61 -0
  361. package/areas/software/platform/workflows/deploy-production.md +67 -0
  362. package/areas/software/platform/workflows/drift-check.md +61 -0
  363. package/areas/software/platform/workflows/incident-response.md +69 -0
  364. package/areas/software/platform/workflows/provision-env.md +77 -0
  365. package/areas/software/qa/AGENTS.md +58 -0
  366. package/areas/software/qa/PROMPTS.md +32 -0
  367. package/areas/software/qa/prompts/flakiness-investigation.md +61 -0
  368. package/areas/software/qa/prompts/performance-audit.md +65 -0
  369. package/areas/software/qa/prompts/regression-suite.md +61 -0
  370. package/areas/software/qa/prompts/smoke-test.md +65 -0
  371. package/areas/software/qa/prompts/test-coverage-report.md +61 -0
  372. package/areas/software/qa/rules/flakiness-policy.md +12 -0
  373. package/areas/software/qa/rules/quality-gates.md +28 -0
  374. package/areas/software/qa/rules/test-data.md +9 -0
  375. package/areas/software/qa/rules/test-strategy.md +11 -0
  376. package/areas/software/qa/skills/accessibility-testing/SKILL.md +139 -0
  377. package/areas/software/qa/skills/api-testing/SKILL.md +140 -0
  378. package/areas/software/qa/skills/e2e-patterns/SKILL.md +152 -0
  379. package/areas/software/qa/skills/performance-testing/SKILL.md +177 -0
  380. package/areas/software/qa/skills/test-data-management/SKILL.md +161 -0
  381. package/areas/software/qa/skills/test-pyramid/SKILL.md +127 -0
  382. package/areas/software/qa/workflows/flakiness-investigation.md +63 -0
  383. package/areas/software/qa/workflows/performance-audit.md +59 -0
  384. package/areas/software/qa/workflows/regression-suite.md +59 -0
  385. package/areas/software/qa/workflows/smoke-test.md +64 -0
  386. package/areas/software/qa/workflows/test-coverage-report.md +57 -0
  387. package/areas/software/security/AGENTS.md +58 -0
  388. package/areas/software/security/PROMPTS.md +32 -0
  389. package/areas/software/security/prompts/compliance-report.md +113 -0
  390. package/areas/software/security/prompts/pen-test-sim.md +113 -0
  391. package/areas/software/security/prompts/secret-rotation.md +115 -0
  392. package/areas/software/security/prompts/security-scan.md +91 -0
  393. package/areas/software/security/prompts/threat-model-review.md +105 -0
  394. package/areas/software/security/rules/compliance-baseline.md +23 -0
  395. package/areas/software/security/rules/dependency-policy.md +12 -0
  396. package/areas/software/security/rules/secrets-policy.md +22 -0
  397. package/areas/software/security/rules/secure-coding.md +22 -0
  398. package/areas/software/security/skills/auth-patterns/SKILL.md +42 -0
  399. package/areas/software/security/skills/crypto-standards/SKILL.md +42 -0
  400. package/areas/software/security/skills/dependency-audit/SKILL.md +29 -0
  401. package/areas/software/security/skills/sast-dast-interpretation/SKILL.md +33 -0
  402. package/areas/software/security/skills/security-headers/SKILL.md +29 -0
  403. package/areas/software/security/skills/threat-modeling/SKILL.md +36 -0
  404. package/areas/software/security/workflows/compliance-report.md +57 -0
  405. package/areas/software/security/workflows/pen-test-sim.md +63 -0
  406. package/areas/software/security/workflows/secret-rotation.md +67 -0
  407. package/areas/software/security/workflows/security-scan.md +64 -0
  408. package/areas/software/security/workflows/threat-model-review.md +62 -0
  409. package/areas/template/AGENTS-area.tmpl.md +61 -0
  410. package/areas/template/AGENTS.tmpl.md +67 -0
  411. package/areas/template/GUIDE.md +102 -0
  412. package/areas/template/PROMPTS.tmpl.md +29 -0
  413. package/areas/template/README.md +57 -0
  414. package/areas/template/README.tmpl.md +51 -0
  415. package/areas/template/prompt.tmpl.md +101 -0
  416. package/areas/template/rule.tmpl.md +71 -0
  417. package/areas/template/skill.tmpl.md +108 -0
  418. package/areas/template/workflow.tmpl.md +104 -0
  419. package/bin/agentic.js +24 -0
  420. package/extensions/antigravity/GEMINI.md +10 -0
  421. package/extensions/claude/CLAUDE.md +10 -0
  422. package/extensions/codex/AGENTS.override.md +93 -0
  423. package/extensions/gemini/GEMINI.md +10 -0
  424. package/extensions/opencode/agents/designer.md +65 -0
  425. package/extensions/opencode/agents/developer.md +63 -0
  426. package/extensions/opencode/agents/devops-engineer.md +69 -0
  427. package/extensions/opencode/agents/pm.md +61 -0
  428. package/extensions/opencode/agents/product-owner.md +76 -0
  429. package/extensions/opencode/agents/qa.md +66 -0
  430. package/extensions/opencode/agents/team-lead.md +67 -0
  431. package/extensions/opencode/commands/feature.md +75 -0
  432. package/extensions/opencode/opencode.json +93 -0
  433. package/extensions/opencode/plugins/model-checker.json +14 -0
  434. package/extensions/opencode/plugins/model-checker.ts +279 -0
  435. package/extensions/opencode/plugins/sound-notification.ts +13 -0
  436. package/extensions/opencode/plugins/telegram-notification.ts +86 -0
  437. package/extensions/opencode/skills/code_review_expert/SKILL.md +144 -0
  438. package/extensions/opencode/skills/design_expert/SKILL.md +42 -0
  439. package/extensions/opencode/skills/qa_expert/SKILL.md +116 -0
  440. package/package.json +19 -0
@@ -0,0 +1,102 @@
1
+ # Template authoring guide
2
+
3
+ This guide explains how to use the templates in this directory to create new specializations.
4
+
5
+ ---
6
+
7
+ ## The four-layer structure
8
+
9
+ Every specialization follows this layout — no exceptions:
10
+
11
+ ```text
12
+ <spec-name>/
13
+ ├── AGENTS.md # Navigation index — always loaded first
14
+ ├── rules/ # Constraints — always loaded for this spec
15
+ ├── skills/ # Capabilities — loaded on demand
16
+ ├── workflows/ # Orchestrated processes — triggered by /command
17
+ └── prompts/ # Human-copy-paste templates (EN + RU)
18
+ ```
19
+
20
+ Each layer has a purpose:
21
+
22
+ | Layer | Purpose | Load behavior |
23
+ |:---|:---|:---|
24
+ | `AGENTS.md` | Maps the spec's files; sets load order | Always first |
25
+ | `rules/` | Hard constraints the agent cannot override | Always all |
26
+ | `skills/` | Technical patterns loaded for specific tasks | On demand — agent checks "When to load" |
27
+ | `workflows/` | Step-by-step processes triggered by slash commands | On /command trigger |
28
+ | `prompts/` | Copy-paste inputs for humans (bilingual) | Human reference |
29
+
30
+ ---
31
+
32
+ ## Step-by-step: adding a new spec
33
+
34
+ ### 1. Choose the parent area
35
+
36
+ - `areas/software/` — application development domains
37
+ - `areas/devops/` — infrastructure and platform domains
38
+
39
+ If neither fits, propose a new area in a GitHub issue before creating files.
40
+
41
+ ### 2. Create the directory structure
42
+
43
+ ```bash
44
+ mkdir -p areas/<domain>/<spec-name>/{rules,skills,workflows,prompts}
45
+ ```
46
+
47
+ ### 3. Author `AGENTS.md` using `AGENTS.tmpl.md`
48
+
49
+ Fill in:
50
+ - **What this area covers** — one paragraph, specific scope
51
+ - **Inherited constraints** — what the parent area already enforces (don't repeat these in rules)
52
+ - **Spec-specific constraints** — imperatives only; no advice
53
+ - **Spec map** — every file with an inline description
54
+
55
+ ### 4. Author rules using `rule.tmpl.md`
56
+
57
+ Rules are constraints, not guidelines. Each file covers one coherent concern. Ask:
58
+ - What must the agent *never* do?
59
+ - What is *required* before proceeding?
60
+ - What blocks the task (P0) vs flags for review (P1)?
61
+
62
+ ### 5. Author skills using `skill.tmpl.md`
63
+
64
+ Skills are technical capabilities loaded on demand. Each skill:
65
+ - Has a precise "When to load" section
66
+ - Covers 1–3 related techniques with real code examples
67
+ - Ends with "Common mistakes" (3–5 items)
68
+
69
+ ### 6. Author workflows using `workflow.tmpl.md`
70
+
71
+ Workflows are orchestrated processes. Each workflow:
72
+ - Maps to a `/command` trigger
73
+ - Has 3–8 steps with explicit roles, inputs, actions, and done-when criteria
74
+ - Includes at least one failure path
75
+ - Has measurable quality gates in the frontmatter
76
+
77
+ ### 7. Author prompts using `prompt.tmpl.md`
78
+
79
+ Prompts are bilingual (EN + RU) templates for humans to copy-paste. Each prompt:
80
+ - Links to a workflow via frontmatter
81
+ - Has 2–3 examples with realistic values (no placeholders)
82
+ - EN and RU blocks are semantically identical
83
+
84
+ ### 8. Update the parent area's `AGENTS.md`
85
+
86
+ Add the new spec to the spec map. If this is the first spec in a new area, create the area-level `AGENTS.md` using `AGENTS-area.tmpl.md`.
87
+
88
+ ### 9. Test before submitting
89
+
90
+ Run at least one workflow in a real agent session. Document the tool, model, and outcome in your PR.
91
+
92
+ ---
93
+
94
+ ## Quality bar
95
+
96
+ A spec is ready to submit when:
97
+
98
+ - All `AGENT INSTRUCTIONS` comment blocks are deleted.
99
+ - All `{{PLACEHOLDER}}` values are replaced with real content.
100
+ - All code examples are runnable without modification.
101
+ - File lengths are within guidelines: rules ≤ 150, skills 150–350, workflows 60–200 lines.
102
+ - The spec has been tested in a real agent session.
@@ -0,0 +1,29 @@
1
+ # PROMPTS: {{spec-name}}
2
+
3
+ <!--
4
+ AGENT INSTRUCTIONS:
5
+ This file is a quick-reference index of all slash commands for this spec.
6
+ Keep it as a simple table — no prose.
7
+ Update this file every time a new prompt file is added or a command is renamed.
8
+ Delete all AGENT INSTRUCTIONS comments before finalising.
9
+ -->
10
+
11
+ | Prompt | Use when |
12
+ |:---|:---|
13
+ | `/{{command-1}}` | {{ONE_LINE_TRIGGER — start with: a verb describing the situation, e.g. "Creating a new...", "Auditing an existing...", "Debugging a..."}} |
14
+ | `/{{command-2}}` | {{ONE_LINE_TRIGGER}} |
15
+ | `/{{command-3}}` | {{ONE_LINE_TRIGGER}} |
16
+ | `/{{command-4}}` | {{ONE_LINE_TRIGGER}} |
17
+ | `/{{command-5}}` | {{ONE_LINE_TRIGGER}} |
18
+
19
+ <!--
20
+ Example (for a copywriting spec):
21
+
22
+ | Prompt | Use when |
23
+ |:---|:---|
24
+ | `/write-headline` | Generating A/B headline variants for a landing page or ad |
25
+ | `/write-landing-page` | Creating conversion-focused landing page copy end-to-end |
26
+ | `/rewrite-cta` | Optimising a CTA button, link, or inline prompt for higher conversion |
27
+ | `/review-copy` | Auditing existing copy against brand voice and conversion criteria |
28
+ | `/translate-adapt` | Adapting EN copy for a Russian-language market (not literal translation) |
29
+ -->
@@ -0,0 +1,57 @@
1
+ # Template — authoring guide
2
+
3
+ Use these templates when adding a new specialization area, spec, skill, workflow, rule, or prompt to agent-guides.
4
+
5
+ ## Templates
6
+
7
+ | File | Use for |
8
+ |:---|:---|
9
+ | `AGENTS-area.tmpl.md` | Root `AGENTS.md` for a new domain area (e.g., `areas/design/`) |
10
+ | `AGENTS.tmpl.md` | Spec-level `AGENTS.md` (e.g., `areas/design/copywriting/AGENTS.md`) |
11
+ | `skill.tmpl.md` | A new `skills/{{name}}/SKILL.md` |
12
+ | `workflow.tmpl.md` | A new `workflows/{{name}}.md` |
13
+ | `rule.tmpl.md` | A new `rules/{{name}}.md` |
14
+ | `prompt.tmpl.md` | A new `prompts/{{name}}.md` |
15
+ | `PROMPTS.tmpl.md` | The `PROMPTS.md` index for a spec |
16
+
17
+ ## Authoring checklist
18
+
19
+ Before opening a PR with new content:
20
+
21
+ - [ ] All `{{PLACEHOLDER}}` values replaced with real content.
22
+ - [ ] All `AGENT INSTRUCTIONS` comment blocks deleted.
23
+ - [ ] Frontmatter fields fully populated (no empty values).
24
+ - [ ] Skill "When to load" section is specific and actionable.
25
+ - [ ] Rule constraints use imperative language: "must", "never", "required", "forbidden".
26
+ - [ ] Workflow steps each have: `@role`, Input, Actions, and a checkable "Done when" criterion.
27
+ - [ ] Prompt examples contain no placeholders; both EN and RU blocks present.
28
+ - [ ] File stays within line-count targets (skill: 150–350; workflow: 60–200; rule: < 150).
29
+ - [ ] Spec map in `AGENTS.md` matches the actual files on disk.
30
+
31
+ ## File naming conventions
32
+
33
+ - Skill directories: `kebab-case/` (e.g., `api-design/`)
34
+ - Workflow files: `kebab-case.md` (e.g., `create-endpoint.md`)
35
+ - Rule files: `kebab-case.md` (e.g., `migration-safety.md`)
36
+ - Prompt files: match workflow name (e.g., `create-endpoint.md`)
37
+
38
+ ## Line count targets
39
+
40
+ | File type | Target |
41
+ |:---|:---|
42
+ | Area `AGENTS.md` | ≤ 100 lines |
43
+ | Spec `AGENTS.md` | ≤ 80 lines |
44
+ | `SKILL.md` | 150–350 lines |
45
+ | Workflow | 60–200 lines |
46
+ | Rule | ≤ 150 lines |
47
+ | Prompt | no hard limit, but examples must be self-contained |
48
+
49
+ ## Guidance on quality gates
50
+
51
+ Quality gates in workflows must be **objectively checkable** without human judgment:
52
+
53
+ ❌ Bad: "Output looks professional."
54
+ ✅ Good: "All required frontmatter fields are populated; file is under 350 lines; no `{{PLACEHOLDER}}` strings remain."
55
+
56
+ ❌ Bad: "Tests pass."
57
+ ✅ Good: "All unit tests in `src/__tests__/` pass with exit code 0 when run with `npm test`."
@@ -0,0 +1,51 @@
1
+ # {{SPEC_NAME}}
2
+
3
+ <!--
4
+ AGENT INSTRUCTIONS:
5
+ This README is for HUMANS, not agents. Write it clearly and concisely.
6
+ Agents use AGENTS.md for navigation. Humans use README.md to understand what this spec covers.
7
+ Keep it under 60 lines.
8
+ Delete all AGENT INSTRUCTIONS comments before finalising.
9
+ -->
10
+
11
+ > {{ONE_SENTENCE_WHAT_THIS_SPEC_COVERS_AND_FOR_WHOM}}
12
+
13
+ ## Who this is for
14
+
15
+ {{JOB_TITLE_OR_ROLE_THAT_OWNS_THIS_SPEC}} working on {{DOMAIN_OF_WORK}}.
16
+
17
+ **Typical tasks:** {{COMMA_SEPARATED_LIST_OF_3_5_TYPICAL_TASKS}}
18
+
19
+ ## What's included
20
+
21
+ | Type | Files | Covers |
22
+ |:---|:---|:---|
23
+ | Rules | {{N}} | {{WHAT_THE_RULES_GOVERN}} |
24
+ | Skills | {{N}} | {{WHAT_TECHNIQUES_AND_TOOLS}} |
25
+ | Workflows | {{N}} | {{WHAT_PROCEDURES}} |
26
+ | Prompts | {{N}} | {{WHAT_SLASH_COMMANDS}} |
27
+
28
+ ## Slash commands
29
+
30
+ | Command | Use when |
31
+ |:---|:---|
32
+ | `/{{command-1}}` | {{ONE_LINE_TRIGGER}} |
33
+ | `/{{command-2}}` | {{ONE_LINE_TRIGGER}} |
34
+ | `/{{command-3}}` | {{ONE_LINE_TRIGGER}} |
35
+
36
+ *Full prompt reference: see [PROMPTS.md](./PROMPTS.md)*
37
+
38
+ ## Out of scope
39
+
40
+ <!--
41
+ Be explicit about what this spec does NOT cover, especially where adjacent specs exist.
42
+ This prevents overlap and helps users find the right spec.
43
+ -->
44
+
45
+ - {{OUT_OF_SCOPE_ITEM_1}} → handled by `{{other-spec}}/`
46
+ - {{OUT_OF_SCOPE_ITEM_2}} → handled by `{{other-spec}}/`
47
+
48
+ ## Related specs
49
+
50
+ - [`../{{adjacent-spec-1}}/`](../{{adjacent-spec-1}}/) — {{one_line_relationship}}
51
+ - [`../{{adjacent-spec-2}}/`](../{{adjacent-spec-2}}/) — {{one_line_relationship}}
@@ -0,0 +1,101 @@
1
+ ---
2
+ workflow: {{workflow-name}}
3
+ ---
4
+
5
+ # Prompt: `/{{command-name}}`
6
+
7
+ <!--
8
+ AGENT INSTRUCTIONS:
9
+ 1. "workflow-name" must match the workflow file stem exactly (if a workflow exists).
10
+ 2. "Use when:" is ONE sentence describing the exact scenario.
11
+ 3. Write 2–3 examples minimum. Example 1 = standard case. Example 2 = complex/edge case.
12
+ 4. Every example MUST have both EN and RU blocks, semantically identical.
13
+ 5. Examples must contain NO placeholders like [YOUR_PRODUCT] or {{INSERT_URL}}.
14
+ 6. Use realistic values: real tool names, realistic metrics, realistic company names.
15
+ 7. EN block should be ≥ 200 words total across all fields to give sufficient context.
16
+ 8. Delete all AGENT INSTRUCTIONS comments before finalising.
17
+ -->
18
+
19
+ Use when: {{SPECIFIC_SCENARIO — one sentence, e.g. "setting up CI/CD for a new monorepo that uses pnpm workspaces and deploys to AWS ECS."}}
20
+
21
+ ---
22
+
23
+ ## Example 1 — {{STANDARD_CASE_NAME}}
24
+
25
+ **EN:**
26
+ ```
27
+ /{{command-name}}
28
+
29
+ {{FIELD_1_LABEL}}: {{REALISTIC_VALUE}}
30
+ {{FIELD_2_LABEL}}: {{REALISTIC_VALUE}}
31
+ {{FIELD_3_LABEL}}: {{REALISTIC_VALUE}}
32
+
33
+ {{ADDITIONAL_CONTEXT — constraints, existing setup, non-goals}}
34
+
35
+ {{OUTPUT_SPECIFICATION — what exactly should be delivered, in what format}}
36
+ ```
37
+
38
+ **RU:**
39
+ ```
40
+ /{{command-name}}
41
+
42
+ {{FIELD_1_LABEL_RU}}: {{REALISTIC_VALUE_RU}}
43
+ {{FIELD_2_LABEL_RU}}: {{REALISTIC_VALUE_RU}}
44
+ {{FIELD_3_LABEL_RU}}: {{REALISTIC_VALUE_RU}}
45
+
46
+ {{ADDITIONAL_CONTEXT_RU}}
47
+
48
+ {{OUTPUT_SPECIFICATION_RU}}
49
+ ```
50
+
51
+ ---
52
+
53
+ ## Example 2 — {{COMPLEX_OR_EDGE_CASE_NAME}}
54
+
55
+ **EN:**
56
+ ```
57
+ /{{command-name}}
58
+
59
+ {{FIELD_1_LABEL}}: {{DIFFERENT_REALISTIC_VALUE}}
60
+ {{FIELD_2_LABEL}}: {{DIFFERENT_REALISTIC_VALUE}}
61
+
62
+ {{MORE_SPECIFIC_CONSTRAINTS_OR_CONTEXT}}
63
+
64
+ {{OUTPUT_SPECIFICATION}}
65
+ ```
66
+
67
+ **RU:**
68
+ ```
69
+ /{{command-name}}
70
+
71
+ {{FIELD_1_LABEL_RU}}: {{DIFFERENT_REALISTIC_VALUE_RU}}
72
+ {{FIELD_2_LABEL_RU}}: {{DIFFERENT_REALISTIC_VALUE_RU}}
73
+
74
+ {{MORE_SPECIFIC_CONSTRAINTS_RU}}
75
+
76
+ {{OUTPUT_SPECIFICATION_RU}}
77
+ ```
78
+
79
+ ---
80
+
81
+ ## Example 3 — {{QUICK_OR_CONTRASTING_CASE}} *(optional)*
82
+
83
+ <!--
84
+ Use only when there is a meaningfully different usage mode:
85
+ a minimal/quick version, a contrasting domain context, or a specific tool variant.
86
+ Remove this section entirely if 2 examples are sufficient.
87
+ -->
88
+
89
+ **EN:**
90
+ ```
91
+ /{{command-name}}
92
+
93
+ {{CONTENT}}
94
+ ```
95
+
96
+ **RU:**
97
+ ```
98
+ /{{command-name}}
99
+
100
+ {{CONTENT_RU}}
101
+ ```
@@ -0,0 +1,71 @@
1
+ # Rule: {{CONSTRAINT_DOMAIN_NAME}}
2
+
3
+ <!--
4
+ AGENT INSTRUCTIONS:
5
+ 1. Replace {{CONSTRAINT_DOMAIN_NAME}} with a noun phrase: "Brand Voice Standards", "Migration Safety Requirements".
6
+ 2. Set Priority to P0 or P1 (see definitions below).
7
+ 3. Write every constraint as imperative: "must", "never", "required", "forbidden".
8
+ 4. Never use: "consider", "try", "ideally", "should" — these are advice, not rules.
9
+ 5. Include at least 1 compliant and 1 non-compliant example per section.
10
+ 6. Target: under 150 lines.
11
+ 7. Delete all AGENT INSTRUCTIONS comments before finalising.
12
+ -->
13
+
14
+ **Priority**: {{P0_OR_P1}} — {{ONE_SENTENCE: what non-compliance causes}}
15
+
16
+ <!--
17
+ P0 = Non-compliance blocks the task. Agent must refuse to proceed until resolved.
18
+ Use for: legal risk, security violation, data loss, brand damage requiring immediate fix.
19
+ P1 = Non-compliance triggers a review flag. Agent continues but marks the item for human review.
20
+ Use for: quality risk, process deviation, inconsistency that humans should assess.
21
+ -->
22
+
23
+ ---
24
+
25
+ ## {{SECTION_1 — group related constraints under one coherent concern}}
26
+
27
+ <!--
28
+ Example section names: "Tone and Voice", "Legal Disclaimers", "Secret Handling", "Migration Safety"
29
+ -->
30
+
31
+ 1. **{{CONSTRAINT_NAME}}**
32
+ - {{SPECIFIC_REQUIREMENT — imperative statement}}
33
+ - {{SUB_REQUIREMENT_OR_EXCEPTION_IF_ANY}}
34
+
35
+ 2. **{{CONSTRAINT_NAME}}**
36
+ - {{REQUIREMENT}}
37
+ - Exception: {{EXCEPTION_CONDITION_IF_ANY}}
38
+
39
+ ## {{SECTION_2}}
40
+
41
+ 3. **{{CONSTRAINT_NAME}}**
42
+ - {{REQUIREMENT}}
43
+
44
+ 4. **{{CONSTRAINT_NAME}}**
45
+ - {{REQUIREMENT}}
46
+
47
+ ---
48
+
49
+ ## Compliant examples
50
+
51
+ ✅ {{REAL_EXAMPLE_OF_CORRECT_OUTPUT_OR_BEHAVIOR}}
52
+
53
+ ✅ {{ANOTHER_COMPLIANT_EXAMPLE}}
54
+
55
+ ## Non-compliant examples
56
+
57
+ ❌ {{REAL_EXAMPLE_OF_VIOLATION}} — {{BRIEF_REASON}}
58
+
59
+ ❌ {{ANOTHER_VIOLATION}} — {{REASON}}
60
+
61
+ ---
62
+
63
+ <details>
64
+ <summary>Rationale</summary>
65
+
66
+ {{WHY_THIS_RULE_EXISTS — 2 to 4 sentences}}
67
+
68
+ Regulatory / legal basis (if applicable): {{REGULATION_OR_POLICY_REFERENCE}}
69
+
70
+ Last reviewed: {{DATE_OR_LEAVE_BLANK}}
71
+ </details>
@@ -0,0 +1,108 @@
1
+ ---
2
+ name: {{kebab-case-skill-name}}
3
+ type: skill
4
+ description: {{ONE_SENTENCE_STARTING_WITH_VERB — e.g. "Design and execute conversion-focused landing page copy."}}
5
+ related-rules:
6
+ - {{rule-filename-1.md}}
7
+ - {{rule-filename-2.md}}
8
+ allowed-tools: {{COMMA_SEPARATED — Read, Write, Edit, Bash, WebSearch}}
9
+ ---
10
+
11
+ <!--
12
+ AGENT INSTRUCTIONS:
13
+ 1. Fill all frontmatter fields before writing the body.
14
+ 2. "name" must match the directory name exactly.
15
+ 3. "description" starts with a verb; states what the agent CAN DO after loading this skill.
16
+ 4. "related-rules" lists only the rule files that constrain how this skill is applied.
17
+ 5. "allowed-tools" lists only tools actually needed — don't include all five by default.
18
+ 6. Target: 150–350 lines total. Shorter = stub. Longer = split into two skills.
19
+ 7. All examples must be REAL and runnable — no placeholders like [YOUR_VALUE].
20
+ 8. Every skill needs at least 2 substantive sections and a "Common mistakes" section.
21
+ 9. Delete all AGENT INSTRUCTIONS comments before finalising.
22
+ -->
23
+
24
+ # Skill: {{DISPLAY_NAME}}
25
+
26
+ > **Expertise:** {{COMMA_SEPARATED_LIST_OF_SPECIFIC_TECHNIQUES_TOOLS_OR_CONCEPTS}}
27
+
28
+ ## When to load
29
+
30
+ <!--
31
+ Critical section — the agent reads this to decide whether to load the skill.
32
+ Write precise triggers. Vague triggers waste context.
33
+
34
+ Bad: "When working in this spec."
35
+ Good: "When writing a new dbt model that joins more than two source tables and requires incremental materialization."
36
+ -->
37
+
38
+ Load this skill when:
39
+ - {{SPECIFIC_TRIGGER_1 — describe the exact task condition}}
40
+ - {{SPECIFIC_TRIGGER_2}}
41
+ - {{SPECIFIC_TRIGGER_3}}
42
+
43
+ Do NOT load for: {{WHAT_LOOKS_SIMILAR_BUT_DOES_NOT_NEED_THIS_SKILL}}
44
+
45
+ ---
46
+
47
+ ## {{MAIN_CONCEPT_OR_FRAMEWORK_SECTION}}
48
+
49
+ <!--
50
+ Explain the core technique, framework, or pattern set this skill covers.
51
+ For technical domains: use runnable code or commands.
52
+ For process domains: use named methodologies with real document snippets.
53
+ For creative domains: use named frameworks (AIDA, PAS) with real examples.
54
+ -->
55
+
56
+ {{EXPLANATION_IN_2_TO_4_SENTENCES}}
57
+
58
+ ### {{PATTERN_OR_TECHNIQUE_1}}
59
+
60
+ {{DESCRIPTION}}
61
+
62
+ ```{{language}}
63
+ {{REAL_WORKING_EXAMPLE — not a placeholder}}
64
+ ```
65
+
66
+ ### {{PATTERN_OR_TECHNIQUE_2}}
67
+
68
+ {{DESCRIPTION}}
69
+
70
+ ```{{language}}
71
+ {{REAL_WORKING_EXAMPLE}}
72
+ ```
73
+
74
+ ### {{PATTERN_OR_TECHNIQUE_3}}
75
+
76
+ {{DESCRIPTION}}
77
+
78
+ ---
79
+
80
+ ## {{SECOND_TECHNIQUE_OR_TOOL_SECTION}}
81
+
82
+ <!--
83
+ Add a second section for a related technique, tool operations, quality criteria, or decision framework.
84
+ Every skill must have at least 2 substantive sections.
85
+ -->
86
+
87
+ {{CONTENT}}
88
+
89
+ ---
90
+
91
+ ## {{OPTIONAL_THIRD_SECTION — e.g. "Quality Checklist", "Decision Framework", "Common Scenarios"}}
92
+
93
+ {{CONTENT}}
94
+
95
+ ---
96
+
97
+ ## Common mistakes
98
+
99
+ <!--
100
+ 3–5 items. State the mistake, then the correction. Keep each under 2 sentences.
101
+ Write from experience — what do agents (or humans) actually get wrong here?
102
+ -->
103
+
104
+ 1. **{{MISTAKE_1}}** — {{CORRECTION}}
105
+ 2. **{{MISTAKE_2}}** — {{CORRECTION}}
106
+ 3. **{{MISTAKE_3}}** — {{CORRECTION}}
107
+ 4. **{{MISTAKE_4_OPTIONAL}}** — {{CORRECTION}}
108
+ 5. **{{MISTAKE_5_OPTIONAL}}** — {{CORRECTION}}
@@ -0,0 +1,104 @@
1
+ ---
2
+ name: {{kebab-case-workflow-name}}
3
+ type: workflow
4
+ trigger: /{{workflow-name}}
5
+ description: {{ONE_SENTENCE — what completing this workflow produces}}
6
+ inputs:
7
+ - {{input_1 — name and description of required input}}
8
+ - {{input_2}}
9
+ outputs:
10
+ - {{output_1 — concrete deliverable, e.g. "signed-off implementation_plan.md"}}
11
+ - {{output_2}}
12
+ roles:
13
+ - {{role-1 — function name, e.g. "copywriter", "campaign-manager"}}
14
+ - {{role-2}}
15
+ execution:
16
+ initiator: {{role — must be one of: product-owner | pm | team-lead | developer | qa | designer}}
17
+ related-rules:
18
+ - {{rule-filename.md}}
19
+ uses-skills:
20
+ - {{skill-directory-name}}
21
+ quality-gates:
22
+ - {{MEASURABLE_CRITERION_1 — checkable without human judgment}}
23
+ - {{MEASURABLE_CRITERION_2}}
24
+ ---
25
+
26
+ <!--
27
+ AGENT INSTRUCTIONS:
28
+ 1. Fill all frontmatter fields. Missing fields cause the workflow to be skipped.
29
+ 2. "trigger" must start with / and match the prompt filename exactly.
30
+ 3. "roles" are who performs steps — use function names, not seniority titles.
31
+ 4. "execution.initiator" must be one of the six standard roles.
32
+ 5. "quality-gates" must be objectively checkable. "Looks good" is NOT a gate.
33
+ Good gate: "All copy variants pass brand-voice rule 2 and score ≥ 70 on Flesch-Kincaid."
34
+ 6. Every step MUST have: @role, Input, Actions (specific), Done when (checkable criterion).
35
+ 7. Use imperative voice: "Create", "Check", "Verify", "Ask" — not "You should" or "Consider".
36
+ 8. Include a failure path for at least one step.
37
+ 9. Target: 60–200 lines total. Over 200 lines = split into two workflows.
38
+ 10. Delete all AGENT INSTRUCTIONS comments before finalising.
39
+ -->
40
+
41
+ ## Steps
42
+
43
+ ### 1. {{STEP_NAME}} — `@{{role-1}}`
44
+
45
+ - **Input:** {{what arrives at this step — be specific}}
46
+ - **Actions:**
47
+
48
+ {{SPECIFIC_ACTION_1 — include the actual command, query, template, or decision the agent should use}}
49
+
50
+ {{SPECIFIC_ACTION_2}}
51
+
52
+ > **If {{FAILURE_CONDITION}}:** {{EXPLICIT_FAILURE_PATH — what to do instead, not just "handle the error"}}
53
+
54
+ - **Done when:** {{CHECKABLE_CRITERION — e.g. "brief confirmed in writing", "all required fields in the template are non-empty"}}
55
+
56
+ ---
57
+
58
+ ### 2. {{STEP_NAME}} — `@{{role-1}}`
59
+
60
+ - **Input:** output of step 1
61
+ - **Actions:**
62
+
63
+ {{ACTIONS}}
64
+
65
+ - **Done when:** {{CRITERION}}
66
+
67
+ ---
68
+
69
+ ### 3. {{STEP_NAME}} — `@{{role-2}}`
70
+
71
+ <!--
72
+ Steps involving a different role must state the handoff explicitly.
73
+ Example: "Receive draft from @developer. Review against architecture.md constraints."
74
+ -->
75
+
76
+ - **Input:** output of step 2
77
+ - **Actions:**
78
+
79
+ {{ACTIONS}}
80
+
81
+ - **Done when:** {{CRITERION}}
82
+
83
+ ---
84
+
85
+ ### 4. {{STEP_NAME}} — `@{{role-1}}`
86
+
87
+ <!--
88
+ Add or remove steps as needed. Most workflows are 3–7 steps.
89
+ Fewer than 3 steps = write a skill instead.
90
+ More than 8 steps = split into two workflows.
91
+ -->
92
+
93
+ - **Input:** output of step 3
94
+ - **Actions:**
95
+
96
+ {{ACTIONS}}
97
+
98
+ - **Done when:** {{CRITERION}}
99
+
100
+ ---
101
+
102
+ ## Exit
103
+
104
+ {{ONE_SENTENCE: when the workflow is complete and what was produced.}}
package/bin/agentic.js ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { spawnSync } = require('node:child_process');
4
+ const path = require('node:path');
5
+
6
+ const scriptPath = path.resolve(__dirname, '..', 'agentic');
7
+ const args = process.argv.slice(2);
8
+
9
+ const result = spawnSync('bash', [scriptPath, ...args], {
10
+ stdio: 'inherit',
11
+ env: process.env,
12
+ });
13
+
14
+ if (result.error) {
15
+ if (result.error.code === 'ENOENT') {
16
+ console.error('[agentic][error] bash is required to run the agentic CLI from npx.');
17
+ process.exit(127);
18
+ }
19
+
20
+ console.error(`[agentic][error] failed to launch CLI: ${result.error.message}`);
21
+ process.exit(1);
22
+ }
23
+
24
+ process.exit(result.status ?? 1);
@@ -0,0 +1,10 @@
1
+ # AI Instructions
2
+
3
+ Before doing any work in this repository, read the file **AGENTS.md**.
4
+
5
+ AGENTS.md defines:
6
+ - agent roles
7
+ - development workflow
8
+ - rules for modifying the repository
9
+
10
+ Always follow the instructions from AGENTS.md.
@@ -0,0 +1,10 @@
1
+ # AI Instructions
2
+
3
+ Before doing any work in this repository, read the file **AGENTS.md**.
4
+
5
+ AGENTS.md defines:
6
+ - agent roles
7
+ - development workflow
8
+ - rules for modifying the repository
9
+
10
+ Always follow the instructions from AGENTS.md.