ac-framework 1.6.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +299 -185
- package/bin/postinstall.js +8 -1
- package/framework/.agent/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.agent/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.agent/skills/brainstorming/SKILL.md +266 -38
- package/framework/.agent/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.agent/skills/code-review/SKILL.md +250 -0
- package/framework/.agent/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.agent/skills/documentation/SKILL.md +441 -0
- package/framework/.agent/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.agent/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.agent/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.agent/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.agent/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.agent/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.agent/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.agent/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.agent/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.agent/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.agent/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.agent/skills/testing-qa/SKILL.md +249 -0
- package/framework/.agent/workflows/ac-lite.md +192 -0
- package/framework/.agent/workflows/ac.md +402 -177
- package/framework/.amazonq/prompts/ac-lite.md +192 -0
- package/framework/.amazonq/prompts/ac.md +402 -177
- package/framework/.amazonq/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.amazonq/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.amazonq/skills/brainstorming/SKILL.md +266 -38
- package/framework/.amazonq/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.amazonq/skills/code-review/SKILL.md +250 -0
- package/framework/.amazonq/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.amazonq/skills/documentation/SKILL.md +441 -0
- package/framework/.amazonq/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.amazonq/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.amazonq/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.amazonq/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.amazonq/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.amazonq/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.amazonq/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.amazonq/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.amazonq/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.amazonq/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.amazonq/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.amazonq/skills/testing-qa/SKILL.md +249 -0
- package/framework/.antigravity/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.antigravity/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.antigravity/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.antigravity/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.antigravity/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.antigravity/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.antigravity/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.antigravity/skills/brainstorming/SKILL.md +282 -0
- package/framework/.antigravity/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.antigravity/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.antigravity/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.antigravity/skills/code-review/SKILL.md +250 -0
- package/framework/.antigravity/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.antigravity/skills/documentation/SKILL.md +441 -0
- package/framework/.antigravity/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.antigravity/skills/interface-design/SKILL.md +310 -0
- package/framework/.antigravity/skills/interface-design/references/example.md +86 -0
- package/framework/.antigravity/skills/interface-design/references/principles.md +235 -0
- package/framework/.antigravity/skills/interface-design/references/validation.md +48 -0
- package/framework/.antigravity/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.antigravity/skills/openspec-apply-change/SKILL.md +172 -0
- package/framework/.antigravity/skills/openspec-archive-change/SKILL.md +130 -0
- package/framework/.antigravity/skills/openspec-bulk-archive-change/SKILL.md +262 -0
- package/framework/.antigravity/skills/openspec-continue-change/SKILL.md +134 -0
- package/framework/.antigravity/skills/openspec-explore/SKILL.md +306 -0
- package/framework/.antigravity/skills/openspec-ff-change/SKILL.md +117 -0
- package/framework/.antigravity/skills/openspec-new-change/SKILL.md +90 -0
- package/framework/.antigravity/skills/openspec-onboard/SKILL.md +529 -0
- package/framework/.antigravity/skills/openspec-sync-specs/SKILL.md +154 -0
- package/framework/.antigravity/skills/openspec-verify-change/SKILL.md +184 -0
- package/framework/.antigravity/skills/performance-optimizer/SKILL.md +43 -0
- package/framework/.antigravity/skills/project-constitution/SKILL.md +66 -0
- package/framework/.antigravity/skills/project-index/SKILL.md +234 -0
- package/framework/.antigravity/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.antigravity/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.antigravity/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.antigravity/skills/requirement-checklist/SKILL.md +90 -0
- package/framework/.antigravity/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.antigravity/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.antigravity/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.antigravity/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.antigravity/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.antigravity/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.antigravity/skills/skill-writer/SKILL.md +385 -0
- package/framework/.antigravity/skills/spec-analysis/SKILL.md +65 -0
- package/framework/.antigravity/skills/spec-clarification/SKILL.md +73 -0
- package/framework/.antigravity/skills/sync-index/SKILL.md +35 -0
- package/framework/.antigravity/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.antigravity/skills/test-generator/SKILL.md +41 -0
- package/framework/.antigravity/skills/testing-qa/SKILL.md +249 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/AGENTS.md +2934 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/SKILL.md +136 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/framework/.antigravity/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
- package/framework/.antigravity/workflows/ac-lite.md +192 -0
- package/framework/.antigravity/workflows/ac.md +486 -0
- package/framework/.augment/commands/ac-lite.md +192 -0
- package/framework/.augment/commands/ac.md +402 -177
- package/framework/.augment/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.augment/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.augment/skills/brainstorming/SKILL.md +266 -38
- package/framework/.augment/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.augment/skills/code-review/SKILL.md +250 -0
- package/framework/.augment/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.augment/skills/documentation/SKILL.md +441 -0
- package/framework/.augment/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.augment/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.augment/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.augment/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.augment/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.augment/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.augment/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.augment/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.augment/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.augment/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.augment/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.augment/skills/testing-qa/SKILL.md +249 -0
- package/framework/.claude/commands/opsx/ac-lite.md +192 -0
- package/framework/.claude/commands/opsx/ac.md +402 -177
- package/framework/.claude/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.claude/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.claude/skills/brainstorming/SKILL.md +266 -38
- package/framework/.claude/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.claude/skills/code-review/SKILL.md +250 -0
- package/framework/.claude/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.claude/skills/documentation/SKILL.md +441 -0
- package/framework/.claude/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.claude/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.claude/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.claude/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.claude/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.claude/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.claude/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.claude/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.claude/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.claude/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.claude/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.claude/skills/testing-qa/SKILL.md +249 -0
- package/framework/.cline/commands/opsx/ac-lite.md +192 -0
- package/framework/.cline/commands/opsx/ac.md +486 -0
- package/framework/.cline/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.cline/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.cline/skills/brainstorming/SKILL.md +266 -38
- package/framework/.cline/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.cline/skills/code-review/SKILL.md +250 -0
- package/framework/.cline/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.cline/skills/documentation/SKILL.md +441 -0
- package/framework/.cline/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.cline/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.cline/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.cline/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.cline/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.cline/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.cline/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.cline/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.cline/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.cline/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.cline/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.cline/skills/testing-qa/SKILL.md +249 -0
- package/framework/.clinerules/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.clinerules/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.clinerules/skills/brainstorming/SKILL.md +266 -38
- package/framework/.clinerules/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.clinerules/skills/code-review/SKILL.md +250 -0
- package/framework/.clinerules/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.clinerules/skills/documentation/SKILL.md +441 -0
- package/framework/.clinerules/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.clinerules/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.clinerules/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.clinerules/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.clinerules/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.clinerules/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.clinerules/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.clinerules/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.clinerules/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.clinerules/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.clinerules/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.clinerules/skills/testing-qa/SKILL.md +249 -0
- package/framework/.clinerules/workflows/ac-lite.md +192 -0
- package/framework/.clinerules/workflows/ac.md +402 -177
- package/framework/.codebuddy/commands/opsx/ac-lite.md +192 -0
- package/framework/.codebuddy/commands/opsx/ac.md +402 -177
- package/framework/.codebuddy/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.codebuddy/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.codebuddy/skills/brainstorming/SKILL.md +266 -38
- package/framework/.codebuddy/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.codebuddy/skills/code-review/SKILL.md +250 -0
- package/framework/.codebuddy/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.codebuddy/skills/documentation/SKILL.md +441 -0
- package/framework/.codebuddy/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.codebuddy/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.codebuddy/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.codebuddy/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.codebuddy/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.codebuddy/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.codebuddy/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.codebuddy/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.codebuddy/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.codebuddy/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.codebuddy/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.codebuddy/skills/testing-qa/SKILL.md +249 -0
- package/framework/.codex/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.codex/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.codex/skills/brainstorming/SKILL.md +266 -38
- package/framework/.codex/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.codex/skills/code-review/SKILL.md +250 -0
- package/framework/.codex/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.codex/skills/documentation/SKILL.md +441 -0
- package/framework/.codex/skills/main-skill/SKILL.md +455 -0
- package/framework/.codex/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.codex/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.codex/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.codex/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.codex/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.codex/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.codex/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.codex/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.codex/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.codex/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.codex/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.codex/skills/testing-qa/SKILL.md +249 -0
- package/framework/.continue/prompts/ac-lite.md +192 -0
- package/framework/.continue/prompts/ac.md +486 -0
- package/framework/.continue/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.continue/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.continue/skills/brainstorming/SKILL.md +266 -38
- package/framework/.continue/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.continue/skills/code-review/SKILL.md +250 -0
- package/framework/.continue/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.continue/skills/documentation/SKILL.md +441 -0
- package/framework/.continue/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.continue/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.continue/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.continue/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.continue/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.continue/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.continue/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.continue/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.continue/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.continue/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.continue/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.continue/skills/testing-qa/SKILL.md +249 -0
- package/framework/.cospec/openspec/commands/ac-lite.md +192 -0
- package/framework/.cospec/openspec/commands/ac.md +402 -177
- package/framework/.cospec/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.cospec/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.cospec/skills/brainstorming/SKILL.md +266 -38
- package/framework/.cospec/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.cospec/skills/code-review/SKILL.md +250 -0
- package/framework/.cospec/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.cospec/skills/documentation/SKILL.md +441 -0
- package/framework/.cospec/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.cospec/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.cospec/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.cospec/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.cospec/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.cospec/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.cospec/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.cospec/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.cospec/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.cospec/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.cospec/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.cospec/skills/testing-qa/SKILL.md +249 -0
- package/framework/.crush/commands/opsx/ac-lite.md +192 -0
- package/framework/.crush/commands/opsx/ac.md +402 -177
- package/framework/.crush/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.crush/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.crush/skills/brainstorming/SKILL.md +266 -38
- package/framework/.crush/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.crush/skills/code-review/SKILL.md +250 -0
- package/framework/.crush/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.crush/skills/documentation/SKILL.md +441 -0
- package/framework/.crush/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.crush/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.crush/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.crush/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.crush/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.crush/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.crush/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.crush/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.crush/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.crush/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.crush/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.crush/skills/testing-qa/SKILL.md +249 -0
- package/framework/.cursor/commands/ac-lite.md +192 -0
- package/framework/.cursor/commands/ac.md +402 -177
- package/framework/.cursor/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.cursor/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.cursor/skills/brainstorming/SKILL.md +266 -38
- package/framework/.cursor/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.cursor/skills/code-review/SKILL.md +250 -0
- package/framework/.cursor/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.cursor/skills/documentation/SKILL.md +441 -0
- package/framework/.cursor/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.cursor/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.cursor/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.cursor/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.cursor/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.cursor/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.cursor/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.cursor/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.cursor/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.cursor/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.cursor/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.cursor/skills/testing-qa/SKILL.md +249 -0
- package/framework/.factory/commands/ac-lite.md +192 -0
- package/framework/.factory/commands/ac.md +402 -177
- package/framework/.factory/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.factory/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.factory/skills/brainstorming/SKILL.md +266 -38
- package/framework/.factory/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.factory/skills/code-review/SKILL.md +250 -0
- package/framework/.factory/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.factory/skills/documentation/SKILL.md +441 -0
- package/framework/.factory/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.factory/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.factory/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.factory/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.factory/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.factory/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.factory/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.factory/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.factory/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.factory/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.factory/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.factory/skills/testing-qa/SKILL.md +249 -0
- package/framework/.gemini/commands/opsx/ac-lite.md +192 -0
- package/framework/.gemini/commands/opsx/ac.md +486 -0
- package/framework/.gemini/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.gemini/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.gemini/skills/brainstorming/SKILL.md +266 -38
- package/framework/.gemini/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.gemini/skills/code-review/SKILL.md +250 -0
- package/framework/.gemini/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.gemini/skills/documentation/SKILL.md +441 -0
- package/framework/.gemini/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.gemini/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.gemini/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.gemini/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.gemini/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.gemini/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.gemini/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.gemini/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.gemini/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.gemini/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.gemini/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.gemini/skills/testing-qa/SKILL.md +249 -0
- package/framework/.github/prompts/ac-lite.md +192 -0
- package/framework/.github/prompts/ac.md +486 -0
- package/framework/.github/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.github/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.github/skills/brainstorming/SKILL.md +266 -38
- package/framework/.github/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.github/skills/code-review/SKILL.md +250 -0
- package/framework/.github/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.github/skills/documentation/SKILL.md +441 -0
- package/framework/.github/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.github/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.github/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.github/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.github/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.github/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.github/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.github/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.github/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.github/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.github/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.github/skills/testing-qa/SKILL.md +249 -0
- package/framework/.iflow/commands/ac-lite.md +192 -0
- package/framework/.iflow/commands/ac.md +402 -177
- package/framework/.iflow/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.iflow/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.iflow/skills/brainstorming/SKILL.md +266 -38
- package/framework/.iflow/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.iflow/skills/code-review/SKILL.md +250 -0
- package/framework/.iflow/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.iflow/skills/documentation/SKILL.md +441 -0
- package/framework/.iflow/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.iflow/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.iflow/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.iflow/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.iflow/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.iflow/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.iflow/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.iflow/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.iflow/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.iflow/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.iflow/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.iflow/skills/testing-qa/SKILL.md +249 -0
- package/framework/.kilocode/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.kilocode/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.kilocode/skills/brainstorming/SKILL.md +266 -38
- package/framework/.kilocode/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.kilocode/skills/code-review/SKILL.md +250 -0
- package/framework/.kilocode/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.kilocode/skills/documentation/SKILL.md +441 -0
- package/framework/.kilocode/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.kilocode/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.kilocode/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.kilocode/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.kilocode/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.kilocode/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.kilocode/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.kilocode/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.kilocode/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.kilocode/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.kilocode/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.kilocode/skills/testing-qa/SKILL.md +249 -0
- package/framework/.kilocode/workflows/ac-lite.md +192 -0
- package/framework/.kilocode/workflows/ac.md +402 -177
- package/framework/.kimi/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.kimi/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.kimi/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.kimi/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.kimi/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.kimi/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.kimi/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.kimi/skills/brainstorming/SKILL.md +282 -0
- package/framework/.kimi/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.kimi/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.kimi/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.kimi/skills/code-review/SKILL.md +250 -0
- package/framework/.kimi/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.kimi/skills/documentation/SKILL.md +441 -0
- package/framework/.kimi/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.kimi/skills/interface-design/SKILL.md +310 -0
- package/framework/.kimi/skills/interface-design/references/example.md +86 -0
- package/framework/.kimi/skills/interface-design/references/principles.md +235 -0
- package/framework/.kimi/skills/interface-design/references/validation.md +48 -0
- package/framework/.kimi/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.kimi/skills/openspec-apply-change/SKILL.md +172 -0
- package/framework/.kimi/skills/openspec-archive-change/SKILL.md +130 -0
- package/framework/.kimi/skills/openspec-bulk-archive-change/SKILL.md +262 -0
- package/framework/.kimi/skills/openspec-continue-change/SKILL.md +134 -0
- package/framework/.kimi/skills/openspec-explore/SKILL.md +306 -0
- package/framework/.kimi/skills/openspec-ff-change/SKILL.md +117 -0
- package/framework/.kimi/skills/openspec-new-change/SKILL.md +90 -0
- package/framework/.kimi/skills/openspec-onboard/SKILL.md +529 -0
- package/framework/.kimi/skills/openspec-sync-specs/SKILL.md +154 -0
- package/framework/.kimi/skills/openspec-verify-change/SKILL.md +184 -0
- package/framework/.kimi/skills/performance-optimizer/SKILL.md +43 -0
- package/framework/.kimi/skills/project-constitution/SKILL.md +66 -0
- package/framework/.kimi/skills/project-index/SKILL.md +234 -0
- package/framework/.kimi/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.kimi/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.kimi/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.kimi/skills/requirement-checklist/SKILL.md +90 -0
- package/framework/.kimi/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.kimi/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.kimi/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.kimi/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.kimi/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.kimi/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.kimi/skills/skill-writer/SKILL.md +385 -0
- package/framework/.kimi/skills/spec-analysis/SKILL.md +65 -0
- package/framework/.kimi/skills/spec-clarification/SKILL.md +73 -0
- package/framework/.kimi/skills/sync-index/SKILL.md +35 -0
- package/framework/.kimi/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.kimi/skills/test-generator/SKILL.md +41 -0
- package/framework/.kimi/skills/testing-qa/SKILL.md +249 -0
- package/framework/.kimi/skills/vercel-react-best-practices/AGENTS.md +2934 -0
- package/framework/.kimi/skills/vercel-react-best-practices/SKILL.md +136 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/framework/.kimi/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
- package/framework/.kimi/workflows/ac-lite.md +192 -0
- package/framework/.kimi/workflows/ac.md +486 -0
- package/framework/.kimi/workflows/opsx-apply.md +149 -0
- package/framework/.kimi/workflows/opsx-archive.md +154 -0
- package/framework/.kimi/workflows/opsx-bulk-archive.md +239 -0
- package/framework/.kimi/workflows/opsx-continue.md +111 -0
- package/framework/.kimi/workflows/opsx-explore.md +171 -0
- package/framework/.kimi/workflows/opsx-ff.md +91 -0
- package/framework/.kimi/workflows/opsx-new.md +66 -0
- package/framework/.kimi/workflows/opsx-onboard.md +522 -0
- package/framework/.kimi/workflows/opsx-sync.md +131 -0
- package/framework/.kimi/workflows/opsx-verify.md +161 -0
- package/framework/.opencode/command/ac-lite.md +192 -0
- package/framework/.opencode/command/ac.md +402 -177
- package/framework/.opencode/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.opencode/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.opencode/skills/brainstorming/SKILL.md +266 -38
- package/framework/.opencode/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.opencode/skills/code-review/SKILL.md +250 -0
- package/framework/.opencode/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.opencode/skills/documentation/SKILL.md +441 -0
- package/framework/.opencode/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.opencode/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.opencode/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.opencode/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.opencode/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.opencode/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.opencode/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.opencode/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.opencode/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.opencode/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.opencode/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.opencode/skills/testing-qa/SKILL.md +249 -0
- package/framework/.qoder/commands/opsx/ac-lite.md +192 -0
- package/framework/.qoder/commands/opsx/ac.md +402 -177
- package/framework/.qoder/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.qoder/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.qoder/skills/brainstorming/SKILL.md +266 -38
- package/framework/.qoder/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.qoder/skills/code-review/SKILL.md +250 -0
- package/framework/.qoder/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.qoder/skills/documentation/SKILL.md +441 -0
- package/framework/.qoder/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.qoder/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.qoder/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.qoder/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.qoder/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.qoder/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.qoder/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.qoder/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.qoder/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.qoder/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.qoder/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.qoder/skills/testing-qa/SKILL.md +249 -0
- package/framework/.qwen/commands/ac-lite.md +192 -0
- package/framework/.qwen/commands/ac.md +402 -177
- package/framework/.qwen/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.qwen/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.qwen/skills/brainstorming/SKILL.md +266 -38
- package/framework/.qwen/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.qwen/skills/code-review/SKILL.md +250 -0
- package/framework/.qwen/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.qwen/skills/documentation/SKILL.md +441 -0
- package/framework/.qwen/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.qwen/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.qwen/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.qwen/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.qwen/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.qwen/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.qwen/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.qwen/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.qwen/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.qwen/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.qwen/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.qwen/skills/testing-qa/SKILL.md +249 -0
- package/framework/.roo/commands/ac-lite.md +192 -0
- package/framework/.roo/commands/ac.md +402 -177
- package/framework/.roo/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.roo/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.roo/skills/brainstorming/SKILL.md +266 -38
- package/framework/.roo/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.roo/skills/code-review/SKILL.md +250 -0
- package/framework/.roo/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.roo/skills/documentation/SKILL.md +441 -0
- package/framework/.roo/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.roo/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.roo/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.roo/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.roo/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.roo/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.roo/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.roo/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.roo/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.roo/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.roo/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.roo/skills/testing-qa/SKILL.md +249 -0
- package/framework/.trae/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.trae/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.trae/skills/brainstorming/SKILL.md +266 -38
- package/framework/.trae/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.trae/skills/code-review/SKILL.md +250 -0
- package/framework/.trae/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.trae/skills/documentation/SKILL.md +441 -0
- package/framework/.trae/skills/main-skill/SKILL.md +455 -0
- package/framework/.trae/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.trae/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.trae/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.trae/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.trae/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.trae/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.trae/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.trae/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.trae/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.trae/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.trae/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.trae/skills/testing-qa/SKILL.md +249 -0
- package/framework/.windsurf/skills/acfm-memory/SKILL.md +312 -0
- package/framework/.windsurf/skills/acfm-spec-workflow/SKILL.md +269 -0
- package/framework/.windsurf/skills/brainstorming/SKILL.md +266 -38
- package/framework/.windsurf/skills/ci-deploy/SKILL.md +501 -0
- package/framework/.windsurf/skills/code-review/SKILL.md +250 -0
- package/framework/.windsurf/skills/context-synthesizer/SKILL.md +322 -0
- package/framework/.windsurf/skills/documentation/SKILL.md +441 -0
- package/framework/.windsurf/skills/microtask-decomposition/SKILL.md +368 -0
- package/framework/.windsurf/skills/openspec-apply-change/SKILL.md +23 -7
- package/framework/.windsurf/skills/openspec-archive-change/SKILL.md +22 -6
- package/framework/.windsurf/skills/openspec-bulk-archive-change/SKILL.md +25 -9
- package/framework/.windsurf/skills/openspec-continue-change/SKILL.md +20 -4
- package/framework/.windsurf/skills/openspec-explore/SKILL.md +17 -1
- package/framework/.windsurf/skills/openspec-ff-change/SKILL.md +21 -5
- package/framework/.windsurf/skills/openspec-new-change/SKILL.md +23 -7
- package/framework/.windsurf/skills/openspec-sync-specs/SKILL.md +20 -4
- package/framework/.windsurf/skills/openspec-verify-change/SKILL.md +24 -8
- package/framework/.windsurf/skills/research-retrieval/SKILL.md +357 -0
- package/framework/.windsurf/skills/testing-qa/SKILL.md +249 -0
- package/framework/.windsurf/workflows/ac-lite.md +192 -0
- package/framework/.windsurf/workflows/ac.md +402 -177
- package/framework/AGENTS.md +428 -135
- package/framework/CLAUDE.md +428 -135
- package/framework/GEMINI.md +428 -135
- package/framework/copilot-instructions.md +429 -136
- package/package.json +2 -1
- package/src/cli.js +2 -0
- package/src/commands/init.js +10 -12
- package/src/commands/memory.js +772 -0
- package/src/commands/spec.js +40 -8
- package/src/config/constants.js +10 -2
- package/src/config/ide-mapping.js +1 -0
- package/src/index.js +46 -0
- package/src/memory/autosave.js +382 -0
- package/src/memory/database.js +178 -0
- package/src/memory/engine.js +727 -0
- package/src/memory/index.js +62 -0
- package/src/memory/utils.js +128 -0
- package/src/services/spec-engine.js +170 -26
- package/src/ui/animations.js +82 -0
|
@@ -15,7 +15,23 @@ Fast-forward through artifact creation - generate everything needed to start imp
|
|
|
15
15
|
|
|
16
16
|
**Steps**
|
|
17
17
|
|
|
18
|
-
1. **
|
|
18
|
+
1. **Verify project initialization**
|
|
19
|
+
|
|
20
|
+
Check if the project is initialized:
|
|
21
|
+
```bash
|
|
22
|
+
acfm spec status --json
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**If not initialized** (`"initialized": false`):
|
|
26
|
+
```bash
|
|
27
|
+
acfm spec init
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**If initialized** (`"initialized": true`):
|
|
31
|
+
- Note the `dirName` field (either `.acfm` or `openspec`)
|
|
32
|
+
- Continue with the workflow
|
|
33
|
+
|
|
34
|
+
2. **If no clear input provided, ask what they want to build**
|
|
19
35
|
|
|
20
36
|
Use the **AskUserQuestion tool** (open-ended, no preset options) to ask:
|
|
21
37
|
> "What change do you want to work on? Describe what you want to build or fix."
|
|
@@ -24,13 +40,13 @@ Fast-forward through artifact creation - generate everything needed to start imp
|
|
|
24
40
|
|
|
25
41
|
**IMPORTANT**: Do NOT proceed without understanding what the user wants to build.
|
|
26
42
|
|
|
27
|
-
|
|
43
|
+
3. **Create the change directory**
|
|
28
44
|
```bash
|
|
29
45
|
acfm spec new "<name>"
|
|
30
46
|
```
|
|
31
47
|
This creates a scaffolded change at `openspec/changes/<name>/`.
|
|
32
48
|
|
|
33
|
-
|
|
49
|
+
4. **Get the artifact build order**
|
|
34
50
|
```bash
|
|
35
51
|
acfm spec status --change "<name>" --json
|
|
36
52
|
```
|
|
@@ -38,7 +54,7 @@ Fast-forward through artifact creation - generate everything needed to start imp
|
|
|
38
54
|
- `applyRequires`: array of artifact IDs needed before implementation (e.g., `["tasks"]`)
|
|
39
55
|
- `artifacts`: list of all artifacts with their status and dependencies
|
|
40
56
|
|
|
41
|
-
|
|
57
|
+
5. **Create artifacts in sequence until apply-ready**
|
|
42
58
|
|
|
43
59
|
Use the **TodoWrite tool** to track progress through the artifacts.
|
|
44
60
|
|
|
@@ -70,7 +86,7 @@ Fast-forward through artifact creation - generate everything needed to start imp
|
|
|
70
86
|
- Use **AskUserQuestion tool** to clarify
|
|
71
87
|
- Then continue with creation
|
|
72
88
|
|
|
73
|
-
|
|
89
|
+
6. **Show final status**
|
|
74
90
|
```bash
|
|
75
91
|
acfm spec status --change "<name>"
|
|
76
92
|
```
|
|
@@ -15,7 +15,23 @@ Start a new change using the experimental artifact-driven approach.
|
|
|
15
15
|
|
|
16
16
|
**Steps**
|
|
17
17
|
|
|
18
|
-
1. **
|
|
18
|
+
1. **Verify project initialization**
|
|
19
|
+
|
|
20
|
+
Check if the project is initialized:
|
|
21
|
+
```bash
|
|
22
|
+
acfm spec status --json
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**If not initialized** (`"initialized": false`):
|
|
26
|
+
```bash
|
|
27
|
+
acfm spec init
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**If initialized** (`"initialized": true`):
|
|
31
|
+
- Note the `dirName` field (either `.acfm` or `openspec`)
|
|
32
|
+
- Continue with the workflow
|
|
33
|
+
|
|
34
|
+
2. **If no clear input provided, ask what they want to build**
|
|
19
35
|
|
|
20
36
|
Use the **AskUserQuestion tool** (open-ended, no preset options) to ask:
|
|
21
37
|
> "What change do you want to work on? Describe what you want to build or fix."
|
|
@@ -24,7 +40,7 @@ Start a new change using the experimental artifact-driven approach.
|
|
|
24
40
|
|
|
25
41
|
**IMPORTANT**: Do NOT proceed without understanding what the user wants to build.
|
|
26
42
|
|
|
27
|
-
|
|
43
|
+
3. **Determine the workflow schema**
|
|
28
44
|
|
|
29
45
|
Use the default schema (omit `--schema`) unless the user explicitly requests a different workflow.
|
|
30
46
|
|
|
@@ -34,20 +50,20 @@ Start a new change using the experimental artifact-driven approach.
|
|
|
34
50
|
|
|
35
51
|
**Otherwise**: Omit `--schema` to use the default.
|
|
36
52
|
|
|
37
|
-
|
|
53
|
+
4. **Create the change directory**
|
|
38
54
|
```bash
|
|
39
55
|
acfm spec new "<name>"
|
|
40
56
|
```
|
|
41
57
|
Add `--schema <name>` only if the user requested a specific workflow.
|
|
42
|
-
This creates a scaffolded change at `
|
|
58
|
+
This creates a scaffolded change at `{specDir}/changes/<name>/` (where {specDir} is either `.acfm` or `openspec` as detected by CLI) with the selected schema.
|
|
43
59
|
|
|
44
|
-
|
|
60
|
+
5. **Show the artifact status**
|
|
45
61
|
```bash
|
|
46
62
|
acfm spec status --change "<name>"
|
|
47
63
|
```
|
|
48
64
|
This shows which artifacts need to be created and which are ready (dependencies satisfied).
|
|
49
65
|
|
|
50
|
-
|
|
66
|
+
6. **Get instructions for the first artifact**
|
|
51
67
|
The first artifact depends on the schema (e.g., `proposal` for spec-driven).
|
|
52
68
|
Check the status output to find the first artifact with status "ready".
|
|
53
69
|
```bash
|
|
@@ -55,7 +71,7 @@ Start a new change using the experimental artifact-driven approach.
|
|
|
55
71
|
```
|
|
56
72
|
This outputs the template and context for creating the first artifact.
|
|
57
73
|
|
|
58
|
-
|
|
74
|
+
7. **STOP and wait for user direction**
|
|
59
75
|
|
|
60
76
|
**Output**
|
|
61
77
|
|
|
@@ -17,7 +17,23 @@ This is an **agent-driven** operation - you will read delta specs and directly e
|
|
|
17
17
|
|
|
18
18
|
**Steps**
|
|
19
19
|
|
|
20
|
-
1. **
|
|
20
|
+
1. **Verify project initialization**
|
|
21
|
+
|
|
22
|
+
Check if the project is initialized:
|
|
23
|
+
```bash
|
|
24
|
+
acfm spec status --json
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**If not initialized** (`"initialized": false`):
|
|
28
|
+
```bash
|
|
29
|
+
acfm spec init
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**If initialized** (`"initialized": true`):
|
|
33
|
+
- Note the `dirName` field (either `.acfm` or `openspec`)
|
|
34
|
+
- Continue with the workflow
|
|
35
|
+
|
|
36
|
+
2. **If no change name provided, prompt for selection**
|
|
21
37
|
|
|
22
38
|
Run `acfm spec list --json` to get available changes. Use the **AskUserQuestion tool** to let the user select.
|
|
23
39
|
|
|
@@ -25,7 +41,7 @@ This is an **agent-driven** operation - you will read delta specs and directly e
|
|
|
25
41
|
|
|
26
42
|
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
27
43
|
|
|
28
|
-
|
|
44
|
+
3. **Find delta specs**
|
|
29
45
|
|
|
30
46
|
Look for delta spec files in `openspec/changes/<name>/specs/*/spec.md`.
|
|
31
47
|
|
|
@@ -37,7 +53,7 @@ This is an **agent-driven** operation - you will read delta specs and directly e
|
|
|
37
53
|
|
|
38
54
|
If no delta specs found, inform user and stop.
|
|
39
55
|
|
|
40
|
-
|
|
56
|
+
4. **For each delta spec, apply changes to main specs**
|
|
41
57
|
|
|
42
58
|
For each capability with a delta spec at `openspec/changes/<name>/specs/<capability>/spec.md`:
|
|
43
59
|
|
|
@@ -70,7 +86,7 @@ This is an **agent-driven** operation - you will read delta specs and directly e
|
|
|
70
86
|
- Add Purpose section (can be brief, mark as TBD)
|
|
71
87
|
- Add Requirements section with the ADDED requirements
|
|
72
88
|
|
|
73
|
-
|
|
89
|
+
5. **Show summary**
|
|
74
90
|
|
|
75
91
|
After applying all changes, summarize:
|
|
76
92
|
- Which capabilities were updated
|
|
@@ -15,7 +15,23 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
15
15
|
|
|
16
16
|
**Steps**
|
|
17
17
|
|
|
18
|
-
1. **
|
|
18
|
+
1. **Verify project initialization**
|
|
19
|
+
|
|
20
|
+
Check if the project is initialized:
|
|
21
|
+
```bash
|
|
22
|
+
acfm spec status --json
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**If not initialized** (`"initialized": false`):
|
|
26
|
+
```bash
|
|
27
|
+
acfm spec init
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**If initialized** (`"initialized": true`):
|
|
31
|
+
- Note the `dirName` field (either `.acfm` or `openspec`)
|
|
32
|
+
- Continue with the workflow
|
|
33
|
+
|
|
34
|
+
2. **If no change name provided, prompt for selection**
|
|
19
35
|
|
|
20
36
|
Run `acfm spec list --json` to get available changes. Use the **AskUserQuestion tool** to let the user select.
|
|
21
37
|
|
|
@@ -25,7 +41,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
25
41
|
|
|
26
42
|
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
27
43
|
|
|
28
|
-
|
|
44
|
+
3. **Check status to understand the schema**
|
|
29
45
|
```bash
|
|
30
46
|
acfm spec status --change "<name>" --json
|
|
31
47
|
```
|
|
@@ -33,7 +49,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
33
49
|
- `schemaName`: The workflow being used (e.g., "spec-driven")
|
|
34
50
|
- Which artifacts exist for this change
|
|
35
51
|
|
|
36
|
-
|
|
52
|
+
4. **Get the change directory and load artifacts**
|
|
37
53
|
|
|
38
54
|
```bash
|
|
39
55
|
acfm spec instructions apply --change "<name>" --json
|
|
@@ -41,7 +57,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
41
57
|
|
|
42
58
|
This returns the change directory and context files. Read all available artifacts from `contextFiles`.
|
|
43
59
|
|
|
44
|
-
|
|
60
|
+
5. **Initialize verification report structure**
|
|
45
61
|
|
|
46
62
|
Create a report structure with three dimensions:
|
|
47
63
|
- **Completeness**: Track tasks and spec coverage
|
|
@@ -50,7 +66,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
50
66
|
|
|
51
67
|
Each dimension can have CRITICAL, WARNING, or SUGGESTION issues.
|
|
52
68
|
|
|
53
|
-
|
|
69
|
+
6. **Verify Completeness**
|
|
54
70
|
|
|
55
71
|
**Task Completion**:
|
|
56
72
|
- If tasks.md exists in contextFiles, read it
|
|
@@ -70,7 +86,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
70
86
|
- Add CRITICAL issue: "Requirement not found: <requirement name>"
|
|
71
87
|
- Recommendation: "Implement requirement X: <description>"
|
|
72
88
|
|
|
73
|
-
|
|
89
|
+
7. **Verify Correctness**
|
|
74
90
|
|
|
75
91
|
**Requirement Implementation Mapping**:
|
|
76
92
|
- For each requirement from delta specs:
|
|
@@ -89,7 +105,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
89
105
|
- Add WARNING: "Scenario not covered: <scenario name>"
|
|
90
106
|
- Recommendation: "Add test or implementation for scenario: <description>"
|
|
91
107
|
|
|
92
|
-
|
|
108
|
+
8. **Verify Coherence**
|
|
93
109
|
|
|
94
110
|
**Design Adherence**:
|
|
95
111
|
- If design.md exists in contextFiles:
|
|
@@ -107,7 +123,7 @@ Verify that an implementation matches the change artifacts (specs, tasks, design
|
|
|
107
123
|
- Add SUGGESTION: "Code pattern deviation: <details>"
|
|
108
124
|
- Recommendation: "Consider following project pattern: <example>"
|
|
109
125
|
|
|
110
|
-
|
|
126
|
+
9. **Generate Verification Report**
|
|
111
127
|
|
|
112
128
|
**Summary Scorecard**:
|
|
113
129
|
```
|
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: research-retrieval
|
|
3
|
+
description: Search external documentation (web pages, API docs, papers) and generate useful summaries for development. Use when investigating new technologies, understanding third-party APIs, researching best practices, or gathering information for technical decisions. Reduces hallucinations and expands agent knowledge.
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
author: AC Framework
|
|
7
|
+
version: "1.0"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Research & Retrieval
|
|
11
|
+
|
|
12
|
+
External knowledge search, documentation retrieval, and synthesis for informed development decisions.
|
|
13
|
+
|
|
14
|
+
## When to Use This Skill
|
|
15
|
+
|
|
16
|
+
Use this skill when:
|
|
17
|
+
- Investigating new technologies, libraries, or frameworks
|
|
18
|
+
- Understanding third-party APIs and their capabilities
|
|
19
|
+
- Researching best practices for a specific problem
|
|
20
|
+
- Gathering information for architecture decisions
|
|
21
|
+
- Need to verify facts or current information
|
|
22
|
+
- Exploring solutions to unfamiliar problems
|
|
23
|
+
|
|
24
|
+
## Instructions
|
|
25
|
+
|
|
26
|
+
### Step 1: Define Research Goals
|
|
27
|
+
|
|
28
|
+
1. **Clarify what you need to know**:
|
|
29
|
+
- Specific technical question
|
|
30
|
+
- Comparison of technologies
|
|
31
|
+
- Implementation approach
|
|
32
|
+
- Best practices
|
|
33
|
+
|
|
34
|
+
2. **Identify sources**:
|
|
35
|
+
- Official documentation
|
|
36
|
+
- API references
|
|
37
|
+
- Technical blogs
|
|
38
|
+
- Research papers
|
|
39
|
+
- GitHub repositories
|
|
40
|
+
- Stack Overflow
|
|
41
|
+
|
|
42
|
+
3. **Set scope boundaries**:
|
|
43
|
+
- Time period (recent vs. historical)
|
|
44
|
+
- Version specificity
|
|
45
|
+
- Language/framework constraints
|
|
46
|
+
|
|
47
|
+
### Step 2: Search and Retrieve
|
|
48
|
+
|
|
49
|
+
**Official Documentation**:
|
|
50
|
+
```
|
|
51
|
+
Priority sources:
|
|
52
|
+
1. Official docs (docs.{service}.com)
|
|
53
|
+
2. API reference
|
|
54
|
+
3. Getting started guides
|
|
55
|
+
4. Best practices
|
|
56
|
+
5. Changelog/release notes
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**Technical Blogs & Articles**:
|
|
60
|
+
```
|
|
61
|
+
Quality indicators:
|
|
62
|
+
- Recent publication date
|
|
63
|
+
- Author expertise/credentials
|
|
64
|
+
- Code examples included
|
|
65
|
+
- Community engagement
|
|
66
|
+
- Updated for current versions
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
**Research Papers** (for advanced topics):
|
|
70
|
+
```
|
|
71
|
+
Use when:
|
|
72
|
+
- Novel algorithms needed
|
|
73
|
+
- Performance optimizations
|
|
74
|
+
- Academic foundations
|
|
75
|
+
- Cutting-edge techniques
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**GitHub Repositories**:
|
|
79
|
+
```
|
|
80
|
+
Evaluate by:
|
|
81
|
+
- Stars/forks (popularity)
|
|
82
|
+
- Recent commits (maintenance)
|
|
83
|
+
- Issue resolution (support)
|
|
84
|
+
- Documentation quality
|
|
85
|
+
- Test coverage
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Step 3: Evaluate Sources
|
|
89
|
+
|
|
90
|
+
**Credibility Checklist**:
|
|
91
|
+
- [ ] Authoritative source (official > third-party)
|
|
92
|
+
- [ ] Up-to-date information
|
|
93
|
+
- [ ] Well-explained with examples
|
|
94
|
+
- [ ] Community-validated (comments, issues)
|
|
95
|
+
- [ ] Version compatibility noted
|
|
96
|
+
|
|
97
|
+
**Red Flags**:
|
|
98
|
+
- Outdated documentation
|
|
99
|
+
- Unexplained "magic" solutions
|
|
100
|
+
- No code examples
|
|
101
|
+
- Deprecated approaches
|
|
102
|
+
- Unsupported claims
|
|
103
|
+
|
|
104
|
+
### Step 4: Extract Key Information
|
|
105
|
+
|
|
106
|
+
For each relevant source, extract:
|
|
107
|
+
|
|
108
|
+
```markdown
|
|
109
|
+
## Source: [Title/URL]
|
|
110
|
+
|
|
111
|
+
**Relevance**: [High/Medium/Low]
|
|
112
|
+
**Date**: [Publication date]
|
|
113
|
+
**Version**: [Software version, if applicable]
|
|
114
|
+
|
|
115
|
+
### Key Points
|
|
116
|
+
|
|
117
|
+
1. [Important finding 1]
|
|
118
|
+
2. [Important finding 2]
|
|
119
|
+
3. [Important finding 3]
|
|
120
|
+
|
|
121
|
+
### Code Examples
|
|
122
|
+
|
|
123
|
+
\`\`\`[language]
|
|
124
|
+
// Relevant code snippet
|
|
125
|
+
\`\`\`
|
|
126
|
+
|
|
127
|
+
### Warnings/Caveats
|
|
128
|
+
|
|
129
|
+
- [Known issues or limitations]
|
|
130
|
+
- [Breaking changes]
|
|
131
|
+
- [Performance considerations]
|
|
132
|
+
|
|
133
|
+
### References
|
|
134
|
+
|
|
135
|
+
- [Link 1]
|
|
136
|
+
- [Link 2]
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Step 5: Synthesize Findings
|
|
140
|
+
|
|
141
|
+
**Compare approaches**:
|
|
142
|
+
|
|
143
|
+
```markdown
|
|
144
|
+
## Technology Comparison: [Topic]
|
|
145
|
+
|
|
146
|
+
### Option A: [Technology A]
|
|
147
|
+
|
|
148
|
+
**Pros**:
|
|
149
|
+
- Advantage 1
|
|
150
|
+
- Advantage 2
|
|
151
|
+
|
|
152
|
+
**Cons**:
|
|
153
|
+
- Disadvantage 1
|
|
154
|
+
- Disadvantage 2
|
|
155
|
+
|
|
156
|
+
**Best for**: [Use cases]
|
|
157
|
+
|
|
158
|
+
### Option B: [Technology B]
|
|
159
|
+
|
|
160
|
+
**Pros**:
|
|
161
|
+
- Advantage 1
|
|
162
|
+
- Advantage 2
|
|
163
|
+
|
|
164
|
+
**Cons**:
|
|
165
|
+
- Disadvantage 1
|
|
166
|
+
- Disadvantage 2
|
|
167
|
+
|
|
168
|
+
**Best for**: [Use cases]
|
|
169
|
+
|
|
170
|
+
### Recommendation
|
|
171
|
+
|
|
172
|
+
[Your recommendation with justification]
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
**Synthesize best practices**:
|
|
176
|
+
|
|
177
|
+
```markdown
|
|
178
|
+
## Best Practices: [Topic]
|
|
179
|
+
|
|
180
|
+
Based on [N] sources, consensus on:
|
|
181
|
+
|
|
182
|
+
### Do's
|
|
183
|
+
1. [Recommended approach 1]
|
|
184
|
+
2. [Recommended approach 2]
|
|
185
|
+
|
|
186
|
+
### Don'ts
|
|
187
|
+
1. [Anti-pattern 1]
|
|
188
|
+
2. [Anti-pattern 2]
|
|
189
|
+
|
|
190
|
+
### Trade-offs
|
|
191
|
+
- [Decision point]: [Option A] vs [Option B]
|
|
192
|
+
- Choose A when: [conditions]
|
|
193
|
+
- Choose B when: [conditions]
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
### Step 6: Generate Actionable Steps
|
|
197
|
+
|
|
198
|
+
Convert research into implementation steps:
|
|
199
|
+
|
|
200
|
+
```markdown
|
|
201
|
+
## Implementation Guide: [Topic]
|
|
202
|
+
|
|
203
|
+
### Prerequisites
|
|
204
|
+
- [Requirement 1]
|
|
205
|
+
- [Requirement 2]
|
|
206
|
+
|
|
207
|
+
### Step-by-Step
|
|
208
|
+
|
|
209
|
+
1. **Setup**
|
|
210
|
+
- [Action 1]
|
|
211
|
+
- [Action 2]
|
|
212
|
+
|
|
213
|
+
2. **Configuration**
|
|
214
|
+
- [Action 3]
|
|
215
|
+
- [Action 4]
|
|
216
|
+
|
|
217
|
+
3. **Implementation**
|
|
218
|
+
- [Action 5]
|
|
219
|
+
- [Action 6]
|
|
220
|
+
|
|
221
|
+
4. **Testing**
|
|
222
|
+
- [Action 7]
|
|
223
|
+
|
|
224
|
+
### Common Pitfalls
|
|
225
|
+
- [Pitfall 1] → [Solution]
|
|
226
|
+
- [Pitfall 2] → [Solution]
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### Step 7: Store for Reuse
|
|
230
|
+
|
|
231
|
+
Save findings in `references/` directory:
|
|
232
|
+
|
|
233
|
+
```
|
|
234
|
+
references/
|
|
235
|
+
├── README.md (index of all references)
|
|
236
|
+
├── api/
|
|
237
|
+
│ ├── stripe-api-2024-01.md
|
|
238
|
+
│ └── openai-api-best-practices.md
|
|
239
|
+
├── libraries/
|
|
240
|
+
│ ├── react-server-components.md
|
|
241
|
+
│ └── state-management-comparison.md
|
|
242
|
+
└── patterns/
|
|
243
|
+
├── authentication-patterns.md
|
|
244
|
+
└── caching-strategies.md
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### Step 8: Link to OpenSpec
|
|
248
|
+
|
|
249
|
+
Reference research in specs:
|
|
250
|
+
|
|
251
|
+
```markdown
|
|
252
|
+
## Specification: [Feature]
|
|
253
|
+
|
|
254
|
+
### Research References
|
|
255
|
+
|
|
256
|
+
- [Authentication Patterns](../references/patterns/authentication-patterns.md)
|
|
257
|
+
- [Stripe API Integration](../references/api/stripe-api-2024-01.md)
|
|
258
|
+
|
|
259
|
+
### Decisions Based on Research
|
|
260
|
+
|
|
261
|
+
1. **Use JWT for authentication**
|
|
262
|
+
- Rationale: [Summary of research findings]
|
|
263
|
+
- Sources: [Links to references]
|
|
264
|
+
|
|
265
|
+
2. **Implement Redis caching**
|
|
266
|
+
- Rationale: [Performance benchmarks from research]
|
|
267
|
+
- Sources: [Links to references]
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
## Output Format
|
|
271
|
+
|
|
272
|
+
After research is complete:
|
|
273
|
+
|
|
274
|
+
```
|
|
275
|
+
## Research Summary: [Topic]
|
|
276
|
+
|
|
277
|
+
**Sources Consulted**: [N]
|
|
278
|
+
**Date**: [Research date]
|
|
279
|
+
**Confidence**: [High/Medium/Low]
|
|
280
|
+
|
|
281
|
+
### Executive Summary
|
|
282
|
+
|
|
283
|
+
[2-3 sentence overview of findings]
|
|
284
|
+
|
|
285
|
+
### Key Findings
|
|
286
|
+
|
|
287
|
+
1. [Finding 1 with source]
|
|
288
|
+
2. [Finding 2 with source]
|
|
289
|
+
3. [Finding 3 with source]
|
|
290
|
+
|
|
291
|
+
### Recommendations
|
|
292
|
+
|
|
293
|
+
1. [Actionable recommendation 1]
|
|
294
|
+
2. [Actionable recommendation 2]
|
|
295
|
+
|
|
296
|
+
### Implementation Steps
|
|
297
|
+
|
|
298
|
+
[Step-by-step guide based on research]
|
|
299
|
+
|
|
300
|
+
### References Stored
|
|
301
|
+
|
|
302
|
+
- references/[category]/[filename].md
|
|
303
|
+
- [Link to full research document]
|
|
304
|
+
|
|
305
|
+
### Uncertainties/Gaps
|
|
306
|
+
|
|
307
|
+
- [What still needs investigation]
|
|
308
|
+
- [Questions that remain unanswered]
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
## Guardrails
|
|
312
|
+
|
|
313
|
+
- **Verify critical information** - Cross-reference multiple sources
|
|
314
|
+
- **Check publication dates** - Avoid outdated information
|
|
315
|
+
- **Prefer official docs** - Authoritative over anecdotal
|
|
316
|
+
- **Acknowledge uncertainty** - Be clear when information is incomplete
|
|
317
|
+
- **Document sources** - Always cite where information came from
|
|
318
|
+
- **Focus on actionable info** - Avoid research rabbit holes
|
|
319
|
+
|
|
320
|
+
## Search Strategies
|
|
321
|
+
|
|
322
|
+
**Error Messages**:
|
|
323
|
+
```
|
|
324
|
+
"[exact error message]" + [technology name]
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
**Feature Comparisons**:
|
|
328
|
+
```
|
|
329
|
+
[technology A] vs [technology B] 2024
|
|
330
|
+
[technology A] alternative
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
**Best Practices**:
|
|
334
|
+
```
|
|
335
|
+
[technology] best practices
|
|
336
|
+
[technology] common pitfalls
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
**Implementation Guides**:
|
|
340
|
+
```
|
|
341
|
+
[technology] getting started tutorial
|
|
342
|
+
[technology] example project
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
## Requirements
|
|
346
|
+
|
|
347
|
+
- Web search capability
|
|
348
|
+
- Access to documentation sites
|
|
349
|
+
- Ability to evaluate source credibility
|
|
350
|
+
- Understanding of the domain being researched
|
|
351
|
+
|
|
352
|
+
## See Also
|
|
353
|
+
|
|
354
|
+
- `context-synthesizer` - Integrate research into project context
|
|
355
|
+
- `spec-clarification` - Use research to clarify requirements
|
|
356
|
+
- `documentation` - Document findings
|
|
357
|
+
- `brainstorming` - Generate ideas based on research
|