agileflow 4.0.0-alpha.2 → 4.0.0-alpha.21

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 (372) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/content/plugins/accessibility/plugin.yaml +14 -0
  3. package/content/plugins/accessibility/skills/agileflow-accessibility/SKILL.md +392 -0
  4. package/content/plugins/accessibility/skills/agileflow-accessibility/references/aria-patterns.md +528 -0
  5. package/content/plugins/accessibility/skills/agileflow-accessibility/references/testing-checklist.md +457 -0
  6. package/content/plugins/accessibility/skills/agileflow-accessibility/references/wcag-guide.md +683 -0
  7. package/content/plugins/accessibility/skills/agileflow-accessibility/workflows/audit-page.md +310 -0
  8. package/content/plugins/accessibility/skills/agileflow-accessibility/workflows/implement-accessible-component.md +479 -0
  9. package/content/plugins/ads/agents/ads-audit-budget.md +185 -0
  10. package/content/plugins/ads/agents/ads-audit-compliance.md +171 -0
  11. package/content/plugins/ads/agents/ads-audit-creative.md +168 -0
  12. package/content/plugins/ads/agents/ads-audit-google.md +227 -0
  13. package/content/plugins/ads/agents/ads-audit-meta.md +184 -0
  14. package/content/plugins/ads/agents/ads-audit-tracking.md +205 -0
  15. package/content/plugins/ads/agents/ads-consensus.md +410 -0
  16. package/content/plugins/ads/agents/ads-generate.md +152 -0
  17. package/content/plugins/ads/agents/ads-performance-tracker.md +212 -0
  18. package/content/plugins/ads/plugin.yaml +23 -4
  19. package/content/plugins/ads/skills/agileflow-ads/SKILL.md +218 -0
  20. package/content/plugins/ads/skills/agileflow-ads/references/ad-copy-formula-guide.md +131 -0
  21. package/content/plugins/ads/skills/agileflow-ads/references/audience-targeting-guide.md +137 -0
  22. package/content/plugins/ads/skills/agileflow-ads/references/bid-strategy-guide.md +115 -0
  23. package/content/plugins/ads/skills/agileflow-ads/references/platform-benchmarks.md +100 -0
  24. package/content/plugins/ads/skills/agileflow-ads/workflows/audit.md +118 -0
  25. package/content/plugins/ads/skills/agileflow-ads/workflows/generate.md +84 -0
  26. package/content/plugins/audit/agents/a11y-analyzer-aria.md +173 -0
  27. package/content/plugins/audit/agents/a11y-analyzer-forms.md +173 -0
  28. package/content/plugins/audit/agents/a11y-analyzer-keyboard.md +183 -0
  29. package/content/plugins/audit/agents/a11y-analyzer-semantic.md +169 -0
  30. package/content/plugins/audit/agents/a11y-analyzer-visual.md +172 -0
  31. package/content/plugins/audit/agents/a11y-consensus.md +249 -0
  32. package/content/plugins/audit/agents/accessibility.md +558 -0
  33. package/content/plugins/audit/agents/api-quality-analyzer-conventions.md +156 -0
  34. package/content/plugins/audit/agents/api-quality-analyzer-docs.md +184 -0
  35. package/content/plugins/audit/agents/api-quality-analyzer-errors.md +191 -0
  36. package/content/plugins/audit/agents/api-quality-analyzer-pagination.md +179 -0
  37. package/content/plugins/audit/agents/api-quality-analyzer-versioning.md +150 -0
  38. package/content/plugins/audit/agents/api-quality-consensus.md +217 -0
  39. package/content/plugins/audit/agents/api-validator.md +191 -0
  40. package/content/plugins/audit/agents/arch-analyzer-circular.md +156 -0
  41. package/content/plugins/audit/agents/arch-analyzer-complexity.md +193 -0
  42. package/content/plugins/audit/agents/arch-analyzer-coupling.md +152 -0
  43. package/content/plugins/audit/agents/arch-analyzer-layering.md +160 -0
  44. package/content/plugins/audit/agents/arch-analyzer-patterns.md +210 -0
  45. package/content/plugins/audit/agents/arch-consensus.md +228 -0
  46. package/content/plugins/audit/agents/browser-qa.md +342 -0
  47. package/content/plugins/audit/agents/code-reviewer.md +298 -0
  48. package/content/plugins/audit/agents/completeness-analyzer-api.md +199 -0
  49. package/content/plugins/audit/agents/completeness-analyzer-conditional.md +211 -0
  50. package/content/plugins/audit/agents/completeness-analyzer-handlers.md +166 -0
  51. package/content/plugins/audit/agents/completeness-analyzer-imports.md +165 -0
  52. package/content/plugins/audit/agents/completeness-analyzer-routes.md +190 -0
  53. package/content/plugins/audit/agents/completeness-analyzer-state.md +196 -0
  54. package/content/plugins/audit/agents/completeness-analyzer-stubs.md +206 -0
  55. package/content/plugins/audit/agents/completeness-consensus.md +295 -0
  56. package/content/plugins/audit/agents/error-analyzer.md +213 -0
  57. package/content/plugins/audit/agents/flow-analyzer-authorization.md +182 -0
  58. package/content/plugins/audit/agents/flow-analyzer-discovery.md +174 -0
  59. package/content/plugins/audit/agents/flow-analyzer-errors.md +186 -0
  60. package/content/plugins/audit/agents/flow-analyzer-feedback.md +185 -0
  61. package/content/plugins/audit/agents/flow-analyzer-navigation.md +177 -0
  62. package/content/plugins/audit/agents/flow-analyzer-persistence.md +193 -0
  63. package/content/plugins/audit/agents/flow-analyzer-wiring.md +169 -0
  64. package/content/plugins/audit/agents/flow-consensus.md +237 -0
  65. package/content/plugins/audit/agents/legal-analyzer-a11y.md +114 -0
  66. package/content/plugins/audit/agents/legal-analyzer-ai.md +121 -0
  67. package/content/plugins/audit/agents/legal-analyzer-consumer.md +114 -0
  68. package/content/plugins/audit/agents/legal-analyzer-content.md +117 -0
  69. package/content/plugins/audit/agents/legal-analyzer-international.md +119 -0
  70. package/content/plugins/audit/agents/legal-analyzer-licensing.md +119 -0
  71. package/content/plugins/audit/agents/legal-analyzer-privacy.md +112 -0
  72. package/content/plugins/audit/agents/legal-analyzer-security.md +116 -0
  73. package/content/plugins/audit/agents/legal-analyzer-terms.md +115 -0
  74. package/content/plugins/audit/agents/legal-consensus.md +250 -0
  75. package/content/plugins/audit/agents/logic-analyzer-edge.md +179 -0
  76. package/content/plugins/audit/agents/logic-analyzer-flow.md +264 -0
  77. package/content/plugins/audit/agents/logic-analyzer-invariant.md +215 -0
  78. package/content/plugins/audit/agents/logic-analyzer-race.md +280 -0
  79. package/content/plugins/audit/agents/logic-analyzer-type.md +227 -0
  80. package/content/plugins/audit/agents/logic-consensus.md +259 -0
  81. package/content/plugins/audit/agents/perf-analyzer-assets.md +182 -0
  82. package/content/plugins/audit/agents/perf-analyzer-bundle.md +173 -0
  83. package/content/plugins/audit/agents/perf-analyzer-caching.md +170 -0
  84. package/content/plugins/audit/agents/perf-analyzer-compute.md +173 -0
  85. package/content/plugins/audit/agents/perf-analyzer-memory.md +193 -0
  86. package/content/plugins/audit/agents/perf-analyzer-network.md +165 -0
  87. package/content/plugins/audit/agents/perf-analyzer-queries.md +162 -0
  88. package/content/plugins/audit/agents/perf-analyzer-rendering.md +168 -0
  89. package/content/plugins/audit/agents/perf-consensus.md +287 -0
  90. package/content/plugins/audit/agents/qa.md +820 -0
  91. package/content/plugins/audit/agents/quality-analyzer-comments.md +159 -0
  92. package/content/plugins/audit/agents/quality-analyzer-duplication.md +184 -0
  93. package/content/plugins/audit/agents/quality-analyzer-naming.md +160 -0
  94. package/content/plugins/audit/agents/quality-consensus.md +241 -0
  95. package/content/plugins/audit/agents/schema-validator.md +473 -0
  96. package/content/plugins/audit/agents/security-analyzer-api.md +210 -0
  97. package/content/plugins/audit/agents/security-analyzer-auth.md +169 -0
  98. package/content/plugins/audit/agents/security-analyzer-authz.md +180 -0
  99. package/content/plugins/audit/agents/security-analyzer-deps.md +153 -0
  100. package/content/plugins/audit/agents/security-analyzer-infra.md +184 -0
  101. package/content/plugins/audit/agents/security-analyzer-injection.md +155 -0
  102. package/content/plugins/audit/agents/security-analyzer-input.md +201 -0
  103. package/content/plugins/audit/agents/security-analyzer-secrets.md +183 -0
  104. package/content/plugins/audit/agents/security-consensus.md +283 -0
  105. package/content/plugins/audit/agents/test-analyzer-assertions.md +188 -0
  106. package/content/plugins/audit/agents/test-analyzer-coverage.md +189 -0
  107. package/content/plugins/audit/agents/test-analyzer-fragility.md +193 -0
  108. package/content/plugins/audit/agents/test-analyzer-integration.md +161 -0
  109. package/content/plugins/audit/agents/test-analyzer-maintenance.md +180 -0
  110. package/content/plugins/audit/agents/test-analyzer-mocking.md +188 -0
  111. package/content/plugins/audit/agents/test-analyzer-patterns.md +196 -0
  112. package/content/plugins/audit/agents/test-analyzer-structure.md +184 -0
  113. package/content/plugins/audit/agents/test-consensus.md +301 -0
  114. package/content/plugins/audit/agents/testing.md +561 -0
  115. package/content/plugins/audit/agents/ui-validator.md +344 -0
  116. package/content/plugins/audit/plugin.yaml +186 -5
  117. package/content/plugins/audit/skills/agileflow-audit/SKILL.md +113 -0
  118. package/content/plugins/audit/skills/agileflow-audit/references/audit-depth-guide.md +151 -0
  119. package/content/plugins/audit/skills/agileflow-audit/references/dependency-risk-guide.md +139 -0
  120. package/content/plugins/audit/skills/agileflow-audit/references/owasp-top10.md +120 -0
  121. package/content/plugins/audit/skills/agileflow-audit/references/performance-budget-guide.md +143 -0
  122. package/content/plugins/audit/skills/agileflow-audit/references/wcag-criteria.md +117 -0
  123. package/content/plugins/audit/skills/agileflow-audit/workflows/run-audit.md +52 -0
  124. package/content/plugins/audit/skills/agileflow-audit/workflows/tdd.md +66 -0
  125. package/content/plugins/core/agents/adr-writer.md +521 -0
  126. package/content/plugins/core/agents/epic-planner.md +520 -0
  127. package/content/plugins/core/agents/mentor.md +709 -0
  128. package/content/plugins/core/agents/orchestrator.md +776 -0
  129. package/content/plugins/core/agents/team-coordinator.md +334 -0
  130. package/content/plugins/core/agents/team-lead.md +181 -0
  131. package/content/plugins/core/agents/workspace-orchestrator.md +146 -0
  132. package/content/plugins/core/hooks/context-loader.js +31 -4
  133. package/content/plugins/core/hooks/damage-control-bash.js +10 -2
  134. package/content/plugins/core/hooks/damage-control-edit.js +4 -1
  135. package/content/plugins/core/hooks/damage-control-patterns.yaml +1 -1
  136. package/content/plugins/core/hooks/damage-control-write.js +4 -1
  137. package/content/plugins/core/hooks/{pre-compact-state.js → post-compact-state.js} +25 -8
  138. package/content/plugins/core/hooks/preferences-injector.js +352 -0
  139. package/content/plugins/core/plugin.yaml +24 -28
  140. package/content/plugins/core/skills/agileflow-adr/SKILL.md +34 -8
  141. package/content/plugins/core/skills/agileflow-adr/references/madr-format-guide.md +86 -0
  142. package/content/plugins/core/skills/agileflow-adr/workflows/write-adr.md +57 -0
  143. package/content/plugins/core/skills/agileflow-babysit-mentor/SKILL.md +94 -27
  144. package/content/plugins/core/skills/agileflow-babysit-mentor/references/mentor-decision-guide.md +81 -0
  145. package/content/plugins/core/skills/agileflow-babysit-mentor/workflows/mentor-session.md +79 -0
  146. package/content/plugins/core/skills/agileflow-epic-planner/SKILL.md +37 -7
  147. package/content/plugins/core/skills/agileflow-epic-planner/references/epic-sizing-guide.md +81 -0
  148. package/content/plugins/core/skills/agileflow-epic-planner/workflows/plan-epic.md +55 -0
  149. package/content/plugins/core/skills/agileflow-status-updater/SKILL.md +36 -20
  150. package/content/plugins/core/skills/agileflow-status-updater/references/status-transitions.md +89 -0
  151. package/content/plugins/core/skills/agileflow-status-updater/workflows/update-status.md +56 -0
  152. package/content/plugins/core/skills/agileflow-story-writer/SKILL.md +39 -114
  153. package/content/plugins/core/skills/agileflow-story-writer/references/estimation-reference.md +36 -0
  154. package/content/plugins/core/skills/agileflow-story-writer/references/story-template.md +92 -0
  155. package/content/plugins/core/skills/agileflow-story-writer/workflows/write-story.md +138 -0
  156. package/content/plugins/council/agents/council-advocate.md +223 -0
  157. package/content/plugins/council/agents/council-analyst.md +278 -0
  158. package/content/plugins/council/agents/council-compounder.md +204 -0
  159. package/content/plugins/council/agents/council-contrarian.md +217 -0
  160. package/content/plugins/council/agents/council-moonshot.md +217 -0
  161. package/content/plugins/council/agents/council-optimist.md +185 -0
  162. package/content/plugins/council/agents/council-revenue.md +200 -0
  163. package/content/plugins/council/agents/council-technical.md +218 -0
  164. package/content/plugins/council/agents/multi-expert.md +334 -0
  165. package/content/plugins/council/plugin.yaml +23 -4
  166. package/content/plugins/council/skills/agileflow-council/SKILL.md +102 -0
  167. package/content/plugins/council/skills/agileflow-council/references/decision-log-template.md +109 -0
  168. package/content/plugins/council/skills/agileflow-council/references/perspective-guide.md +104 -0
  169. package/content/plugins/council/skills/agileflow-council/references/when-to-convene-guide.md +112 -0
  170. package/content/plugins/council/skills/agileflow-council/workflows/convene.md +73 -0
  171. package/content/plugins/council/skills/agileflow-council/workflows/multi-expert.md +75 -0
  172. package/content/plugins/database/plugin.yaml +14 -0
  173. package/content/plugins/database/skills/agileflow-database/SKILL.md +284 -0
  174. package/content/plugins/database/skills/agileflow-database/references/indexing-guide.md +313 -0
  175. package/content/plugins/database/skills/agileflow-database/references/migration-guide.md +328 -0
  176. package/content/plugins/database/skills/agileflow-database/references/schema-design-guide.md +467 -0
  177. package/content/plugins/database/skills/agileflow-database/workflows/design-schema.md +213 -0
  178. package/content/plugins/database/skills/agileflow-database/workflows/optimize-query.md +253 -0
  179. package/content/plugins/debugging/plugin.yaml +14 -0
  180. package/content/plugins/debugging/skills/agileflow-debug/SKILL.md +236 -0
  181. package/content/plugins/debugging/skills/agileflow-debug/references/common-patterns.md +350 -0
  182. package/content/plugins/debugging/skills/agileflow-debug/references/debugging-strategies.md +328 -0
  183. package/content/plugins/debugging/skills/agileflow-debug/workflows/debug-issue.md +187 -0
  184. package/content/plugins/debugging/skills/agileflow-debug/workflows/reproduce-bug.md +194 -0
  185. package/content/plugins/delivery/agents/ci.md +547 -0
  186. package/content/plugins/delivery/agents/devops.md +789 -0
  187. package/content/plugins/delivery/plugin.yaml +19 -0
  188. package/content/plugins/delivery/skills/agileflow-delivery/SKILL.md +111 -0
  189. package/content/plugins/delivery/skills/agileflow-delivery/references/changelog-format-guide.md +133 -0
  190. package/content/plugins/delivery/skills/agileflow-delivery/references/ci-pipeline-guide.md +158 -0
  191. package/content/plugins/delivery/skills/agileflow-delivery/references/pr-checklist-guide.md +133 -0
  192. package/content/plugins/delivery/skills/agileflow-delivery/references/release-checklist.md +142 -0
  193. package/content/plugins/delivery/skills/agileflow-delivery/workflows/changelog.md +72 -0
  194. package/content/plugins/delivery/skills/agileflow-delivery/workflows/deploy.md +74 -0
  195. package/content/plugins/delivery/skills/agileflow-delivery/workflows/pr.md +75 -0
  196. package/content/plugins/docs/agents/documentation.md +544 -0
  197. package/content/plugins/docs/agents/readme-updater.md +640 -0
  198. package/content/plugins/docs/plugin.yaml +19 -0
  199. package/content/plugins/docs/skills/agileflow-docs/SKILL.md +106 -0
  200. package/content/plugins/docs/skills/agileflow-docs/references/api-doc-template.md +167 -0
  201. package/content/plugins/docs/skills/agileflow-docs/references/doc-types-guide.md +141 -0
  202. package/content/plugins/docs/skills/agileflow-docs/references/readme-template.md +156 -0
  203. package/content/plugins/docs/skills/agileflow-docs/workflows/readme-sync.md +57 -0
  204. package/content/plugins/docs/skills/agileflow-docs/workflows/sync.md +64 -0
  205. package/content/plugins/engineering/agents/api.md +718 -0
  206. package/content/plugins/engineering/agents/codebase-query.md +285 -0
  207. package/content/plugins/engineering/agents/compliance.md +559 -0
  208. package/content/plugins/engineering/agents/database.md +644 -0
  209. package/content/plugins/engineering/agents/integrations.md +644 -0
  210. package/content/plugins/engineering/agents/mobile.md +552 -0
  211. package/content/plugins/engineering/agents/monitoring.md +585 -0
  212. package/content/plugins/engineering/agents/performance.md +529 -0
  213. package/content/plugins/engineering/agents/refactor.md +592 -0
  214. package/content/plugins/engineering/agents/security.md +524 -0
  215. package/content/plugins/engineering/agents/ui.md +1336 -0
  216. package/content/plugins/engineering/plugin.yaml +37 -0
  217. package/content/plugins/engineering/skills/agileflow-engineering/SKILL.md +127 -0
  218. package/content/plugins/engineering/skills/agileflow-engineering/references/code-review-guide.md +126 -0
  219. package/content/plugins/engineering/skills/agileflow-engineering/references/domain-routing-guide.md +89 -0
  220. package/content/plugins/engineering/skills/agileflow-engineering/references/refactoring-guide.md +136 -0
  221. package/content/plugins/engineering/skills/agileflow-engineering/workflows/diagnose.md +63 -0
  222. package/content/plugins/engineering/skills/agileflow-engineering/workflows/impact.md +60 -0
  223. package/content/plugins/ideation/agents/brainstorm-analyzer-features.md +179 -0
  224. package/content/plugins/ideation/agents/brainstorm-analyzer-growth.md +169 -0
  225. package/content/plugins/ideation/agents/brainstorm-analyzer-integration.md +181 -0
  226. package/content/plugins/ideation/agents/brainstorm-analyzer-market.md +150 -0
  227. package/content/plugins/ideation/agents/brainstorm-analyzer-ux.md +180 -0
  228. package/content/plugins/ideation/agents/brainstorm-consensus.md +245 -0
  229. package/content/plugins/ideation/agents/design.md +568 -0
  230. package/content/plugins/ideation/agents/product.md +582 -0
  231. package/content/plugins/ideation/plugin.yaml +31 -0
  232. package/content/plugins/ideation/skills/agileflow-ideation/SKILL.md +109 -0
  233. package/content/plugins/ideation/skills/agileflow-ideation/references/brainstorm-techniques.md +138 -0
  234. package/content/plugins/ideation/skills/agileflow-ideation/references/competitive-analysis-template.md +148 -0
  235. package/content/plugins/ideation/skills/agileflow-ideation/references/feature-prioritization-guide.md +147 -0
  236. package/content/plugins/ideation/skills/agileflow-ideation/references/user-story-patterns.md +152 -0
  237. package/content/plugins/ideation/skills/agileflow-ideation/workflows/features.md +65 -0
  238. package/content/plugins/ideation/skills/agileflow-ideation/workflows/ideate.md +54 -0
  239. package/content/plugins/migration/agents/datamigration.md +757 -0
  240. package/content/plugins/migration/plugin.yaml +17 -0
  241. package/content/plugins/migration/skills/agileflow-migration/SKILL.md +106 -0
  242. package/content/plugins/migration/skills/agileflow-migration/references/data-validation-checklist.md +154 -0
  243. package/content/plugins/migration/skills/agileflow-migration/references/migration-patterns.md +209 -0
  244. package/content/plugins/migration/skills/agileflow-migration/references/rollback-playbook.md +171 -0
  245. package/content/plugins/migration/skills/agileflow-migration/references/version-compatibility-matrix.md +155 -0
  246. package/content/plugins/migration/skills/agileflow-migration/workflows/plan.md +73 -0
  247. package/content/plugins/migration/skills/agileflow-migration/workflows/validate.md +71 -0
  248. package/content/plugins/performance/plugin.yaml +14 -0
  249. package/content/plugins/performance/skills/agileflow-performance/SKILL.md +224 -0
  250. package/content/plugins/performance/skills/agileflow-performance/references/optimization-patterns.md +554 -0
  251. package/content/plugins/performance/skills/agileflow-performance/references/profiling-guide.md +383 -0
  252. package/content/plugins/performance/skills/agileflow-performance/references/web-vitals-guide.md +360 -0
  253. package/content/plugins/performance/skills/agileflow-performance/workflows/improve-web-vitals.md +344 -0
  254. package/content/plugins/performance/skills/agileflow-performance/workflows/profile-and-fix.md +254 -0
  255. package/content/plugins/planning/agents/analytics.md +670 -0
  256. package/content/plugins/planning/agents/rlm-subcore.md +215 -0
  257. package/content/plugins/planning/plugin.yaml +19 -0
  258. package/content/plugins/planning/skills/agileflow-planning/SKILL.md +111 -0
  259. package/content/plugins/planning/skills/agileflow-planning/references/estimation-guide.md +114 -0
  260. package/content/plugins/planning/skills/agileflow-planning/references/rpi-workflow.md +119 -0
  261. package/content/plugins/planning/skills/agileflow-planning/references/sprint-planning-guide.md +145 -0
  262. package/content/plugins/planning/skills/agileflow-planning/workflows/impact.md +63 -0
  263. package/content/plugins/planning/skills/agileflow-planning/workflows/rpi.md +104 -0
  264. package/content/plugins/psychology/plugin.yaml +14 -0
  265. package/content/plugins/psychology/skills/agileflow-retention/SKILL.md +252 -0
  266. package/content/plugins/psychology/skills/agileflow-retention/references/competitor-analysis.md +240 -0
  267. package/content/plugins/psychology/skills/agileflow-retention/references/psychology-models.md +349 -0
  268. package/content/plugins/psychology/skills/agileflow-retention/references/retention-patterns.md +279 -0
  269. package/content/plugins/psychology/skills/agileflow-retention/workflows/design-retention-feature.md +287 -0
  270. package/content/plugins/psychology/skills/agileflow-retention/workflows/retention-audit.md +259 -0
  271. package/content/plugins/refactoring/plugin.yaml +14 -0
  272. package/content/plugins/refactoring/skills/agileflow-refactor/SKILL.md +235 -0
  273. package/content/plugins/refactoring/skills/agileflow-refactor/references/refactoring-patterns.md +405 -0
  274. package/content/plugins/refactoring/skills/agileflow-refactor/references/safety-checks.md +177 -0
  275. package/content/plugins/refactoring/skills/agileflow-refactor/workflows/extract-module.md +226 -0
  276. package/content/plugins/refactoring/skills/agileflow-refactor/workflows/safe-refactor.md +169 -0
  277. package/content/plugins/research/agents/research.md +503 -0
  278. package/content/plugins/research/plugin.yaml +17 -0
  279. package/content/plugins/research/skills/agileflow-research/SKILL.md +110 -0
  280. package/content/plugins/research/skills/agileflow-research/references/knowledge-decay-guide.md +121 -0
  281. package/content/plugins/research/skills/agileflow-research/references/research-prompt-guide.md +141 -0
  282. package/content/plugins/research/skills/agileflow-research/references/synthesis-template.md +154 -0
  283. package/content/plugins/research/skills/agileflow-research/workflows/analyze.md +60 -0
  284. package/content/plugins/research/skills/agileflow-research/workflows/ask.md +64 -0
  285. package/content/plugins/research/skills/agileflow-research/workflows/import.md +66 -0
  286. package/content/plugins/research/skills/agileflow-research/workflows/synthesize.md +66 -0
  287. package/content/plugins/reviews/plugin.yaml +14 -0
  288. package/content/plugins/reviews/skills/agileflow-pr-reviewer/SKILL.md +241 -0
  289. package/content/plugins/reviews/skills/agileflow-pr-reviewer/references/review-checklist.md +200 -0
  290. package/content/plugins/reviews/skills/agileflow-pr-reviewer/references/security-patterns.md +328 -0
  291. package/content/plugins/reviews/skills/agileflow-pr-reviewer/workflows/review-pr.md +153 -0
  292. package/content/plugins/reviews/skills/agileflow-pr-reviewer/workflows/security-review.md +177 -0
  293. package/content/plugins/seo/agents/seo-analyzer-content.md +169 -0
  294. package/content/plugins/seo/agents/seo-analyzer-images.md +198 -0
  295. package/content/plugins/seo/agents/seo-analyzer-performance.md +217 -0
  296. package/content/plugins/seo/agents/seo-analyzer-schema.md +184 -0
  297. package/content/plugins/seo/agents/seo-analyzer-sitemap.md +177 -0
  298. package/content/plugins/seo/agents/seo-analyzer-technical.md +151 -0
  299. package/content/plugins/seo/agents/seo-consensus.md +304 -0
  300. package/content/plugins/seo/plugin.yaml +19 -4
  301. package/content/plugins/seo/skills/agileflow-seo/SKILL.md +188 -0
  302. package/content/plugins/seo/skills/agileflow-seo/references/cwv-thresholds.md +110 -0
  303. package/content/plugins/seo/skills/agileflow-seo/references/eeat-framework.md +144 -0
  304. package/content/plugins/seo/skills/agileflow-seo/references/keyword-research-guide.md +125 -0
  305. package/content/plugins/seo/skills/agileflow-seo/references/schema-types.md +139 -0
  306. package/content/plugins/seo/skills/agileflow-seo/references/technical-seo-checklist.md +139 -0
  307. package/content/plugins/seo/skills/agileflow-seo/workflows/audit.md +98 -0
  308. package/content/plugins/seo/skills/agileflow-seo/workflows/page.md +118 -0
  309. package/content/plugins/testing/plugin.yaml +16 -0
  310. package/content/plugins/testing/skills/agileflow-test-writer/SKILL.md +260 -0
  311. package/content/plugins/testing/skills/agileflow-test-writer/references/coverage-targets.md +239 -0
  312. package/content/plugins/testing/skills/agileflow-test-writer/references/test-patterns.md +420 -0
  313. package/content/plugins/testing/skills/agileflow-test-writer/workflows/add-coverage.md +154 -0
  314. package/content/plugins/testing/skills/agileflow-test-writer/workflows/write-tests-from-ac.md +225 -0
  315. package/package.json +2 -2
  316. package/src/cli/commands/doctor.js +818 -30
  317. package/src/cli/commands/hook.js +17 -14
  318. package/src/cli/commands/launch.js +1454 -0
  319. package/src/cli/commands/learn.js +149 -0
  320. package/src/cli/commands/plugins.js +113 -0
  321. package/src/cli/commands/setup.js +455 -110
  322. package/src/cli/commands/skills.js +324 -0
  323. package/src/cli/commands/status.js +8 -10
  324. package/src/cli/commands/update.js +76 -15
  325. package/src/cli/index.js +90 -26
  326. package/src/cli/wizard/babysit-mode-picker.js +192 -0
  327. package/src/cli/wizard/behaviors-picker.js +208 -54
  328. package/src/cli/wizard/ide-picker.js +40 -28
  329. package/src/cli/wizard/install-scope-picker.js +57 -0
  330. package/src/cli/wizard/launch-alias-picker.js +50 -0
  331. package/src/cli/wizard/launch-cli-picker.js +129 -0
  332. package/src/cli/wizard/launch-tmux-picker.js +133 -0
  333. package/src/cli/wizard/learnings-picker.js +40 -0
  334. package/src/cli/wizard/plugin-picker.js +47 -16
  335. package/src/lib/brand.js +116 -0
  336. package/src/lib/errors.js +120 -0
  337. package/src/lib/path-check.js +39 -0
  338. package/src/runtime/config/defaults.js +22 -17
  339. package/src/runtime/config/loader.js +77 -8
  340. package/src/runtime/config/schema.json +43 -16
  341. package/src/runtime/config/writer.js +3 -1
  342. package/src/runtime/ide/babysit-skill.js +202 -0
  343. package/src/runtime/ide/capabilities.js +84 -29
  344. package/src/runtime/ide/claude-code-content.js +177 -0
  345. package/src/runtime/ide/claude-code-settings.js +67 -29
  346. package/src/runtime/ide/claude-code-skills.js +47 -32
  347. package/src/runtime/ide/codex-config.js +295 -0
  348. package/src/runtime/installer/install.js +252 -24
  349. package/src/runtime/launch/alias-installer.js +191 -0
  350. package/src/runtime/launch/cli-resume.js +244 -0
  351. package/src/runtime/launch/closed-windows.js +338 -0
  352. package/src/runtime/launch/defaults.js +66 -0
  353. package/src/runtime/launch/detect-clis.js +69 -0
  354. package/src/runtime/launch/doctor.js +464 -0
  355. package/src/runtime/launch/exec-wrapper.js +114 -0
  356. package/src/runtime/launch/parallel-session.js +247 -0
  357. package/src/runtime/launch/prefs.js +211 -0
  358. package/src/runtime/launch/project-prefs.js +234 -0
  359. package/src/runtime/launch/resolve-cli.js +56 -0
  360. package/src/runtime/launch/restore.js +152 -0
  361. package/src/runtime/launch/schema.json +75 -0
  362. package/src/runtime/launch/session-lifecycle.js +313 -0
  363. package/src/runtime/launch/session-registry.js +401 -0
  364. package/src/runtime/launch/spawn.js +103 -0
  365. package/src/runtime/launch/tabs.js +350 -0
  366. package/src/runtime/launch/tmux.js +764 -0
  367. package/src/runtime/launch/worktree.js +260 -0
  368. package/src/runtime/plugins/registry.js +16 -11
  369. package/src/runtime/plugins/validator.js +57 -43
  370. package/src/runtime/skills/learnings.js +308 -0
  371. package/content/plugins/core/hooks/babysit-mentor-injector.js +0 -55
  372. package/src/cli/wizard/personalization.js +0 -64
