ac-framework 1.1.0 → 1.3.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/LICENSE +18 -0
- package/README.md +275 -24
- package/bin/postinstall.js +23 -0
- package/framework/.agent/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.agent/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.agent/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.agent/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.agent/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.agent/skills/brainstorming/SKILL.md +54 -0
- package/framework/.agent/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.agent/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.agent/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.agent/skills/interface-design/SKILL.md +310 -0
- package/framework/.agent/skills/interface-design/references/example.md +86 -0
- package/framework/.agent/skills/interface-design/references/principles.md +235 -0
- package/framework/.agent/skills/interface-design/references/validation.md +48 -0
- package/framework/.agent/skills/project-index/SKILL.md +234 -0
- package/framework/.agent/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.agent/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.agent/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.agent/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.agent/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.agent/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.agent/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.agent/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.agent/skills/skill-writer/SKILL.md +385 -0
- package/framework/.agent/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.amazonq/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.amazonq/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.amazonq/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.amazonq/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.amazonq/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.amazonq/skills/brainstorming/SKILL.md +54 -0
- package/framework/.amazonq/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.amazonq/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.amazonq/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.amazonq/skills/interface-design/SKILL.md +310 -0
- package/framework/.amazonq/skills/interface-design/references/example.md +86 -0
- package/framework/.amazonq/skills/interface-design/references/principles.md +235 -0
- package/framework/.amazonq/skills/interface-design/references/validation.md +48 -0
- package/framework/.amazonq/skills/project-index/SKILL.md +234 -0
- package/framework/.amazonq/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.amazonq/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.amazonq/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.amazonq/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.amazonq/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.amazonq/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.amazonq/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.amazonq/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.amazonq/skills/skill-writer/SKILL.md +385 -0
- package/framework/.amazonq/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.augment/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.augment/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.augment/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.augment/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.augment/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.augment/skills/brainstorming/SKILL.md +54 -0
- package/framework/.augment/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.augment/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.augment/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.augment/skills/interface-design/SKILL.md +310 -0
- package/framework/.augment/skills/interface-design/references/example.md +86 -0
- package/framework/.augment/skills/interface-design/references/principles.md +235 -0
- package/framework/.augment/skills/interface-design/references/validation.md +48 -0
- package/framework/.augment/skills/project-index/SKILL.md +234 -0
- package/framework/.augment/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.augment/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.augment/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.augment/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.augment/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.augment/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.augment/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.augment/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.augment/skills/skill-writer/SKILL.md +385 -0
- package/framework/.augment/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.claude/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.claude/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.claude/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.claude/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.claude/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.claude/skills/brainstorming/SKILL.md +54 -0
- package/framework/.claude/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.claude/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.claude/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.claude/skills/interface-design/SKILL.md +310 -0
- package/framework/.claude/skills/interface-design/references/example.md +86 -0
- package/framework/.claude/skills/interface-design/references/principles.md +235 -0
- package/framework/.claude/skills/interface-design/references/validation.md +48 -0
- package/framework/.claude/skills/project-index/SKILL.md +234 -0
- package/framework/.claude/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.claude/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.claude/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.claude/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.claude/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.claude/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.claude/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.claude/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.claude/skills/skill-writer/SKILL.md +385 -0
- package/framework/.claude/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.cline/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.cline/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.cline/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.cline/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.cline/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.cline/skills/brainstorming/SKILL.md +54 -0
- package/framework/.cline/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.cline/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.cline/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.cline/skills/interface-design/SKILL.md +310 -0
- package/framework/.cline/skills/interface-design/references/example.md +86 -0
- package/framework/.cline/skills/interface-design/references/principles.md +235 -0
- package/framework/.cline/skills/interface-design/references/validation.md +48 -0
- package/framework/.cline/skills/project-index/SKILL.md +234 -0
- package/framework/.cline/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.cline/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.cline/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.cline/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.cline/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.cline/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.cline/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.cline/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.cline/skills/skill-writer/SKILL.md +385 -0
- package/framework/.cline/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.codebuddy/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.codebuddy/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.codebuddy/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.codebuddy/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.codebuddy/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.codebuddy/skills/brainstorming/SKILL.md +54 -0
- package/framework/.codebuddy/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.codebuddy/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.codebuddy/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.codebuddy/skills/interface-design/SKILL.md +310 -0
- package/framework/.codebuddy/skills/interface-design/references/example.md +86 -0
- package/framework/.codebuddy/skills/interface-design/references/principles.md +235 -0
- package/framework/.codebuddy/skills/interface-design/references/validation.md +48 -0
- package/framework/.codebuddy/skills/project-index/SKILL.md +234 -0
- package/framework/.codebuddy/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.codebuddy/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.codebuddy/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.codebuddy/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.codebuddy/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.codebuddy/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.codebuddy/skills/skill-writer/SKILL.md +385 -0
- package/framework/.codebuddy/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.codex/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.codex/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.codex/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.codex/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.codex/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.codex/skills/brainstorming/SKILL.md +54 -0
- package/framework/.codex/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.codex/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.codex/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.codex/skills/interface-design/SKILL.md +310 -0
- package/framework/.codex/skills/interface-design/references/example.md +86 -0
- package/framework/.codex/skills/interface-design/references/principles.md +235 -0
- package/framework/.codex/skills/interface-design/references/validation.md +48 -0
- package/framework/.codex/skills/project-index/SKILL.md +234 -0
- package/framework/.codex/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.codex/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.codex/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.codex/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.codex/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.codex/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.codex/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.codex/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.codex/skills/skill-writer/SKILL.md +385 -0
- package/framework/.codex/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.continue/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.continue/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.continue/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.continue/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.continue/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.continue/skills/brainstorming/SKILL.md +54 -0
- package/framework/.continue/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.continue/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.continue/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.continue/skills/interface-design/SKILL.md +310 -0
- package/framework/.continue/skills/interface-design/references/example.md +86 -0
- package/framework/.continue/skills/interface-design/references/principles.md +235 -0
- package/framework/.continue/skills/interface-design/references/validation.md +48 -0
- package/framework/.continue/skills/project-index/SKILL.md +234 -0
- package/framework/.continue/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.continue/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.continue/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.continue/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.continue/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.continue/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.continue/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.continue/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.continue/skills/skill-writer/SKILL.md +385 -0
- package/framework/.continue/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.cospec/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.cospec/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.cospec/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.cospec/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.cospec/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.cospec/skills/brainstorming/SKILL.md +54 -0
- package/framework/.cospec/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.cospec/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.cospec/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.cospec/skills/interface-design/SKILL.md +310 -0
- package/framework/.cospec/skills/interface-design/references/example.md +86 -0
- package/framework/.cospec/skills/interface-design/references/principles.md +235 -0
- package/framework/.cospec/skills/interface-design/references/validation.md +48 -0
- package/framework/.cospec/skills/project-index/SKILL.md +234 -0
- package/framework/.cospec/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.cospec/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.cospec/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.cospec/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.cospec/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.cospec/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.cospec/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.cospec/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.cospec/skills/skill-writer/SKILL.md +385 -0
- package/framework/.cospec/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.crush/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.crush/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.crush/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.crush/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.crush/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.crush/skills/brainstorming/SKILL.md +54 -0
- package/framework/.crush/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.crush/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.crush/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.crush/skills/interface-design/SKILL.md +310 -0
- package/framework/.crush/skills/interface-design/references/example.md +86 -0
- package/framework/.crush/skills/interface-design/references/principles.md +235 -0
- package/framework/.crush/skills/interface-design/references/validation.md +48 -0
- package/framework/.crush/skills/project-index/SKILL.md +234 -0
- package/framework/.crush/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.crush/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.crush/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.crush/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.crush/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.crush/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.crush/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.crush/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.crush/skills/skill-writer/SKILL.md +385 -0
- package/framework/.crush/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.cursor/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.cursor/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.cursor/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.cursor/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.cursor/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.cursor/skills/brainstorming/SKILL.md +54 -0
- package/framework/.cursor/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.cursor/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.cursor/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.cursor/skills/interface-design/SKILL.md +310 -0
- package/framework/.cursor/skills/interface-design/references/example.md +86 -0
- package/framework/.cursor/skills/interface-design/references/principles.md +235 -0
- package/framework/.cursor/skills/interface-design/references/validation.md +48 -0
- package/framework/.cursor/skills/project-index/SKILL.md +234 -0
- package/framework/.cursor/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.cursor/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.cursor/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.cursor/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.cursor/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.cursor/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.cursor/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.cursor/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.cursor/skills/skill-writer/SKILL.md +385 -0
- package/framework/.cursor/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.factory/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.factory/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.factory/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.factory/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.factory/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.factory/skills/brainstorming/SKILL.md +54 -0
- package/framework/.factory/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.factory/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.factory/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.factory/skills/interface-design/SKILL.md +310 -0
- package/framework/.factory/skills/interface-design/references/example.md +86 -0
- package/framework/.factory/skills/interface-design/references/principles.md +235 -0
- package/framework/.factory/skills/interface-design/references/validation.md +48 -0
- package/framework/.factory/skills/project-index/SKILL.md +234 -0
- package/framework/.factory/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.factory/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.factory/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.factory/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.factory/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.factory/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.factory/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.factory/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.factory/skills/skill-writer/SKILL.md +385 -0
- package/framework/.factory/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.gemini/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.gemini/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.gemini/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.gemini/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.gemini/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.gemini/skills/brainstorming/SKILL.md +54 -0
- package/framework/.gemini/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.gemini/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.gemini/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.gemini/skills/interface-design/SKILL.md +310 -0
- package/framework/.gemini/skills/interface-design/references/example.md +86 -0
- package/framework/.gemini/skills/interface-design/references/principles.md +235 -0
- package/framework/.gemini/skills/interface-design/references/validation.md +48 -0
- package/framework/.gemini/skills/project-index/SKILL.md +234 -0
- package/framework/.gemini/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.gemini/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.gemini/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.gemini/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.gemini/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.gemini/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.gemini/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.gemini/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.gemini/skills/skill-writer/SKILL.md +385 -0
- package/framework/.gemini/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.github/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.github/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.github/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.github/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.github/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.github/skills/brainstorming/SKILL.md +54 -0
- package/framework/.github/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.github/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.github/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.github/skills/interface-design/SKILL.md +310 -0
- package/framework/.github/skills/interface-design/references/example.md +86 -0
- package/framework/.github/skills/interface-design/references/principles.md +235 -0
- package/framework/.github/skills/interface-design/references/validation.md +48 -0
- package/framework/.github/skills/project-index/SKILL.md +234 -0
- package/framework/.github/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.github/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.github/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.github/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.github/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.github/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.github/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.github/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.github/skills/skill-writer/SKILL.md +385 -0
- package/framework/.github/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.iflow/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.iflow/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.iflow/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.iflow/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.iflow/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.iflow/skills/brainstorming/SKILL.md +54 -0
- package/framework/.iflow/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.iflow/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.iflow/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.iflow/skills/interface-design/SKILL.md +310 -0
- package/framework/.iflow/skills/interface-design/references/example.md +86 -0
- package/framework/.iflow/skills/interface-design/references/principles.md +235 -0
- package/framework/.iflow/skills/interface-design/references/validation.md +48 -0
- package/framework/.iflow/skills/project-index/SKILL.md +234 -0
- package/framework/.iflow/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.iflow/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.iflow/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.iflow/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.iflow/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.iflow/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.iflow/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.iflow/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.iflow/skills/skill-writer/SKILL.md +385 -0
- package/framework/.iflow/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.kilocode/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.kilocode/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.kilocode/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.kilocode/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.kilocode/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.kilocode/skills/brainstorming/SKILL.md +54 -0
- package/framework/.kilocode/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.kilocode/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.kilocode/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.kilocode/skills/interface-design/SKILL.md +310 -0
- package/framework/.kilocode/skills/interface-design/references/example.md +86 -0
- package/framework/.kilocode/skills/interface-design/references/principles.md +235 -0
- package/framework/.kilocode/skills/interface-design/references/validation.md +48 -0
- package/framework/.kilocode/skills/project-index/SKILL.md +234 -0
- package/framework/.kilocode/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.kilocode/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.kilocode/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.kilocode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.kilocode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.kilocode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.kilocode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.kilocode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.kilocode/skills/skill-writer/SKILL.md +385 -0
- package/framework/.kilocode/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.opencode/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.opencode/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.opencode/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.opencode/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.opencode/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.opencode/skills/brainstorming/SKILL.md +54 -0
- package/framework/.opencode/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.opencode/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.opencode/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.opencode/skills/interface-design/SKILL.md +310 -0
- package/framework/.opencode/skills/interface-design/references/example.md +86 -0
- package/framework/.opencode/skills/interface-design/references/principles.md +235 -0
- package/framework/.opencode/skills/interface-design/references/validation.md +48 -0
- package/framework/.opencode/skills/project-index/SKILL.md +234 -0
- package/framework/.opencode/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.opencode/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.opencode/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.opencode/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.opencode/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.opencode/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.opencode/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.opencode/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.opencode/skills/skill-writer/SKILL.md +385 -0
- package/framework/.opencode/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.qoder/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.qoder/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.qoder/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.qoder/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.qoder/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.qoder/skills/brainstorming/SKILL.md +54 -0
- package/framework/.qoder/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.qoder/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.qoder/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.qoder/skills/interface-design/SKILL.md +310 -0
- package/framework/.qoder/skills/interface-design/references/example.md +86 -0
- package/framework/.qoder/skills/interface-design/references/principles.md +235 -0
- package/framework/.qoder/skills/interface-design/references/validation.md +48 -0
- package/framework/.qoder/skills/project-index/SKILL.md +234 -0
- package/framework/.qoder/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.qoder/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.qoder/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.qoder/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.qoder/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.qoder/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.qoder/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.qoder/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.qoder/skills/skill-writer/SKILL.md +385 -0
- package/framework/.qoder/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.qwen/commands/{opsx-apply.toml → opsx-apply.md} +4 -3
- package/framework/.qwen/commands/{opsx-archive.toml → opsx-archive.md} +4 -3
- package/framework/.qwen/commands/{opsx-bulk-archive.toml → opsx-bulk-archive.md} +4 -3
- package/framework/.qwen/commands/{opsx-continue.toml → opsx-continue.md} +4 -3
- package/framework/.qwen/commands/{opsx-explore.toml → opsx-explore.md} +4 -3
- package/framework/.qwen/commands/{opsx-ff.toml → opsx-ff.md} +4 -3
- package/framework/.qwen/commands/{opsx-new.toml → opsx-new.md} +4 -3
- package/framework/.qwen/commands/{opsx-onboard.toml → opsx-onboard.md} +4 -3
- package/framework/.qwen/commands/{opsx-sync.toml → opsx-sync.md} +4 -3
- package/framework/.qwen/commands/{opsx-verify.toml → opsx-verify.md} +4 -3
- package/framework/.qwen/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.qwen/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.qwen/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.qwen/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.qwen/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.qwen/skills/brainstorming/SKILL.md +54 -0
- package/framework/.qwen/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.qwen/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.qwen/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.qwen/skills/interface-design/SKILL.md +310 -0
- package/framework/.qwen/skills/interface-design/references/example.md +86 -0
- package/framework/.qwen/skills/interface-design/references/principles.md +235 -0
- package/framework/.qwen/skills/interface-design/references/validation.md +48 -0
- package/framework/.qwen/skills/project-index/SKILL.md +234 -0
- package/framework/.qwen/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.qwen/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.qwen/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.qwen/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.qwen/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.qwen/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.qwen/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.qwen/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.qwen/skills/skill-writer/SKILL.md +385 -0
- package/framework/.qwen/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.roo/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.roo/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.roo/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.roo/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.roo/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.roo/skills/brainstorming/SKILL.md +54 -0
- package/framework/.roo/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.roo/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.roo/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.roo/skills/interface-design/SKILL.md +310 -0
- package/framework/.roo/skills/interface-design/references/example.md +86 -0
- package/framework/.roo/skills/interface-design/references/principles.md +235 -0
- package/framework/.roo/skills/interface-design/references/validation.md +48 -0
- package/framework/.roo/skills/project-index/SKILL.md +234 -0
- package/framework/.roo/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.roo/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.roo/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.roo/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.roo/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.roo/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.roo/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.roo/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.roo/skills/skill-writer/SKILL.md +385 -0
- package/framework/.roo/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.trae/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.trae/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.trae/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.trae/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.trae/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.trae/skills/brainstorming/SKILL.md +54 -0
- package/framework/.trae/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.trae/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.trae/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.trae/skills/interface-design/SKILL.md +310 -0
- package/framework/.trae/skills/interface-design/references/example.md +86 -0
- package/framework/.trae/skills/interface-design/references/principles.md +235 -0
- package/framework/.trae/skills/interface-design/references/validation.md +48 -0
- package/framework/.trae/skills/project-index/SKILL.md +234 -0
- package/framework/.trae/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.trae/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.trae/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.trae/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.trae/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.trae/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.trae/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.trae/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.trae/skills/skill-writer/SKILL.md +385 -0
- package/framework/.trae/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/.windsurf/skills/api-design-principles/SKILL.md +528 -0
- package/framework/.windsurf/skills/api-design-principles/assets/api-design-checklist.md +155 -0
- package/framework/.windsurf/skills/api-design-principles/assets/rest-api-template.py +182 -0
- package/framework/.windsurf/skills/api-design-principles/references/graphql-schema-design.md +583 -0
- package/framework/.windsurf/skills/api-design-principles/references/rest-best-practices.md +408 -0
- package/framework/.windsurf/skills/brainstorming/SKILL.md +54 -0
- package/framework/.windsurf/skills/changelog-generator/SKILL.md +104 -0
- package/framework/.windsurf/skills/code-maintainability/SKILL.md +1108 -0
- package/framework/.windsurf/skills/error-handling-patterns/SKILL.md +641 -0
- package/framework/.windsurf/skills/interface-design/SKILL.md +310 -0
- package/framework/.windsurf/skills/interface-design/references/example.md +86 -0
- package/framework/.windsurf/skills/interface-design/references/principles.md +235 -0
- package/framework/.windsurf/skills/interface-design/references/validation.md +48 -0
- package/framework/.windsurf/skills/project-index/SKILL.md +234 -0
- package/framework/.windsurf/skills/project-index/scripts/scan_codebase.py +47 -0
- package/framework/.windsurf/skills/project-index/templates/agent-template.md +18 -0
- package/framework/.windsurf/skills/project-index/templates/skill-template.md +20 -0
- package/framework/.windsurf/skills/secure-coding-cybersecurity/SKILL.md +793 -0
- package/framework/.windsurf/skills/secure-coding-cybersecurity/references/ai_coding_pitfalls.md +44 -0
- package/framework/.windsurf/skills/secure-coding-cybersecurity/references/owasp_top_10_2025.md +28 -0
- package/framework/.windsurf/skills/secure-coding-cybersecurity/references/secure_coding_examples.md +102 -0
- package/framework/.windsurf/skills/secure-coding-cybersecurity/scripts/security_audit.py +46 -0
- package/framework/.windsurf/skills/skill-writer/SKILL.md +385 -0
- package/framework/.windsurf/skills/systematic-debugging/SKILL.md +296 -0
- package/framework/AGENTS.md +464 -0
- package/framework/CLAUDE.md +464 -0
- package/framework/GEMINI.md +464 -0
- package/framework/QWEN.md +464 -0
- package/framework/copilot-instructions.md +464 -0
- package/package.json +25 -4
- package/src/commands/init.js +171 -84
- package/src/config/constants.js +64 -0
- package/src/config/ide-mapping.js +47 -0
- package/src/index.js +4 -0
- package/src/services/detector.js +30 -0
- package/src/services/installer.js +77 -0
- package/src/ui/animations.js +36 -11
- package/src/ui/banner.js +6 -6
- package/src/utils/helpers.js +0 -28
|
@@ -0,0 +1,464 @@
|
|
|
1
|
+
# 🤖 AGENTS.md - AI Work Framework
|
|
2
|
+
|
|
3
|
+
```
|
|
4
|
+
╔══════════════════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
+
║ ║
|
|
6
|
+
║ █████╗ ██████╗ ███████╗███╗ ██╗████████╗███████╗ ║
|
|
7
|
+
║ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██╔════╝ ║
|
|
8
|
+
║ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ███████╗ ║
|
|
9
|
+
║ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ╚════██║ ║
|
|
10
|
+
║ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ███████║ ║
|
|
11
|
+
║ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚══════╝ ║
|
|
12
|
+
║ ║
|
|
13
|
+
║ Intelligent Software Development Framework ║
|
|
14
|
+
║ ║
|
|
15
|
+
╚══════════════════════════════════════════════════════════════════════════════════════════╝
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 📋 Index
|
|
21
|
+
|
|
22
|
+
1. [Framework Philosophy](#-framework-philosophy)
|
|
23
|
+
2. [Available Skills](#-available-skills)
|
|
24
|
+
3. [Workflow: New Project](#-workflow-new-project)
|
|
25
|
+
4. [Workflow: Existing Project](#-workflow-existing-project)
|
|
26
|
+
5. [Workflow: Changes/Iterations](#-workflow-changesiterations)
|
|
27
|
+
6. [Validation Checklist](#-validation-checklist)
|
|
28
|
+
7. [Directory Structure](#-directory-structure)
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 🎯 Framework Philosophy
|
|
33
|
+
|
|
34
|
+
This framework is designed to ensure all AI-developed projects follow:
|
|
35
|
+
|
|
36
|
+
- ✅ **Best coding practices** from the start
|
|
37
|
+
- ✅ **Maintainable** and scalable architecture
|
|
38
|
+
- ✅ **Complete and up-to-date** documentation
|
|
39
|
+
- ✅ **Clear specifications** through OpenSpec
|
|
40
|
+
- ✅ **Systematic debugging** of problems
|
|
41
|
+
- ✅ **Automated change history**
|
|
42
|
+
|
|
43
|
+
> **Fundamental Principle**: *"Quality over speed. Documentation before code. Planning before execution."*
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 🛠️ Available Skills
|
|
48
|
+
|
|
49
|
+
### Quality and Security Skills
|
|
50
|
+
|
|
51
|
+
| Skill | Description | Primary Use |
|
|
52
|
+
|-------|-------------|---------------|
|
|
53
|
+
| `secure-coding-cybersecurity` | Detects and prevents security vulnerabilities (SQLi, XSS, command injection, hardcoded secrets). Follows OWASP Top 10 standards. | Secure code validation |
|
|
54
|
+
| `code-maintainability` | Analyzes code maintainability: duplication, documentation, error handling, naming conventions, SOLID architecture, performance. | Refactoring and standards |
|
|
55
|
+
| `error-handling-patterns` | Error handling patterns in multiple languages: exceptions, Result types, retry, circuit breaker, graceful degradation. | Application resilience |
|
|
56
|
+
|
|
57
|
+
### Planning and Design Skills
|
|
58
|
+
|
|
59
|
+
| Skill | Description | Primary Use |
|
|
60
|
+
|-------|-------------|---------------|
|
|
61
|
+
| `brainstorming` | Generates ideas and questions decisions before implementing. Explores requirements, constraints, and success criteria. | Design and architecture |
|
|
62
|
+
| `api-design-principles` | REST and GraphQL design principles: resources, endpoints, pagination, versioning, HATEOAS. | API design |
|
|
63
|
+
| `interface-design` | Interface design (dashboards, admin panels, apps). NOT for landing pages/marketing. | UI design |
|
|
64
|
+
|
|
65
|
+
### OpenSpec Skills (The heart of the framework)
|
|
66
|
+
|
|
67
|
+
| Skill | Description | Primary Use |
|
|
68
|
+
|-------|-------------|---------------|
|
|
69
|
+
| `openspec-explore` | Exploration mode to investigate problems, map architecture, find integration points before implementing. | Pre-analysis |
|
|
70
|
+
| `openspec-new-change` | Creates a new change with step-by-step workflow (proposal → specs → design → tasks). | Structured start |
|
|
71
|
+
| `openspec-ff-change` | Fast-forward: creates all artifacts at once to start implementation quickly. | Quick start |
|
|
72
|
+
| `openspec-continue-change` | Continues an existing change by creating the next artifact in the sequence. | Continue workflow |
|
|
73
|
+
| `openspec-apply-change` | Implements tasks from a change (applies code according to specs and tasks). | Change execution |
|
|
74
|
+
| `openspec-verify-change` | Verifies that implementation matches artifacts (specs, tasks, design). | Validation |
|
|
75
|
+
| `openspec-archive-change` | Archives a completed change by moving it to `openspec/changes/archive/`. | Change closure |
|
|
76
|
+
| `openspec-onboard` | Guided tutorial to learn OpenSpec with a complete example workflow. | Learning |
|
|
77
|
+
| `openspec-sync-specs` | Synchronizes delta specs to main specs (intelligent merge). | Update specs |
|
|
78
|
+
| `openspec-bulk-archive-change` | Archives multiple completed changes at once. | Bulk cleanup |
|
|
79
|
+
|
|
80
|
+
### Documentation and Debugging Skills
|
|
81
|
+
|
|
82
|
+
| Skill | Description | Primary Use |
|
|
83
|
+
|-------|-------------|---------------|
|
|
84
|
+
| `project-index` | Generates structured project documentation: structure analysis, domains, agent guides. | Indexing and context |
|
|
85
|
+
| `systematic-debugging` | Structured debugging in 4 phases: root cause investigation, pattern analysis, hypothesis, implementation. | Problem resolution |
|
|
86
|
+
| `changelog-generator` | Creates automated changelogs from git commits, translating technical to user language. | Version history |
|
|
87
|
+
| `skill-writer` | Guide to create new skills for Claude Code with correct structure and frontmatter. | Create new skills |
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 🚀 Workflow: New Project
|
|
92
|
+
|
|
93
|
+
When starting a project **from scratch**, follow this mandatory workflow:
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
┌─────────────────────────────────────────────────────────────────────────────────┐
|
|
97
|
+
│ WORKFLOW: NEW PROJECT │
|
|
98
|
+
└─────────────────────────────────────────────────────────────────────────────────┘
|
|
99
|
+
|
|
100
|
+
┌─────────────────┐
|
|
101
|
+
│ START │
|
|
102
|
+
└────────┬────────┘
|
|
103
|
+
│
|
|
104
|
+
▼
|
|
105
|
+
┌──────────────────────────────────────────────┐
|
|
106
|
+
│ PHASE 1: FOUNDATIONS (Mandatory) │
|
|
107
|
+
│ │
|
|
108
|
+
│ 1. secure-coding-cybersecurity │
|
|
109
|
+
│ └─ Establish security guidelines │
|
|
110
|
+
│ │
|
|
111
|
+
│ 2. code-maintainability │
|
|
112
|
+
│ └─ Define quality standards │
|
|
113
|
+
│ │
|
|
114
|
+
│ 3. brainstorming │
|
|
115
|
+
│ └─ Architecture and design decisions │
|
|
116
|
+
└────────────────────┬─────────────────────────┘
|
|
117
|
+
│
|
|
118
|
+
▼
|
|
119
|
+
┌──────────────────────────────────────────────┐
|
|
120
|
+
│ PHASE 2: SPECIFICATION (Mandatory) │
|
|
121
|
+
│ │
|
|
122
|
+
│ 4. openspec-new-change │
|
|
123
|
+
│ └─ Create change with proposal │
|
|
124
|
+
│ │
|
|
125
|
+
│ 5. openspec-continue-change │
|
|
126
|
+
│ └─ Create specs, design, tasks │
|
|
127
|
+
│ (or use openspec-ff-change) │
|
|
128
|
+
└────────────────────┬─────────────────────────┘
|
|
129
|
+
│
|
|
130
|
+
▼
|
|
131
|
+
┌──────────────────────────────────────────────┐
|
|
132
|
+
│ PHASE 3: IMPLEMENTATION │
|
|
133
|
+
│ │
|
|
134
|
+
│ 6. openspec-apply-change │
|
|
135
|
+
│ └─ Implement the tasks │
|
|
136
|
+
└────────────────────┬─────────────────────────┘
|
|
137
|
+
│
|
|
138
|
+
▼
|
|
139
|
+
┌──────────────────────────────────────────────┐
|
|
140
|
+
│ PHASE 4: VALIDATION AND CLOSURE │
|
|
141
|
+
│ │
|
|
142
|
+
│ 7. systematic-debugging │
|
|
143
|
+
│ └─ Verify no errors │
|
|
144
|
+
│ │
|
|
145
|
+
│ 8. openspec-verify-change │
|
|
146
|
+
│ └─ Validate against specs │
|
|
147
|
+
│ │
|
|
148
|
+
│ 9. changelog-generator │
|
|
149
|
+
│ └─ Generate in changelogs/by-ai/ │
|
|
150
|
+
│ │
|
|
151
|
+
│ 10. openspec-archive-change │
|
|
152
|
+
│ └─ Archive the change │
|
|
153
|
+
└──────────────────────────────────────────────┘
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Phase Descriptions - New Project
|
|
157
|
+
|
|
158
|
+
| Phase | Skill | Description | Expected Output |
|
|
159
|
+
|------|-------|-------------|-----------------|
|
|
160
|
+
| 1 | `secure-coding-cybersecurity` | Establish security guidelines: input validation, sanitization, injection prevention, secrets handling | `.agents/security-guidelines.md` |
|
|
161
|
+
| 2 | `code-maintainability` | Define conventions: naming, folder structure, design patterns, DRY, testing | `.agents/maintainability-rules.md` |
|
|
162
|
+
| 3 | `brainstorming` | Generate architecture ideas, question approach, explore alternatives | `.agents/architecture-decisions.md` |
|
|
163
|
+
| 4 | `openspec-new-change` | Create change with proposal (why, what changes, capabilities) | `openspec/changes/<name>/proposal.md` |
|
|
164
|
+
| 5 | `openspec-continue-change` | Create specs (WHEN/THEN requirements), design (technical decisions), tasks (checklist) | Complete OpenSpec artifacts |
|
|
165
|
+
| 6 | `openspec-apply-change` | Implement code according to specs and tasks | Functional code |
|
|
166
|
+
| 7 | `systematic-debugging` | Structured debugging: investigate root cause, don't guess | Validation report |
|
|
167
|
+
| 8 | `openspec-verify-change` | Verify completeness, correctness, and coherence | Verification report |
|
|
168
|
+
| 9 | `changelog-generator` | Document changes in user language | `changelogs/by-ai/[date]-[feature].md` |
|
|
169
|
+
| 10 | `openspec-archive-change` | Move change to archive with date | `openspec/changes/archive/YYYY-MM-DD-<name>/` |
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## 🔍 Workflow: Existing Project
|
|
174
|
+
|
|
175
|
+
When working on an **already created** project that does NOT have `.md` documentation files:
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
┌─────────────────────────────────────────────────────────────────────────────────┐
|
|
179
|
+
│ WORKFLOW: EXISTING PROJECT (NO DOCS) │
|
|
180
|
+
└─────────────────────────────────────────────────────────────────────────────────┘
|
|
181
|
+
|
|
182
|
+
┌─────────────────────────────────────────────────────────────────────────┐
|
|
183
|
+
│ │
|
|
184
|
+
│ ⚠️ CHECK: No documentation .md files exist in │
|
|
185
|
+
│ .agents/ or openspec/ │
|
|
186
|
+
│ │
|
|
187
|
+
└────────────────────────────────────────────────────┬─────────────────────┘
|
|
188
|
+
│
|
|
189
|
+
▼
|
|
190
|
+
┌─────────────────────────────────────────────────────────────────────────┐
|
|
191
|
+
│ │
|
|
192
|
+
│ 🔄 STEP 0: project-index │
|
|
193
|
+
│ Generate complete documentation for existing project │
|
|
194
|
+
│ ├─ Analyze folder structure │
|
|
195
|
+
│ ├─ Identify domains (UI, Backend, DB, etc.) │
|
|
196
|
+
│ ├─ Create specific sub-skills per domain │
|
|
197
|
+
│ └─ Generate agent-guidance files │
|
|
198
|
+
│ │
|
|
199
|
+
│ Output: │
|
|
200
|
+
│ ├─ .agents/project-index.md │
|
|
201
|
+
│ ├─ .agents/agent-<domain>.md (in each folder) │
|
|
202
|
+
│ └─ .claude/skills/project-index-<domain>/SKILL.md │
|
|
203
|
+
│ │
|
|
204
|
+
└─────────────────────────────────────────────────────────────────────────┘
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
### Post-Indexing
|
|
208
|
+
|
|
209
|
+
Once the project is indexed, continue with the [Changes Workflow](#-workflow-changesiterations).
|
|
210
|
+
|
|
211
|
+
---
|
|
212
|
+
|
|
213
|
+
## 🔄 Workflow: Changes/Iterations
|
|
214
|
+
|
|
215
|
+
For **each change or new feature** in an already documented project:
|
|
216
|
+
|
|
217
|
+
```
|
|
218
|
+
┌─────────────────────────────────────────────────────────────────────────────────┐
|
|
219
|
+
│ WORKFLOW: CHANGES AND ITERATIONS │
|
|
220
|
+
└─────────────────────────────────────────────────────────────────────────────────┘
|
|
221
|
+
|
|
222
|
+
┌─────────────────────────┐
|
|
223
|
+
│ START CHANGE │
|
|
224
|
+
└────────┬────────────────┘
|
|
225
|
+
│
|
|
226
|
+
▼
|
|
227
|
+
┌─────────────────────────┐ ┌──────────────────────────────────────────┐
|
|
228
|
+
│ 1. openspec-explore │────▶│ 2. brainstorming │
|
|
229
|
+
│ (Explore current │ │ (Based on exploration: │
|
|
230
|
+
│ code and structure) │ │ - Generate ideas │
|
|
231
|
+
└─────────────────────────┘ │ - Suggest improvements │
|
|
232
|
+
│ - Ask key questions to user) │
|
|
233
|
+
└─────────────────┬────────────────────────┘
|
|
234
|
+
│
|
|
235
|
+
▼
|
|
236
|
+
┌─────────────────────────┐ ┌──────────────────────────────────────────┐
|
|
237
|
+
│ 3. openspec-new │────▶│ 4. openspec-continue / ff │
|
|
238
|
+
│ (Create specification │ │ (Create specs, design, tasks) │
|
|
239
|
+
│ for change/feature) │ └─────────────────┬────────────────────────┘
|
|
240
|
+
└─────────────────────────┘ │
|
|
241
|
+
▼
|
|
242
|
+
┌─────────────────────────┐ ┌──────────────────────────────────────────┐
|
|
243
|
+
│ 5. openspec-apply │────▶│ 6. systematic-debugging │
|
|
244
|
+
│ (Implement changes │ │ (Verify no errors, │
|
|
245
|
+
│ according to tasks) │ │ validate patterns) │
|
|
246
|
+
└─────────────────────────┘ └─────────────────┬────────────────────────┘
|
|
247
|
+
│
|
|
248
|
+
▼
|
|
249
|
+
┌─────────────────────────┐ ┌──────────────────────────────────────────┐
|
|
250
|
+
│ 7. openspec-verify │────▶│ 8. changelog-generator │
|
|
251
|
+
│ (Verify against │ │ (Generate change record │
|
|
252
|
+
│ specs and design) │ │ in changelogs/by-ai/) │
|
|
253
|
+
└─────────────────────────┘ └─────────────────┬────────────────────────┘
|
|
254
|
+
│
|
|
255
|
+
▼
|
|
256
|
+
┌─────────────────────────┐ ┌──────────────────────────────────────────┐
|
|
257
|
+
│ 9. openspec-archive │────▶│ 10. openspec-sync-specs (optional) │
|
|
258
|
+
│ (Archive completed │ │ (Sync specs to main) │
|
|
259
|
+
│ change) │ └──────────────────────────────────────────┘
|
|
260
|
+
└─────────────────────────┘
|
|
261
|
+
│
|
|
262
|
+
▼
|
|
263
|
+
┌─────────────────────────────────────────────────────────────────────────┐
|
|
264
|
+
│ │
|
|
265
|
+
│ ✅ CHANGE COMPLETED AND DOCUMENTED │
|
|
266
|
+
│ │
|
|
267
|
+
└─────────────────────────────────────────────────────────────────────────┘
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### Phase Descriptions - Changes/Iterations
|
|
271
|
+
|
|
272
|
+
| Phase | Skill | Description | Required Input | Expected Output |
|
|
273
|
+
|------|-------|-------------|-----------------|-----------------|
|
|
274
|
+
| 1 | `openspec-explore` | Analyze current code state, identify dependencies and modification points | Change request context | Impact report in `.agents/exploration-report.md` |
|
|
275
|
+
| 2 | `brainstorming` | Generate ideas based on exploration, suggest alternatives, ask user questions | Exploration report | `.agents/brainstorming-session.md` with decisions |
|
|
276
|
+
| 3 | `openspec-new-change` | Create change container with initial proposal | Brainstorming decisions | `openspec/changes/<name>/proposal.md` |
|
|
277
|
+
| 4 | `openspec-continue-change` or `openspec-ff-change` | Create specs, design, and tasks | Approved proposal | Complete OpenSpec artifacts |
|
|
278
|
+
| 5 | `openspec-apply-change` | Implement tasks as described | Tasks ready | Modified code following specs |
|
|
279
|
+
| 6 | `systematic-debugging` | Validate no errors, verify applied patterns | Modified code | Validation report in `.agents/debug-report.md` |
|
|
280
|
+
| 7 | `openspec-verify-change` | Verify implementation matches specs and design | Artifacts + code | Verification report |
|
|
281
|
+
| 8 | `changelog-generator` | Document change in history | Implemented feature | `changelogs/by-ai/[YYYY-MM-DD]-[feature].md` |
|
|
282
|
+
| 9 | `openspec-archive-change` | Archive completed change | Change ready | `openspec/changes/archive/YYYY-MM-DD-<name>/` |
|
|
283
|
+
| 10 | `openspec-sync-specs` (optional) | Synchronize delta specs to main specs | Delta specs | Main specs updated |
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## ✅ Validation Checklist
|
|
288
|
+
|
|
289
|
+
Before considering any task as **completed**, verify:
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
╔═══════════════════════════════════════════════════════════════════════════════════╗
|
|
293
|
+
║ MANDATORY CHECKLIST ║
|
|
294
|
+
╠═══════════════════════════════════════════════════════════════════════════════════╣
|
|
295
|
+
║ ║
|
|
296
|
+
║ □ Security ║
|
|
297
|
+
║ └─ □ secure-coding-cybersecurity executed ║
|
|
298
|
+
║ └─ □ No known vulnerabilities (SQL injection, XSS, etc.) ║
|
|
299
|
+
║ └─ □ Inputs validated and sanitized ║
|
|
300
|
+
║ └─ □ Secrets/keys not hardcoded ║
|
|
301
|
+
║ └─ □ No eval() or dynamic code execution with user input ║
|
|
302
|
+
║ ║
|
|
303
|
+
║ □ Maintainability ║
|
|
304
|
+
║ └─ □ code-maintainability executed ║
|
|
305
|
+
║ └─ □ Code follows project conventions ║
|
|
306
|
+
║ └─ □ Functions/classes have single responsibility ║
|
|
307
|
+
║ └─ □ Descriptive and semantic names ║
|
|
308
|
+
║ └─ □ No duplicate code (DRY principle) ║
|
|
309
|
+
║ └─ □ Documentation explains "why", not "what" ║
|
|
310
|
+
║ ║
|
|
311
|
+
║ □ Error Handling ║
|
|
312
|
+
║ └─ □ error-handling-patterns applied ║
|
|
313
|
+
║ └─ □ All errors handled gracefully ║
|
|
314
|
+
║ └─ □ Edge cases covered (null, empty, boundaries) ║
|
|
315
|
+
║ ║
|
|
316
|
+
║ □ Specification (OpenSpec) ║
|
|
317
|
+
║ └─ □ Change created with proposal, specs, design, tasks ║
|
|
318
|
+
║ └─ □ Implementation matches specification ║
|
|
319
|
+
║ └─ □ All WHEN/THEN scenarios implemented ║
|
|
320
|
+
║ └─ □ Design decisions documented ║
|
|
321
|
+
║ ║
|
|
322
|
+
║ □ Implementation ║
|
|
323
|
+
║ └─ □ All tasks marked complete [- [x]] ║
|
|
324
|
+
║ └─ □ Code tested and functional ║
|
|
325
|
+
║ └─ □ No console.logs or debug code ║
|
|
326
|
+
║ ║
|
|
327
|
+
║ □ Validation ║
|
|
328
|
+
║ └─ □ systematic-debugging executed without critical errors ║
|
|
329
|
+
║ └─ □ openspec-verify-change passed (or reviewed) ║
|
|
330
|
+
║ └─ □ Design patterns correctly applied ║
|
|
331
|
+
║ ║
|
|
332
|
+
║ □ Documentation ║
|
|
333
|
+
║ └─ □ Project index updated if structure changed ║
|
|
334
|
+
║ └─ □ Changelog generated in changelogs/by-ai/ ║
|
|
335
|
+
║ └─ □ README updated if necessary ║
|
|
336
|
+
║ ║
|
|
337
|
+
║ □ Closure ║
|
|
338
|
+
║ └─ □ Change archived with openspec-archive-change ║
|
|
339
|
+
║ └─ □ Delta specs synchronized (if applicable) ║
|
|
340
|
+
║ ║
|
|
341
|
+
╚═══════════════════════════════════════════════════════════════════════════════════╝
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## 📁 Directory Structure
|
|
347
|
+
|
|
348
|
+
```
|
|
349
|
+
project/
|
|
350
|
+
│
|
|
351
|
+
├── 📂 .agents/ # AI-generated documentation
|
|
352
|
+
│ ├── security-guidelines.md # Security practices
|
|
353
|
+
│ ├── maintainability-rules.md # Maintainability rules
|
|
354
|
+
│ ├── architecture-decisions.md # Architecture decisions
|
|
355
|
+
│ ├── project-index.md # Complete project index
|
|
356
|
+
│ ├── exploration-report.md # Exploration reports
|
|
357
|
+
│ ├── brainstorming-session.md # Brainstorming sessions
|
|
358
|
+
│ ├── debug-report.md # Debugging reports
|
|
359
|
+
│ └── agent-<domain>.md # Per-domain guides (e.g., agent-ui.md)
|
|
360
|
+
│
|
|
361
|
+
├── 📂 .claude/ # Project-specific skills
|
|
362
|
+
│ └── skills/
|
|
363
|
+
│ └── project-index-<domain>/
|
|
364
|
+
│ └── SKILL.md # Domain-specific skills
|
|
365
|
+
│
|
|
366
|
+
├── 📂 .openspec/ # Formal specifications (OpenSpec)
|
|
367
|
+
│ ├── specs/ # Main specifications
|
|
368
|
+
│ │ └── <capability>/
|
|
369
|
+
│ │ └── spec.md
|
|
370
|
+
│ └── changes/ # Active changes
|
|
371
|
+
│ ├── <change-name>/
|
|
372
|
+
│ │ ├── proposal.md # Why and what changes
|
|
373
|
+
│ │ ├── design.md # How to build it
|
|
374
|
+
│ │ ├── tasks.md # Implementation checklist
|
|
375
|
+
│ │ └── specs/ # Delta specs
|
|
376
|
+
│ │ └── <capability>/
|
|
377
|
+
│ │ └── spec.md
|
|
378
|
+
│ └── archive/ # Completed changes
|
|
379
|
+
│ └── YYYY-MM-DD-<name>/
|
|
380
|
+
│
|
|
381
|
+
├── 📂 changelogs/ # Change history
|
|
382
|
+
│ └── by-ai/ # AI-generated changelogs
|
|
383
|
+
│ └── YYYY-MM-DD-feature.md
|
|
384
|
+
│
|
|
385
|
+
└── [project source code]
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
390
|
+
## 🎓 Quick Usage
|
|
391
|
+
|
|
392
|
+
### To start a new project:
|
|
393
|
+
```
|
|
394
|
+
1. Execute: secure-coding-cybersecurity
|
|
395
|
+
2. Execute: code-maintainability
|
|
396
|
+
3. Execute: brainstorming
|
|
397
|
+
4. Execute: openspec-new-change (or openspec-ff-change for quick mode)
|
|
398
|
+
5. Execute: openspec-continue-change (create specs, design, tasks)
|
|
399
|
+
6. Execute: openspec-apply-change
|
|
400
|
+
7. Execute: systematic-debugging
|
|
401
|
+
8. Execute: openspec-verify-change
|
|
402
|
+
9. Execute: changelog-generator
|
|
403
|
+
10. Execute: openspec-archive-change
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### To modify an existing project:
|
|
407
|
+
```
|
|
408
|
+
1. Check if documentation exists (.agents/, openspec/)
|
|
409
|
+
└─ If NOT exists → Execute: project-index
|
|
410
|
+
|
|
411
|
+
2. Execute: openspec-explore
|
|
412
|
+
3. Execute: brainstorming
|
|
413
|
+
4. Execute: openspec-new-change (create change)
|
|
414
|
+
5. Execute: openspec-continue-change (complete artifacts)
|
|
415
|
+
6. Execute: openspec-apply-change (implement)
|
|
416
|
+
7. Execute: systematic-debugging (validate)
|
|
417
|
+
8. Execute: openspec-verify-change (verify against specs)
|
|
418
|
+
9. Execute: changelog-generator
|
|
419
|
+
10. Execute: openspec-archive-change
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
### Quick OpenSpec commands:
|
|
423
|
+
```
|
|
424
|
+
/opsx:explore - Explore before implementing
|
|
425
|
+
/opsx:new <name> - Create new change step by step
|
|
426
|
+
/opsx:ff <name> - Fast-forward (create all quickly)
|
|
427
|
+
/opsx:continue - Continue existing change
|
|
428
|
+
/opsx:apply - Implement tasks
|
|
429
|
+
/opsx:verify - Verify implementation
|
|
430
|
+
/opsx:archive - Archive completed change
|
|
431
|
+
/opsx:onboard - OpenSpec tutorial
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
---
|
|
435
|
+
|
|
436
|
+
## 📌 Important Notes
|
|
437
|
+
|
|
438
|
+
> **⚠️ NEVER skip workflow steps.** Each skill exists to ensure quality.
|
|
439
|
+
|
|
440
|
+
> **📝 Documentation = Code.** If not documented in OpenSpec, it's not done.
|
|
441
|
+
|
|
442
|
+
> **🔒 Security first.** Always execute secure-coding-cybersecurity before any implementation.
|
|
443
|
+
|
|
444
|
+
> **🧠 Brainstorming is mandatory.** Never implement without questioning the approach first.
|
|
445
|
+
|
|
446
|
+
> **✅ Validation before commit.** Always execute systematic-debugging and openspec-verify before finishing.
|
|
447
|
+
|
|
448
|
+
> **📦 One change = One feature.** Don't mix multiple features in a single change.
|
|
449
|
+
|
|
450
|
+
> **🔄 Sync specs.** After archiving, synchronize delta specs to main specs.
|
|
451
|
+
|
|
452
|
+
---
|
|
453
|
+
|
|
454
|
+
```
|
|
455
|
+
╔═══════════════════════════════════════════════════════════════════════════════════╗
|
|
456
|
+
║ ║
|
|
457
|
+
║ "Well-specified code is well-implemented code" ║
|
|
458
|
+
║ ║
|
|
459
|
+
║ Framework AGENTS.md v2.0 ║
|
|
460
|
+
║ ║
|
|
461
|
+
║ 22 Skills Available | OpenSpec Workflow Integrated ║
|
|
462
|
+
║ ║
|
|
463
|
+
╚═══════════════════════════════════════════════════════════════════════════════════╝
|
|
464
|
+
```
|