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
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: microtask-decomposition
|
|
3
|
+
description: Level 2+ task decomposition. Use when a single task from tasks.md is STILL too complex (affects 3+ files or requires multiple logic blocks). Breaks tasks into MICROTASKS (1 file/function each) for granular implementation. NOT for initial task breakdown - OpenSpec already does that.
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
author: AC Framework
|
|
7
|
+
version: "1.0"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Microtask Decomposition
|
|
11
|
+
|
|
12
|
+
**Level 2+ Decomposition: From Tasks to Microtasks**
|
|
13
|
+
|
|
14
|
+
Divide complex tasks from `tasks.md` into atomic, single-file microtasks for granular tracking and implementation.
|
|
15
|
+
|
|
16
|
+
## ⚠️ CRITICAL: When to Use This Skill
|
|
17
|
+
|
|
18
|
+
### Use microtask-decomposition when:
|
|
19
|
+
- A single task from `tasks.md` affects **3+ files**
|
|
20
|
+
- A task requires **multiple distinct logic blocks**
|
|
21
|
+
- You need to **parallelize sub-task execution**
|
|
22
|
+
- A task is estimated at **>2 hours** of work
|
|
23
|
+
- The task has **internal dependencies** that can be sequenced
|
|
24
|
+
|
|
25
|
+
### Do NOT use when:
|
|
26
|
+
- Creating initial tasks (use `openspec-new-change` or `openspec-ff-change`)
|
|
27
|
+
- Task affects only 1-2 files (implement directly)
|
|
28
|
+
- Task is simple and straightforward
|
|
29
|
+
|
|
30
|
+
### The Hierarchy:
|
|
31
|
+
```
|
|
32
|
+
Change (openspec-new-change)
|
|
33
|
+
└─> Tasks (tasks.md) - Level 1
|
|
34
|
+
└─> Microtasks (this skill) - Level 2+
|
|
35
|
+
└─> Implementation
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Instructions
|
|
41
|
+
|
|
42
|
+
### Step 1: Identify the Complex Task
|
|
43
|
+
|
|
44
|
+
Select ONE task from `tasks.md` that meets decomposition criteria:
|
|
45
|
+
- [ ] Affects 3+ files
|
|
46
|
+
- [ ] Contains multiple distinct operations
|
|
47
|
+
- [ ] Estimated effort >2 hours
|
|
48
|
+
- [ ] Has internal sequential dependencies
|
|
49
|
+
|
|
50
|
+
**Example complex task:**
|
|
51
|
+
```markdown
|
|
52
|
+
- [ ] Implement user authentication with login, signup, password reset, and email verification
|
|
53
|
+
```
|
|
54
|
+
→ This affects multiple files and operations = DECOMPOSE
|
|
55
|
+
|
|
56
|
+
### Step 2: Analyze Task Components
|
|
57
|
+
|
|
58
|
+
Break down the task into its atomic operations:
|
|
59
|
+
|
|
60
|
+
1. **List all files touched**
|
|
61
|
+
2. **List all functions/methods needed**
|
|
62
|
+
3. **Identify data flow between components**
|
|
63
|
+
4. **Mark dependencies** (what must happen before what)
|
|
64
|
+
|
|
65
|
+
### Step 3: Create Microtasks
|
|
66
|
+
|
|
67
|
+
Each microtask must be:
|
|
68
|
+
- **Single file** (or 1-2 closely related files)
|
|
69
|
+
- **Single purpose** (one function or cohesive set)
|
|
70
|
+
- **Independently testable**
|
|
71
|
+
- **< 1 hour** estimated effort
|
|
72
|
+
- **Clear completion criteria**
|
|
73
|
+
|
|
74
|
+
**Microtask format:**
|
|
75
|
+
```yaml
|
|
76
|
+
microtask:
|
|
77
|
+
id: "mt-[number]"
|
|
78
|
+
parent_task: "task-id-from-tasks.md"
|
|
79
|
+
name: "Brief descriptive name"
|
|
80
|
+
description: "What this microtask accomplishes"
|
|
81
|
+
files:
|
|
82
|
+
- path/to/single-file.ext
|
|
83
|
+
dependencies:
|
|
84
|
+
- "mt-[prerequisite]"
|
|
85
|
+
estimated_time: "30min"
|
|
86
|
+
acceptance_criteria:
|
|
87
|
+
- "Criterion 1"
|
|
88
|
+
- "Criterion 2"
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Step 4: Map Dependencies
|
|
92
|
+
|
|
93
|
+
Create a dependency graph:
|
|
94
|
+
```
|
|
95
|
+
mt-1: Database schema
|
|
96
|
+
└─> mt-2: User model
|
|
97
|
+
├─> mt-3: Login endpoint
|
|
98
|
+
├─> mt-4: Signup endpoint
|
|
99
|
+
└─> mt-5: Password reset service
|
|
100
|
+
└─> mt-6: Email verification
|
|
101
|
+
└─> mt-7: Integration tests
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Step 5: Assign Execution Order
|
|
105
|
+
|
|
106
|
+
Group microtasks into execution phases:
|
|
107
|
+
|
|
108
|
+
**Phase 1** (Foundation - Sequential):
|
|
109
|
+
- mt-1, mt-2
|
|
110
|
+
|
|
111
|
+
**Phase 2** (Core Features - Parallel):
|
|
112
|
+
- mt-3, mt-4 (both depend on Phase 1)
|
|
113
|
+
|
|
114
|
+
**Phase 3** (Extended Features - Sequential):
|
|
115
|
+
- mt-5 (depends on Phase 2)
|
|
116
|
+
|
|
117
|
+
**Phase 4** (Integration):
|
|
118
|
+
- mt-6, mt-7 (depends on Phase 3)
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Output Format
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
## Microtask Decomposition Summary
|
|
126
|
+
|
|
127
|
+
**Parent Task**: [task description from tasks.md]
|
|
128
|
+
**Task ID**: [task identifier]
|
|
129
|
+
**Total Microtasks**: [N]
|
|
130
|
+
**Estimated Total Time**: [X hours]
|
|
131
|
+
**Execution Phases**: [N phases]
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
### Microtask List
|
|
136
|
+
|
|
137
|
+
#### Phase 1: Foundation
|
|
138
|
+
|
|
139
|
+
**mt-1: [Name]**
|
|
140
|
+
- **Files**: `file.ext`
|
|
141
|
+
- **Description**: What to implement
|
|
142
|
+
- **Dependencies**: None
|
|
143
|
+
- **Estimated**: 30min
|
|
144
|
+
- **Acceptance Criteria**:
|
|
145
|
+
- [ ] Criterion 1
|
|
146
|
+
- [ ] Criterion 2
|
|
147
|
+
|
|
148
|
+
**mt-2: [Name]**
|
|
149
|
+
- **Files**: `file.ext`
|
|
150
|
+
- **Description**: What to implement
|
|
151
|
+
- **Dependencies**: mt-1
|
|
152
|
+
- **Estimated**: 45min
|
|
153
|
+
- **Acceptance Criteria**:
|
|
154
|
+
- [ ] Criterion 1
|
|
155
|
+
|
|
156
|
+
#### Phase 2: Core Features (Parallel)
|
|
157
|
+
|
|
158
|
+
**mt-3: [Name]**
|
|
159
|
+
- **Files**: `file.ext`
|
|
160
|
+
- **Description**: What to implement
|
|
161
|
+
- **Dependencies**: mt-2
|
|
162
|
+
- **Estimated**: 30min
|
|
163
|
+
- **Acceptance Criteria**:
|
|
164
|
+
- [ ] Criterion 1
|
|
165
|
+
|
|
166
|
+
[Continue for all phases...]
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
### Dependency Graph
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
[ASCII art showing dependency relationships]
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
### Execution Plan
|
|
179
|
+
|
|
180
|
+
**Phase 1** (Foundation - Do first):
|
|
181
|
+
- [ ] mt-1
|
|
182
|
+
- [ ] mt-2
|
|
183
|
+
|
|
184
|
+
**Phase 2** (Core - Parallelizable):
|
|
185
|
+
- [ ] mt-3 (depends: mt-2)
|
|
186
|
+
- [ ] mt-4 (depends: mt-2)
|
|
187
|
+
|
|
188
|
+
**Phase 3** (Extended - Sequential):
|
|
189
|
+
- [ ] mt-5 (depends: mt-3, mt-4)
|
|
190
|
+
|
|
191
|
+
**Phase 4** (Final):
|
|
192
|
+
- [ ] mt-6 (depends: mt-5)
|
|
193
|
+
- [ ] mt-7 (depends: mt-6)
|
|
194
|
+
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
### Parent Task Update
|
|
198
|
+
|
|
199
|
+
After decomposition, update the parent task in `tasks.md`:
|
|
200
|
+
|
|
201
|
+
```markdown
|
|
202
|
+
- [ ] Implement user authentication [DECOMPOSED INTO MICROTASKS]
|
|
203
|
+
- [ ] Phase 1: Foundation
|
|
204
|
+
- [ ] mt-1: Database schema
|
|
205
|
+
- [ ] mt-2: User model
|
|
206
|
+
- [ ] Phase 2: Core Features
|
|
207
|
+
- [ ] mt-3: Login endpoint
|
|
208
|
+
- [ ] mt-4: Signup endpoint
|
|
209
|
+
- [ ] Phase 3: Extended Features
|
|
210
|
+
- [ ] mt-5: Password reset service
|
|
211
|
+
- [ ] mt-6: Email verification
|
|
212
|
+
- [ ] Phase 4: Integration
|
|
213
|
+
- [ ] mt-7: Integration tests
|
|
214
|
+
```
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Example
|
|
220
|
+
|
|
221
|
+
### Parent Task (from tasks.md):
|
|
222
|
+
```markdown
|
|
223
|
+
- [ ] Build complete authentication system with login, signup, password reset, email verification, and session management
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
### Microtask Decomposition:
|
|
227
|
+
|
|
228
|
+
```
|
|
229
|
+
## Microtask Decomposition Summary
|
|
230
|
+
|
|
231
|
+
**Parent Task**: Build complete authentication system
|
|
232
|
+
**Total Microtasks**: 9
|
|
233
|
+
**Estimated Total Time**: 6 hours
|
|
234
|
+
**Execution Phases**: 4
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
### Microtask List
|
|
239
|
+
|
|
240
|
+
#### Phase 1: Data Layer
|
|
241
|
+
|
|
242
|
+
**mt-1: User Database Schema**
|
|
243
|
+
- **Files**: `database/migrations/001_users.sql`
|
|
244
|
+
- **Description**: Create users table with fields: id, email, password_hash, verified, created_at
|
|
245
|
+
- **Dependencies**: None
|
|
246
|
+
- **Estimated**: 20min
|
|
247
|
+
- **Acceptance**: Migration runs, schema matches requirements
|
|
248
|
+
|
|
249
|
+
**mt-2: User Model/Entity**
|
|
250
|
+
- **Files**: `src/models/User.js`
|
|
251
|
+
- **Description**: User class with methods: create(), findByEmail(), verify(), updatePassword()
|
|
252
|
+
- **Dependencies**: mt-1
|
|
253
|
+
- **Estimated**: 30min
|
|
254
|
+
- **Acceptance**: All CRUD operations work, password hashing implemented
|
|
255
|
+
|
|
256
|
+
#### Phase 2: Core Auth Endpoints (Parallel)
|
|
257
|
+
|
|
258
|
+
**mt-3: Login Endpoint**
|
|
259
|
+
- **Files**: `src/routes/auth/login.js`
|
|
260
|
+
- **Description**: POST /api/auth/login - validate credentials, create session/JWT
|
|
261
|
+
- **Dependencies**: mt-2
|
|
262
|
+
- **Estimated**: 30min
|
|
263
|
+
- **Acceptance**: Returns token on success, proper error on failure
|
|
264
|
+
|
|
265
|
+
**mt-4: Signup Endpoint**
|
|
266
|
+
- **Files**: `src/routes/auth/signup.js`
|
|
267
|
+
- **Description**: POST /api/auth/signup - validate email, hash password, create user
|
|
268
|
+
- **Dependencies**: mt-2
|
|
269
|
+
- **Estimated**: 30min
|
|
270
|
+
- **Acceptance**: Creates user, sends verification email
|
|
271
|
+
|
|
272
|
+
#### Phase 3: Extended Features
|
|
273
|
+
|
|
274
|
+
**mt-5: Password Reset Service**
|
|
275
|
+
- **Files**: `src/services/passwordReset.js`, `src/routes/auth/reset.js`
|
|
276
|
+
- **Description**: Generate reset tokens, send emails, validate tokens
|
|
277
|
+
- **Dependencies**: mt-3, mt-4
|
|
278
|
+
- **Estimated**: 45min
|
|
279
|
+
- **Acceptance**: Token generation, email sending, token validation work
|
|
280
|
+
|
|
281
|
+
**mt-6: Email Verification**
|
|
282
|
+
- **Files**: `src/services/verification.js`, `src/routes/auth/verify.js`
|
|
283
|
+
- **Description**: Send verification emails, verify tokens, update user status
|
|
284
|
+
- **Dependencies**: mt-5
|
|
285
|
+
- **Estimated**: 30min
|
|
286
|
+
- **Acceptance**: Email sent, token verified, user marked verified
|
|
287
|
+
|
|
288
|
+
**mt-7: Session Management**
|
|
289
|
+
- **Files**: `src/middleware/session.js`, `src/services/session.js`
|
|
290
|
+
- **Description**: Validate sessions/JWT, refresh tokens, logout
|
|
291
|
+
- **Dependencies**: mt-3
|
|
292
|
+
- **Estimated**: 40min
|
|
293
|
+
- **Acceptance**: Sessions validated, refresh works, logout clears session
|
|
294
|
+
|
|
295
|
+
#### Phase 4: UI & Integration
|
|
296
|
+
|
|
297
|
+
**mt-8: Auth UI Components**
|
|
298
|
+
- **Files**: `src/components/LoginForm.jsx`, `src/components/SignupForm.jsx`
|
|
299
|
+
- **Description**: Forms with validation, error handling, loading states
|
|
300
|
+
- **Dependencies**: mt-3, mt-4
|
|
301
|
+
- **Estimated**: 60min
|
|
302
|
+
- **Acceptance**: Forms work, validation feedback, API integration
|
|
303
|
+
|
|
304
|
+
**mt-9: Auth Integration Tests**
|
|
305
|
+
- **Files**: `tests/integration/auth.test.js`
|
|
306
|
+
- **Description**: End-to-end tests for all auth flows
|
|
307
|
+
- **Dependencies**: mt-6, mt-7, mt-8
|
|
308
|
+
- **Estimated**: 45min
|
|
309
|
+
- **Acceptance**: All flows tested, edge cases covered
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
## Integration with OpenSpec
|
|
315
|
+
|
|
316
|
+
### After Microtask Decomposition:
|
|
317
|
+
|
|
318
|
+
1. **Update `tasks.md`** with microtask breakdown
|
|
319
|
+
2. **Execute with `openspec-apply-change`** per microtask:
|
|
320
|
+
```
|
|
321
|
+
For each microtask:
|
|
322
|
+
- Focus on single file
|
|
323
|
+
- Implement
|
|
324
|
+
- Test
|
|
325
|
+
- Mark complete
|
|
326
|
+
```
|
|
327
|
+
3. **Track progress** in parent task
|
|
328
|
+
|
|
329
|
+
### Workflow:
|
|
330
|
+
```
|
|
331
|
+
1. openspec-new-change → Creates tasks.md
|
|
332
|
+
2. Identify complex task → Use microtask-decomposition
|
|
333
|
+
3. Update tasks.md with microtasks
|
|
334
|
+
4. openspec-apply-change → Implement each microtask
|
|
335
|
+
5. Mark parent task complete when all microtasks done
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
---
|
|
339
|
+
|
|
340
|
+
## Guardrails
|
|
341
|
+
|
|
342
|
+
- **Maximum 1-2 files per microtask** - Keep them atomic
|
|
343
|
+
- **Clear dependencies only** - No circular deps
|
|
344
|
+
- **Estimates < 1 hour** - If longer, decompose further
|
|
345
|
+
- **Testable independently** - Each should have clear done criteria
|
|
346
|
+
- **Preserve parent context** - Link back to original task
|
|
347
|
+
- **Don't over-decompose** - 2-3 file tasks don't need this
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
## Comparison: When to Use What
|
|
352
|
+
|
|
353
|
+
| Situation | Use | Don't Use |
|
|
354
|
+
|-----------|-----|-----------|
|
|
355
|
+
| Initial task breakdown | `openspec-new-change` / `openspec-ff-change` | microtask-decomposition |
|
|
356
|
+
| Task affects 1-2 files | Direct implementation | microtask-decomposition |
|
|
357
|
+
| Task affects 3+ files, complex | microtask-decomposition | Direct implementation |
|
|
358
|
+
| Need parallel execution | microtask-decomposition | Sequential approach |
|
|
359
|
+
| Simple CRUD operation | Direct in tasks.md | microtask-decomposition |
|
|
360
|
+
|
|
361
|
+
---
|
|
362
|
+
|
|
363
|
+
## See Also
|
|
364
|
+
|
|
365
|
+
- `openspec-new-change` - Create parent change
|
|
366
|
+
- `openspec-continue-change` - Work on decomposed artifacts
|
|
367
|
+
- `openspec-apply-change` - Implement each microtask
|
|
368
|
+
- `spec-analysis` - Verify consistency after decomposition
|
|
@@ -15,7 +15,23 @@ Implement tasks from an OpenSpec change.
|
|
|
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. **Select the change**
|
|
19
35
|
|
|
20
36
|
If a name is provided, use it. Otherwise:
|
|
21
37
|
- Infer from conversation context if the user mentioned a change
|
|
@@ -24,7 +40,7 @@ Implement tasks from an OpenSpec change.
|
|
|
24
40
|
|
|
25
41
|
Always announce: "Using change: <name>" and how to override (e.g., `/opsx:apply <other>`).
|
|
26
42
|
|
|
27
|
-
|
|
43
|
+
3. **Check status to understand the schema**
|
|
28
44
|
```bash
|
|
29
45
|
acfm spec status --change "<name>" --json
|
|
30
46
|
```
|
|
@@ -32,7 +48,7 @@ Implement tasks from an OpenSpec change.
|
|
|
32
48
|
- `schemaName`: The workflow being used (e.g., "spec-driven")
|
|
33
49
|
- Which artifact contains the tasks (typically "tasks" for spec-driven, check status for others)
|
|
34
50
|
|
|
35
|
-
|
|
51
|
+
4. **Get apply instructions**
|
|
36
52
|
|
|
37
53
|
```bash
|
|
38
54
|
acfm spec instructions apply --change "<name>" --json
|
|
@@ -49,14 +65,14 @@ Implement tasks from an OpenSpec change.
|
|
|
49
65
|
- If `state: "all_done"`: congratulate, suggest archive
|
|
50
66
|
- Otherwise: proceed to implementation
|
|
51
67
|
|
|
52
|
-
|
|
68
|
+
5. **Read context files**
|
|
53
69
|
|
|
54
70
|
Read the files listed in `contextFiles` from the apply instructions output.
|
|
55
71
|
The files depend on the schema being used:
|
|
56
72
|
- **spec-driven**: proposal, specs, design, tasks
|
|
57
73
|
- Other schemas: follow the contextFiles from CLI output
|
|
58
74
|
|
|
59
|
-
|
|
75
|
+
6. **Show current progress**
|
|
60
76
|
|
|
61
77
|
Display:
|
|
62
78
|
- Schema being used
|
|
@@ -64,7 +80,7 @@ Implement tasks from an OpenSpec change.
|
|
|
64
80
|
- Remaining tasks overview
|
|
65
81
|
- Dynamic instruction from CLI
|
|
66
82
|
|
|
67
|
-
|
|
83
|
+
7. **Implement tasks (loop until done or blocked)**
|
|
68
84
|
|
|
69
85
|
For each pending task:
|
|
70
86
|
- Show which task is being worked on
|
|
@@ -79,7 +95,7 @@ Implement tasks from an OpenSpec change.
|
|
|
79
95
|
- Error or blocker encountered → report and wait for guidance
|
|
80
96
|
- User interrupts
|
|
81
97
|
|
|
82
|
-
|
|
98
|
+
8. **On completion or pause, show status**
|
|
83
99
|
|
|
84
100
|
Display:
|
|
85
101
|
- Tasks completed this session
|
|
@@ -15,7 +15,23 @@ Archive a completed change in the experimental workflow.
|
|
|
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
|
|
|
@@ -24,7 +40,7 @@ Archive a completed change in the experimental workflow.
|
|
|
24
40
|
|
|
25
41
|
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
26
42
|
|
|
27
|
-
|
|
43
|
+
3. **Check artifact completion status**
|
|
28
44
|
|
|
29
45
|
Run `acfm spec status --change "<name>" --json` to check artifact completion.
|
|
30
46
|
|
|
@@ -37,7 +53,7 @@ Archive a completed change in the experimental workflow.
|
|
|
37
53
|
- Use **AskUserQuestion tool** to confirm user wants to proceed
|
|
38
54
|
- Proceed if user confirms
|
|
39
55
|
|
|
40
|
-
|
|
56
|
+
4. **Check task completion status**
|
|
41
57
|
|
|
42
58
|
Read the tasks file (typically `tasks.md`) to check for incomplete tasks.
|
|
43
59
|
|
|
@@ -50,7 +66,7 @@ Archive a completed change in the experimental workflow.
|
|
|
50
66
|
|
|
51
67
|
**If no tasks file exists:** Proceed without task-related warning.
|
|
52
68
|
|
|
53
|
-
|
|
69
|
+
5. **Assess delta spec sync state**
|
|
54
70
|
|
|
55
71
|
Check for delta specs at `openspec/changes/<name>/specs/`. If none exist, proceed without sync prompt.
|
|
56
72
|
|
|
@@ -65,7 +81,7 @@ Archive a completed change in the experimental workflow.
|
|
|
65
81
|
|
|
66
82
|
If user chooses sync, execute /opsx:sync logic (use the openspec-sync-specs skill). Proceed to archive regardless of choice.
|
|
67
83
|
|
|
68
|
-
|
|
84
|
+
6. **Perform the archive**
|
|
69
85
|
|
|
70
86
|
Create the archive directory if it doesn't exist:
|
|
71
87
|
```bash
|
|
@@ -82,7 +98,7 @@ Archive a completed change in the experimental workflow.
|
|
|
82
98
|
mv openspec/changes/<name> openspec/changes/archive/YYYY-MM-DD-<name>
|
|
83
99
|
```
|
|
84
100
|
|
|
85
|
-
|
|
101
|
+
7. **Display summary**
|
|
86
102
|
|
|
87
103
|
Show archive completion summary including:
|
|
88
104
|
- Change name
|
|
@@ -17,13 +17,29 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
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. **Get active changes**
|
|
21
37
|
|
|
22
38
|
Run `acfm spec list --json` to get all active changes.
|
|
23
39
|
|
|
24
40
|
If no active changes exist, inform user and stop.
|
|
25
41
|
|
|
26
|
-
|
|
42
|
+
3. **Prompt for change selection**
|
|
27
43
|
|
|
28
44
|
Use **AskUserQuestion tool** with multi-select to let user choose changes:
|
|
29
45
|
- Show each change with its schema
|
|
@@ -32,7 +48,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
32
48
|
|
|
33
49
|
**IMPORTANT**: Do NOT auto-select. Always let the user choose.
|
|
34
50
|
|
|
35
|
-
|
|
51
|
+
4. **Batch validation - gather status for all selected changes**
|
|
36
52
|
|
|
37
53
|
For each selected change, collect:
|
|
38
54
|
|
|
@@ -48,7 +64,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
48
64
|
- List which capability specs exist
|
|
49
65
|
- For each, extract requirement names (lines matching `### Requirement: <name>`)
|
|
50
66
|
|
|
51
|
-
|
|
67
|
+
5. **Detect spec conflicts**
|
|
52
68
|
|
|
53
69
|
Build a map of `capability -> [changes that touch it]`:
|
|
54
70
|
|
|
@@ -59,7 +75,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
59
75
|
|
|
60
76
|
A conflict exists when 2+ selected changes have delta specs for the same capability.
|
|
61
77
|
|
|
62
|
-
|
|
78
|
+
6. **Resolve conflicts agentically**
|
|
63
79
|
|
|
64
80
|
**For each conflict**, investigate the codebase:
|
|
65
81
|
|
|
@@ -79,7 +95,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
79
95
|
- In what order (if both)
|
|
80
96
|
- Rationale (what was found in codebase)
|
|
81
97
|
|
|
82
|
-
|
|
98
|
+
7. **Show consolidated status table**
|
|
83
99
|
|
|
84
100
|
Display a table summarizing all changes:
|
|
85
101
|
|
|
@@ -104,7 +120,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
104
120
|
- add-verify-skill: 1 incomplete artifact, 3 incomplete tasks
|
|
105
121
|
```
|
|
106
122
|
|
|
107
|
-
|
|
123
|
+
8. **Confirm batch operation**
|
|
108
124
|
|
|
109
125
|
Use **AskUserQuestion tool** with a single confirmation:
|
|
110
126
|
|
|
@@ -116,7 +132,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
116
132
|
|
|
117
133
|
If there are incomplete changes, make clear they'll be archived with warnings.
|
|
118
134
|
|
|
119
|
-
|
|
135
|
+
9. **Execute archive for each confirmed change**
|
|
120
136
|
|
|
121
137
|
Process changes in the determined order (respecting conflict resolution):
|
|
122
138
|
|
|
@@ -136,7 +152,7 @@ This skill allows you to batch-archive changes, handling spec conflicts intellig
|
|
|
136
152
|
- Failed: error during archive (record error)
|
|
137
153
|
- Skipped: user chose not to archive (if applicable)
|
|
138
154
|
|
|
139
|
-
|
|
155
|
+
10. **Display summary**
|
|
140
156
|
|
|
141
157
|
Show final results:
|
|
142
158
|
|
|
@@ -15,7 +15,23 @@ Continue working on a change by creating the next artifact.
|
|
|
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 sorted by most recently modified. Then use the **AskUserQuestion tool** to let the user select which change to work on.
|
|
21
37
|
|
|
@@ -29,7 +45,7 @@ Continue working on a change by creating the next artifact.
|
|
|
29
45
|
|
|
30
46
|
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
31
47
|
|
|
32
|
-
|
|
48
|
+
3. **Check current status**
|
|
33
49
|
```bash
|
|
34
50
|
acfm spec status --change "<name>" --json
|
|
35
51
|
```
|
|
@@ -38,7 +54,7 @@ Continue working on a change by creating the next artifact.
|
|
|
38
54
|
- `artifacts`: Array of artifacts with their status ("done", "ready", "blocked")
|
|
39
55
|
- `isComplete`: Boolean indicating if all artifacts are complete
|
|
40
56
|
|
|
41
|
-
|
|
57
|
+
4. **Act based on status**:
|
|
42
58
|
|
|
43
59
|
---
|
|
44
60
|
|
|
@@ -77,7 +93,7 @@ Continue working on a change by creating the next artifact.
|
|
|
77
93
|
- This shouldn't happen with a valid schema
|
|
78
94
|
- Show status and suggest checking for issues
|
|
79
95
|
|
|
80
|
-
|
|
96
|
+
5. **After creating an artifact, show progress**
|
|
81
97
|
```bash
|
|
82
98
|
acfm spec status --change "<name>"
|
|
83
99
|
```
|
|
@@ -79,9 +79,25 @@ Depending on what the user brings, you might:
|
|
|
79
79
|
|
|
80
80
|
You have full context of the OpenSpec system. Use it naturally, don't force it.
|
|
81
81
|
|
|
82
|
+
### Verify project initialization
|
|
83
|
+
|
|
84
|
+
At the start, check if the project is initialized:
|
|
85
|
+
```bash
|
|
86
|
+
acfm spec status --json
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**If not initialized** (`"initialized": false`):
|
|
90
|
+
```bash
|
|
91
|
+
acfm spec init
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**If initialized** (`"initialized": true`):
|
|
95
|
+
- Note the `dirName` field (either `.acfm` or `openspec`)
|
|
96
|
+
- Continue with the workflow
|
|
97
|
+
|
|
82
98
|
### Check for context
|
|
83
99
|
|
|
84
|
-
|
|
100
|
+
Next, quickly check what exists:
|
|
85
101
|
```bash
|
|
86
102
|
acfm spec list --json
|
|
87
103
|
```
|