@@ -0,0 +1,144 @@
1
+ # E-E-A-T Framework Reference
2
+
3
+ **Load this when:** analyzing content quality, reviewing YMYL pages,
4
+ or recommending content improvements for ranking.
5
+
6
+ E-E-A-T = **Experience, Expertise, Authoritativeness, Trustworthiness**
7
+
8
+ Google's Quality Raters use E-E-A-T to evaluate page quality. It's especially
9
+ important for YMYL (Your Money or Your Life) content.
10
+
11
+ ## The four dimensions
12
+
13
+ ### Experience
14
+
15
+ _Has the author/site actually done this thing?_
16
+
17
+ Signals:
18
+
19
+ - First-person accounts ("I tested this for 30 days")
20
+ - Original photos, screenshots, or video
21
+ - Specific details only someone with experience would know
22
+ - Product reviews with personal purchase/use evidence
23
+ - Case studies with real results and numbers
24
+
25
+ Missing signals: generic descriptions, no original media, "based on research" disclaimers everywhere.
26
+
27
+ ### Expertise
28
+
29
+ _Does the author have the knowledge to write about this?_
30
+
31
+ Signals:
32
+
33
+ - Author bio with relevant credentials, education, or years of experience
34
+ - Citations to primary sources (studies, official docs)
35
+ - Correct use of domain terminology
36
+ - Nuanced takes that show depth (not just surface-level how-tos)
37
+ - Regular publication in the niche
38
+
39
+ Missing signals: no author attribution, no credentials, shallow coverage, factual errors.
40
+
41
+ ### Authoritativeness
42
+
43
+ _Is this site/author recognized as a source in this field?_
44
+
45
+ Signals:
46
+
47
+ - Backlinks from authoritative sites in the same niche
48
+ - Author cited or quoted by other publications
49
+ - Wikipedia mentions
50
+ - Brand searches (people search for your brand + topic)
51
+ - Mentions in industry publications
52
+
53
+ Missing signals: no external recognition, no links from topically relevant sites.
54
+
55
+ ### Trustworthiness
56
+
57
+ _Can I trust this site and its content?_
58
+
59
+ Signals:
60
+
61
+ - HTTPS
62
+ - Clear contact information and physical address
63
+ - About page with team/company info
64
+ - Privacy policy and terms of service
65
+ - Transparent disclosure of affiliates, sponsors, AI use
66
+ - Accurate, up-to-date content (no outdated facts)
67
+ - User reviews and ratings (for ecommerce)
68
+ - Corrections policy for mistakes
69
+
70
+ Missing signals: no contact info, no privacy policy, deceptive design, hidden fees.
71
+
72
+ ## YMYL — highest E-E-A-T requirements
73
+
74
+ YMYL = pages where wrong information could harm someone's money, health, safety, or wellbeing.
75
+
76
+ | YMYL category | Examples | E-E-A-T requirement |
77
+ | ------------------- | ------------------------------------ | ----------------------------------------- |
78
+ | Medical/health | Symptoms, treatments, medications | Medical professional credentials required |
79
+ | Financial | Investment advice, taxes, insurance | Financial professional credentials |
80
+ | Legal | Legal advice, rights | Legal professional credentials |
81
+ | Safety | Emergency procedures, product safety | Expert verification |
82
+ | News/current events | Breaking news, politics | Editorial standards, sources |
83
+
84
+ For YMYL pages: anonymous content or thin author bios are almost always a ranking problem.
85
+
86
+ ## E-E-A-T by content type
87
+
88
+ ### Blog posts / guides
89
+
90
+ - Author bio with photo, credentials, and links to social/LinkedIn
91
+ - "Reviewed by" expert if author isn't the domain expert
92
+ - Last updated date (and actually update it)
93
+ - Original research or data where possible
94
+ - Citations to primary sources
95
+
96
+ ### Product pages (ecommerce)
97
+
98
+ - Detailed product descriptions (not manufacturer copy)
99
+ - Original product photos from multiple angles
100
+ - User reviews with verified purchase signals
101
+ - Clear return/refund policy
102
+ - Stock and shipping information
103
+
104
+ ### Service pages (local/agency)
105
+
106
+ - Team member profiles with credentials
107
+ - Portfolio/case studies with real results
108
+ - Client testimonials with full names and companies
109
+ - Certifications and awards
110
+
111
+ ### AI-generated content
112
+
113
+ Google doesn't penalize AI content per se, but AI content often lacks:
114
+
115
+ - Experience signals (no first-hand accounts)
116
+ - Original data or media
117
+ - Nuance from actual expertise
118
+
119
+ If publishing AI content: add human expert review, original examples, and real data.
120
+
121
+ ## Quick E-E-A-T audit checklist
122
+
123
+ ```
124
+ Experience
125
+ ⬜ Original media (photos, screenshots, video)
126
+ ⬜ First-person experience where relevant
127
+ ⬜ Specific details only an expert would know
128
+
129
+ Expertise
130
+ ⬜ Author bio with relevant credentials
131
+ ⬜ Primary source citations
132
+ ⬜ Accurate, up-to-date information
133
+
134
+ Authoritativeness
135
+ ⬜ Backlinks from topically relevant sites
136
+ ⬜ Author has external recognition in niche
137
+
138
+ Trustworthiness
139
+ ⬜ HTTPS
140
+ ⬜ Clear contact information
141
+ ⬜ Privacy policy and terms
142
+ ⬜ Affiliate/sponsored disclosure where applicable
143
+ ⬜ No deceptive design patterns
144
+ ```
@@ -0,0 +1,125 @@
1
+ # Keyword Research Guide
2
+
3
+ **Load this when:** Building a keyword strategy, evaluating keyword difficulty vs. volume tradeoffs, or planning content around search intent.
4
+
5
+ ## Search Intent Types
6
+
7
+ | Intent | Query signal | Content match | Example |
8
+ | ------------------------ | ------------------------------------------ | ---------------------------- | ------------------------------------------- |
9
+ | Informational | "how to", "what is", "why does" | Guide, tutorial, explainer | "how to migrate postgres database" |
10
+ | Navigational | Brand name, product name | Brand page, docs | "vercel dashboard login" |
11
+ | Commercial investigation | "best", "vs", "review", "alternatives" | Comparison, review, listicle | "best CI/CD tools 2025" |
12
+ | Transactional | "buy", "download", "pricing", "free trial" | Landing page, pricing | "agile project management software pricing" |
13
+
14
+ **Match content type to intent.** Writing a blog post for a transactional query loses to landing pages. Writing a landing page for informational queries loses to tutorials.
15
+
16
+ ---
17
+
18
+ ## Difficulty vs. Volume Tradeoffs
19
+
20
+ | Scenario | Strategy |
21
+ | ---------------------------- | ---------------------------------------------------------------- |
22
+ | High volume, high difficulty | Only target if strong domain authority (DA 50+). Long-term play. |
23
+ | High volume, low difficulty | Prioritize — best ROI, target immediately |
24
+ | Low volume, low difficulty | Long-tail wins; high conversion, compound over time |
25
+ | Low volume, high difficulty | Skip — too expensive for too little reward |
26
+
27
+ ### Difficulty thresholds by domain authority
28
+
29
+ | Your DA | Realistic KD target |
30
+ | ------- | ------------------- |
31
+ | 0–20 | KD 0–20 |
32
+ | 20–40 | KD 0–35 |
33
+ | 40–60 | KD 0–50 |
34
+ | 60–80 | KD 0–65 |
35
+ | 80+ | Any |
36
+
37
+ ---
38
+
39
+ ## Long-Tail Strategy
40
+
41
+ ### Why long-tail
42
+
43
+ - 70% of all searches are long-tail (4+ words)
44
+ - Lower KD, lower competition
45
+ - Higher purchase intent (more specific = closer to decision)
46
+ - Compound: 100 pages at 200 visits/month > 1 page at 10,000/month (often easier to achieve)
47
+
48
+ ### Long-tail expansion patterns
49
+
50
+ ```
51
+ Seed keyword: "project management"
52
+ → Long-tail: "project management for remote teams"
53
+ → Longer: "project management for remote engineering teams"
54
+ → Question: "how to manage remote engineering teams effectively"
55
+ → Comparison: "jira vs linear for remote teams"
56
+ → Local: "project management software for startups in NYC"
57
+ ```
58
+
59
+ ### Tools for long-tail discovery
60
+
61
+ - Google autocomplete and "People Also Ask"
62
+ - Ahrefs / Semrush: Questions filter
63
+ - AnswerThePublic
64
+ - Reddit / Quora searches
65
+ - Your own site search queries
66
+
67
+ ---
68
+
69
+ ## Keyword Clustering
70
+
71
+ Group keywords by semantic similarity and intent before mapping to content:
72
+
73
+ ```
74
+ Cluster: "CI/CD tools"
75
+ ├── "best CI/CD tools" [commercial, high vol]
76
+ ├── "CI/CD tools comparison" [commercial, med vol]
77
+ ├── "CI/CD tools for small teams" [commercial, low vol, low KD]
78
+ ├── "what is CI/CD" [informational, high vol]
79
+ └── "CI/CD pipeline tutorial" [informational, high vol]
80
+
81
+ One cluster = one content piece (or hub + spokes)
82
+ ```
83
+
84
+ **Rule:** Never create two pages targeting the same cluster — they cannibalize each other.
85
+
86
+ ---
87
+
88
+ ## Keyword Metrics Reference
89
+
90
+ | Metric | Tool | What it tells you |
91
+ | ----------------------- | ---------------------- | ------------------------------------ |
92
+ | Search volume | Ahrefs, Semrush, GKP | Monthly search demand |
93
+ | Keyword difficulty (KD) | Ahrefs, Semrush | How hard to rank (0–100) |
94
+ | CPC | Google Keyword Planner | Commercial value proxy |
95
+ | SERP features | Ahrefs, Semrush | Featured snippets, image packs, etc. |
96
+ | Click-through rate | Ahrefs (CTR curve) | Actual clicks vs. searches |
97
+ | Position | GSC | Current ranking |
98
+
99
+ ---
100
+
101
+ ## SERP Feature Targets
102
+
103
+ | Feature | How to target |
104
+ | ---------------- | --------------------------------------------------------------------- |
105
+ | Featured snippet | Answer the question directly in first 40–60 words; use H2 as question |
106
+ | People Also Ask | Answer related questions in FAQ section |
107
+ | Image pack | Alt text + filename match keyword; compress images; structured data |
108
+ | Video carousel | YouTube video with keyword in title + description |
109
+ | Knowledge panel | Schema markup + Wikipedia / Wikidata presence |
110
+ | Local pack | Google Business Profile + local SEO signals |
111
+
112
+ ---
113
+
114
+ ## Keyword Prioritization Scorecard
115
+
116
+ Score each keyword candidate 1–5:
117
+
118
+ | Factor | Weight | Scoring notes |
119
+ | -------------------- | ------ | -------------------------------------------- |
120
+ | Search volume | 20% | 5 = >10k/mo, 1 = <100/mo |
121
+ | KD vs. your DA | 30% | 5 = KD well below DA, 1 = KD >> DA |
122
+ | Business relevance | 30% | 5 = core ICP query, 1 = tangentially related |
123
+ | Conversion potential | 20% | 5 = transactional, 1 = pure informational |
124
+
125
+ **Priority score = Σ(score × weight)** — target highest scores first.
@@ -0,0 +1,139 @@
1
+ # Schema Markup Types Reference
2
+
3
+ **Load this when:** recommending structured data, validating JSON-LD,
4
+ or generating schema markup for a specific business type.
5
+
6
+ ## Which schema type for which site
7
+
8
+ | Site type | Primary schema | Supporting schema |
9
+ | ------------------- | -------------------------- | ------------------------------------------ |
10
+ | SaaS / Software | `SoftwareApplication` | `Organization`, `FAQPage`, `HowTo` |
11
+ | Ecommerce / store | `Product`, `Offer` | `BreadcrumbList`, `Organization`, `Review` |
12
+ | Local business | `LocalBusiness` (subtype) | `OpeningHoursSpecification`, `Review` |
13
+ | Blog / content | `Article` or `BlogPosting` | `Person` (author), `BreadcrumbList` |
14
+ | News publisher | `NewsArticle` | `Organization`, `Person` |
15
+ | Recipe site | `Recipe` | `HowToStep`, `AggregateRating` |
16
+ | Job listings | `JobPosting` | `Organization` |
17
+ | Events | `Event` | `Place`, `Offer` |
18
+ | Courses / education | `Course` | `EducationalOrganization` |
19
+ | FAQ pages | `FAQPage` | — |
20
+ | How-to guides | `HowTo` | `HowToStep`, `HowToTool` |
21
+
22
+ ## Google-supported rich result types (confirmed)
23
+
24
+ Only these produce rich results in Google Search:
25
+
26
+ | Schema type | Rich result | Eligibility requirements |
27
+ | ---------------------------- | ------------------------------------ | ----------------------------------------------------- |
28
+ | `Article` / `NewsArticle` | Top stories carousel | AMP or signed exchange (news) |
29
+ | `Product` | Price, availability, ratings in SERP | Required: name, image, description |
30
+ | `Recipe` | Cooking carousel | Required: name, image, steps |
31
+ | `FAQPage` | Expandable FAQ in SERP | Genuine FAQ content, not SEO spam |
32
+ | `HowTo` | Step-by-step in SERP | Clear steps with instructions |
33
+ | `Event` | Event dates in SERP | Required: name, startDate, location |
34
+ | `JobPosting` | Job listing in SERP | Required: title, hiringOrganization, datePosted |
35
+ | `LocalBusiness` | Knowledge panel | Required: name, address, telephone |
36
+ | `Review` / `AggregateRating` | Star ratings in SERP | Cannot be self-reviews |
37
+ | `VideoObject` | Video thumbnail | Required: name, description, thumbnailUrl, uploadDate |
38
+ | `BreadcrumbList` | Breadcrumb trail in URL | Page hierarchy |
39
+ | `SiteLinksSearchBox` | Search box in SERP | Large sites only |
40
+
41
+ ## JSON-LD template: Product
42
+
43
+ ```json
44
+ {
45
+ "@context": "https://schema.org",
46
+ "@type": "Product",
47
+ "name": "Product Name",
48
+ "image": ["https://example.com/image.jpg"],
49
+ "description": "Product description",
50
+ "sku": "SKU123",
51
+ "brand": {
52
+ "@type": "Brand",
53
+ "name": "Brand Name"
54
+ },
55
+ "offers": {
56
+ "@type": "Offer",
57
+ "url": "https://example.com/product",
58
+ "priceCurrency": "USD",
59
+ "price": "29.99",
60
+ "availability": "https://schema.org/InStock",
61
+ "itemCondition": "https://schema.org/NewCondition"
62
+ },
63
+ "aggregateRating": {
64
+ "@type": "AggregateRating",
65
+ "ratingValue": "4.5",
66
+ "reviewCount": "89"
67
+ }
68
+ }
69
+ ```
70
+
71
+ ## JSON-LD template: LocalBusiness
72
+
73
+ ```json
74
+ {
75
+ "@context": "https://schema.org",
76
+ "@type": "LocalBusiness",
77
+ "name": "Business Name",
78
+ "image": "https://example.com/logo.jpg",
79
+ "telephone": "+1-555-555-5555",
80
+ "address": {
81
+ "@type": "PostalAddress",
82
+ "streetAddress": "123 Main St",
83
+ "addressLocality": "City",
84
+ "addressRegion": "ST",
85
+ "postalCode": "12345",
86
+ "addressCountry": "US"
87
+ },
88
+ "geo": {
89
+ "@type": "GeoCoordinates",
90
+ "latitude": 40.7128,
91
+ "longitude": -74.006
92
+ },
93
+ "url": "https://example.com",
94
+ "openingHoursSpecification": [
95
+ {
96
+ "@type": "OpeningHoursSpecification",
97
+ "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
98
+ "opens": "09:00",
99
+ "closes": "17:00"
100
+ }
101
+ ]
102
+ }
103
+ ```
104
+
105
+ ## JSON-LD template: FAQPage
106
+
107
+ ```json
108
+ {
109
+ "@context": "https://schema.org",
110
+ "@type": "FAQPage",
111
+ "mainEntity": [
112
+ {
113
+ "@type": "Question",
114
+ "name": "Question text here?",
115
+ "acceptedAnswer": {
116
+ "@type": "Answer",
117
+ "text": "Answer text here."
118
+ }
119
+ }
120
+ ]
121
+ }
122
+ ```
123
+
124
+ ## Common schema mistakes
125
+
126
+ | Mistake | Problem | Fix |
127
+ | ----------------------------------- | ------------------------ | ----------------------------------------------------- |
128
+ | Markup not matching visible content | Manual action risk | Markup must match what users see |
129
+ | Self-reviews in `AggregateRating` | Policy violation | Only use genuine third-party reviews |
130
+ | `FAQPage` on every page for SEO | Spam — Google may ignore | Only on genuine FAQ pages |
131
+ | Missing required properties | Rich result won't show | Check Google's docs for required fields |
132
+ | Multiple `@type` conflicts | Parser confusion | Use array: `"@type": ["LocalBusiness", "Restaurant"]` |
133
+ | Schema on 404 / thin pages | Wasted markup | Only add schema to quality pages |
134
+
135
+ ## Validation tools
136
+
137
+ - **Google Rich Results Test**: test.google.com/rich-results — shows if eligible for rich results
138
+ - **Schema Markup Validator**: validator.schema.org — general schema validity
139
+ - **Google Search Console**: search.google.com/search-console → Enhancements — field data on schema errors
@@ -0,0 +1,139 @@
1
+ # Technical SEO Checklist
2
+
3
+ **Load this when:** Auditing technical SEO, diagnosing crawl or indexation issues, or building an SEO-ready site.
4
+
5
+ ## Crawlability
6
+
7
+ - [ ] `robots.txt` exists at `/robots.txt` and is valid
8
+ - [ ] `robots.txt` does not block important resources (CSS, JS, images)
9
+ - [ ] No `noindex` directives on pages that should be indexed
10
+ - [ ] No `Disallow: /` in production `robots.txt` (common staging leftover)
11
+ - [ ] Internal links use crawlable `<a href>` tags (not JS-only navigation)
12
+ - [ ] No crawl traps: infinite pagination, session ID URLs, calendar archives
13
+ - [ ] Site crawl depth: important pages reachable within 3 clicks from homepage
14
+
15
+ ### robots.txt format
16
+
17
+ ```
18
+ User-agent: *
19
+ Disallow: /admin/
20
+ Disallow: /api/
21
+ Allow: /api/public/
22
+
23
+ User-agent: Googlebot
24
+ Disallow: /staging/
25
+
26
+ Sitemap: https://example.com/sitemap.xml
27
+ ```
28
+
29
+ ---
30
+
31
+ ## Indexation
32
+
33
+ - [ ] XML sitemap exists and submitted to Google Search Console
34
+ - [ ] Sitemap includes only canonical, indexable URLs
35
+ - [ ] Sitemap excludes 404s, 301s, and `noindex` pages
36
+ - [ ] Sitemap updated automatically on content publish
37
+ - [ ] `<link rel="canonical">` on every page pointing to the preferred URL
38
+ - [ ] No duplicate content from `www` vs. non-`www` (redirect to one)
39
+ - [ ] No duplicate content from `http` vs. `https` (redirect to HTTPS)
40
+ - [ ] No duplicate content from trailing slash vs. no trailing slash
41
+
42
+ ### Canonical tag format
43
+
44
+ ```html
45
+ <link rel="canonical" href="https://example.com/page/" />
46
+ ```
47
+
48
+ ---
49
+
50
+ ## URL Structure
51
+
52
+ | Best practice | Rule |
53
+ | ---------------------------- | -------------------------------------------------------------- |
54
+ | Use hyphens, not underscores | `/my-page` not `/my_page` |
55
+ | Lowercase only | `/about` not `/About` |
56
+ | Short and descriptive | `/blog/seo-guide` not `/blog/post-123-seo-guide-for-beginners` |
57
+ | Include keyword | `/blog/technical-seo-checklist` |
58
+ | No stop words | Avoid "a", "the", "and" where possible |
59
+ | Consistent trailing slash | Pick one, redirect the other, use canonical |
60
+
61
+ ---
62
+
63
+ ## HTTPS and Security
64
+
65
+ - [ ] Site fully on HTTPS with valid certificate
66
+ - [ ] No mixed content (HTTP resources on HTTPS pages)
67
+ - [ ] HSTS header set
68
+ - [ ] Certificate is not expiring within 30 days
69
+ - [ ] HTTPS redirect chain is a single 301 (not 301 → 301 → 200)
70
+
71
+ ---
72
+
73
+ ## Page Speed (Technical SEO Impact)
74
+
75
+ - [ ] Core Web Vitals passing (LCP <2.5s, INP <200ms, CLS <0.1)
76
+ - [ ] Time to First Byte (TTFB) <800ms
77
+ - [ ] Server-side or edge caching for static/semi-static pages
78
+ - [ ] Images lazy-loaded, correctly sized
79
+ - [ ] `<link rel="preload">` on LCP element (hero image, critical font)
80
+ - [ ] No render-blocking scripts in `<head>` without `async` or `defer`
81
+
82
+ ---
83
+
84
+ ## Mobile
85
+
86
+ - [ ] Responsive design (passes Google Mobile-Friendly Test)
87
+ - [ ] Viewport meta tag: `<meta name="viewport" content="width=device-width, initial-scale=1">`
88
+ - [ ] Tap targets ≥48px
89
+ - [ ] Font size ≥16px for body text
90
+ - [ ] No horizontal scroll on mobile
91
+ - [ ] Mobile and desktop serve same content (no mobile-only exclusions)
92
+
93
+ ---
94
+
95
+ ## Structured Data
96
+
97
+ - [ ] `Organization` schema on homepage
98
+ - [ ] `WebSite` schema with `SearchAction` for sitelinks search box
99
+ - [ ] `Article` / `BlogPosting` schema on blog posts
100
+ - [ ] `Product` / `Offer` schema on product pages
101
+ - [ ] `FAQPage` schema on FAQ sections
102
+ - [ ] `BreadcrumbList` schema on deep pages
103
+ - [ ] No schema errors (validate at schema.org/validator or Rich Results Test)
104
+
105
+ ---
106
+
107
+ ## International SEO
108
+
109
+ - [ ] `hreflang` tags for multilingual content
110
+ - [ ] `hreflang` includes `x-default` for fallback
111
+ - [ ] Language codes are ISO 639-1 (e.g., `en`, `fr`, not `english`)
112
+ - [ ] Regional targeting set in Google Search Console per property
113
+
114
+ ---
115
+
116
+ ## Redirects
117
+
118
+ | Rule | Requirement |
119
+ | ----------------------------------- | -------------------------------- |
120
+ | Use 301 for permanent moves | Not 302 (temporary) |
121
+ | No redirect chains >2 hops | A → B → C should be A → C |
122
+ | No redirect loops | A → B → A |
123
+ | 404s on truly gone pages | Don't 301 to homepage |
124
+ | Verify old URL equity passes to new | Check crawl tool after migration |
125
+
126
+ ---
127
+
128
+ ## Core Technical SEO Monitoring
129
+
130
+ | What to monitor | Tool | Frequency |
131
+ | ----------------------- | ----------------------- | ------------ |
132
+ | Crawl errors | Google Search Console | Weekly |
133
+ | Index coverage | Google Search Console | Weekly |
134
+ | Core Web Vitals (field) | CrUX / GSC | Monthly |
135
+ | Sitemap errors | GSC / crawl tool | Monthly |
136
+ | Broken internal links | Screaming Frog / Ahrefs | Monthly |
137
+ | New 404s | GSC | Weekly |
138
+ | Soft 404s | GSC | Monthly |
139
+ | Manual actions | GSC | Weekly alert |
@@ -0,0 +1,98 @@
1
+ # Audit Workflow — Full Website SEO Audit
2
+
3
+ **Triggers:** "run an SEO audit", "audit my website for SEO", "what are my SEO issues", "SEO health score", "check SEO for example.com", "full SEO review"
4
+
5
+ **Goal:** Deploy 6 SEO analyzers in parallel against a website, synthesize results into a weighted health score (0–100), and produce a prioritized action plan with specific, actionable fixes.
6
+
7
+ ## Inputs needed
8
+
9
+ | Input | Required | How to get it |
10
+ | --------- | -------- | --------------------------------------------------------------------- |
11
+ | URL | Yes | Ask for it if not provided |
12
+ | site type | No | Auto-detect from homepage, or already captured in opening flow |
13
+ | context | No | Traffic level, recent changes, target keywords — ask conversationally |
14
+
15
+ ## Steps
16
+
17
+ 1. **If URL is not provided**, ask: _"What's the URL? I'll fetch your site and start the analysis."_ Accept homepage or any page. Don't offer fake options for this — just ask for the URL.
18
+
19
+ 2. **Gather context** (2-3 questions, conversational not interrogation):
20
+ - _"Roughly how much organic traffic does the site get per month? And have you made any big changes recently — migration, redesign, new CMS?"_ — traffic level affects prioritization, recent changes are the #1 cause of drops
21
+ - If they have target keywords: _"Any specific pages or keywords you want me to focus on?"_
22
+ - Skip these if they already answered in the opening flow
23
+
24
+ 3. **Fetch the homepage** to detect site type (e-commerce, SaaS, local business, publisher, etc.) if not already known. Also fetch `robots.txt` and `sitemap.xml`.
25
+
26
+ 4. **Deploy all 6 analyzers simultaneously** — default to quick depth, no need to ask:
27
+ - **Technical** — crawlability, indexability, HTTPS, redirects, canonical tags, mobile viewport, Core Web Vitals indicators
28
+ - **Content** — title tags, meta descriptions, heading structure, content quality, E-E-A-T signals, word count by page type
29
+ - **Schema** — structured data presence, correct schema types for detected business type, markup validity
30
+ - **Performance** — page speed signals, LCP, CLS, FID, render-blocking resources
31
+ - **Images** — alt text coverage, file sizes, next-gen formats (WebP/AVIF), lazy loading
32
+ - **Sitemap** — presence, coverage, freshness, consistency with robots.txt
33
+
34
+ 5. **Apply business-type-specific benchmarks.** E-commerce needs Product schema; local business needs LocalBusiness schema; publisher needs Article schema and E-E-A-T signals.
35
+
36
+ 6. **Weighted scoring:** Technical 20%, Content 20%, Schema 15%, Performance 15%, Images 15%, Sitemap 15%.
37
+
38
+ 7. **Present the SEO Health Score (0–100)** with category breakdown:
39
+
40
+ ```
41
+ Site: example.com
42
+ Business type: SaaS
43
+
44
+ Category Score Top Issue
45
+ Technical 61 12 pages missing canonical tags
46
+ Content 74 Meta descriptions missing on 8 pages
47
+ Schema 45 No structured data found — rich results blocked
48
+ Performance 82 LCP 3.1s — above 2.5s threshold
49
+ Images 58 31 images missing alt text
50
+ Sitemap 90 —
51
+
52
+ Overall: 68/100 — needs work
53
+ ```
54
+
55
+ 8. **Prioritized action plan:**
56
+ - **P0** (score < 60 or blocking issue): Fix immediately — indexing, canonical, noindex errors
57
+ - **P1** (quick wins): High ROI, low effort — missing schema, alt text, meta descriptions
58
+ - **P2** (structural): Performance, content depth, E-E-A-T signals
59
+ - **P3** (fine-tuning): Sitemap freshness, internal linking optimization
60
+
61
+ 9. **Guide next step with AskUserQuestion** — make it specific to actual findings:
62
+
63
+ ```xml
64
+ <invoke name="AskUserQuestion">
65
+ <parameter name="questions">[{
66
+ "question": "Audit complete. {site} scored {X}/100 — {critical} critical issues, {high} high. Biggest blocker: {top_issue}.",
67
+ "header": "What to tackle",
68
+ "multiSelect": false,
69
+ "options": [
70
+ {"label": "Fix {top_p0_issue} now (Recommended)", "description": "{specific fix + expected impact, e.g. 'Add canonical tags to 12 pages — prevents Google from choosing the wrong version to rank'}"},
71
+ {"label": "Generate {missing_schema_type} JSON-LD markup", "description": "I'll produce copy-paste structured data for your {page_type} — takes 2 minutes to add"},
72
+ {"label": "Deep-dive into {lowest_category} ({score}/100)", "description": "Worst area — I'll give you implementation-ready fixes for every finding"},
73
+ {"label": "Analyze a specific page in depth", "description": "6-dimension report card on your most important page — homepage, pricing, or top landing page"}
74
+ ]
75
+ }]</parameter>
76
+ </invoke>
77
+ ```
78
+
79
+ Customize every option — don't show schema option if schema scored 90+. Don't show the page analysis if they specifically said they want site-wide fixes.
80
+
81
+ ## Output
82
+
83
+ SEO Health Score (0–100) with per-category scores. Prioritized action plan (P0–P3). Business-type-specific recommendations. Baseline for tracking improvement over time.
84
+
85
+ ## Fallbacks
86
+
87
+ **If AskUserQuestion is unavailable:**
88
+ Present options as a numbered list. Example:
89
+
90
+ ```
91
+ What would you like to tackle first?
92
+ 1. Fix the P0 issues now
93
+ 2. Generate missing schema markup
94
+ 3. Deep-dive into the lowest-scoring category
95
+ ```
96
+
97
+ **If agent spawning is unavailable:**
98
+ Run each analysis inline sequentially using the reference files in `references/`. Consolidate into the same output format — same result, just slower.