@modus-ai/modus 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +229 -0
  2. package/dist/cli/index.js +1 -1
  3. package/dist/cli/index.js.map +1 -1
  4. package/dist/commands/init.js +1 -1
  5. package/dist/commands/init.js.map +1 -1
  6. package/dist/generators/claude.js +24 -24
  7. package/dist/generators/claude.js.map +1 -1
  8. package/dist/generators/codebuddy.js +24 -24
  9. package/dist/generators/codebuddy.js.map +1 -1
  10. package/dist/generators/cursor.d.ts +2 -1
  11. package/dist/generators/cursor.d.ts.map +1 -1
  12. package/dist/generators/cursor.js +46 -70
  13. package/dist/generators/cursor.js.map +1 -1
  14. package/package.json +1 -1
  15. package/schemas/harness-schema.yaml +7 -7
  16. package/templates/agents/{modus-harness-01-analysis.md → modus-analyst.md} +2 -2
  17. package/templates/agents/{modus-harness-07-deploy.md → modus-deployer.md} +2 -2
  18. package/templates/agents/{modus-harness-01-5-design.md → modus-designer.md} +3 -3
  19. package/templates/agents/{modus-harness-02-dev.md → modus-developer.md} +2 -2
  20. package/templates/agents/{modus-harness-04-perf.md → modus-perf-auditor.md} +2 -2
  21. package/templates/agents/{modus-harness-06-review.md → modus-reviewer.md} +2 -2
  22. package/templates/agents/{modus-harness-05-security.md → modus-security-auditor.md} +2 -2
  23. package/templates/agents/{modus-harness-00-skills-builder.md → modus-skill-creator.md} +2 -2
  24. package/templates/agents/{modus-harness-03-test.md → modus-tester.md} +2 -2
  25. package/templates/commands/vibe.md +12 -8
  26. package/templates/skills/{modus-harness-agents/01-analysis → modus-agents/analyst}/SKILL.md +2 -2
  27. package/templates/skills/{modus-harness-agents/07-deploy → modus-agents/deployer}/SKILL.md +2 -2
  28. package/templates/skills/{modus-harness-agents/01-5-design → modus-agents/designer}/SKILL.md +2 -2
  29. package/templates/skills/{modus-harness-agents/02-dev → modus-agents/developer}/SKILL.md +2 -2
  30. package/templates/skills/{modus-harness-agents/04-perf → modus-agents/perf-auditor}/SKILL.md +2 -2
  31. package/templates/skills/{modus-harness-agents/06-review → modus-agents/reviewer}/SKILL.md +2 -2
  32. package/templates/skills/{modus-harness-agents/05-security → modus-agents/security-auditor}/SKILL.md +2 -2
  33. package/templates/skills/modus-agents/skill-creator/SKILL.md +1063 -0
  34. package/templates/skills/{modus-harness-agents/03-test → modus-agents/tester}/SKILL.md +2 -2
  35. package/templates/skills/modus-design-brief/SKILL.md +1 -1
  36. package/templates/skills/modus-harness/SKILL.md +16 -16
  37. package/templates/skills/modus-init/SKILL.md +702 -84
  38. package/templates/skills/modus-plan/SKILL.md +1 -1
  39. package/templates/skills/modus-spec/SKILL.md +2 -2
  40. package/templates/skills/modus-vibe/SKILL.md +200 -93
  41. package/templates/skills/modus-harness-agents/00-skills-builder/SKILL.md +0 -367
@@ -1,11 +1,11 @@
1
1
  ---
2
- name: modus-harness-04-perf
2
+ name: modus-perf-auditor
3
3
  description: Use this skill when the Harness orchestrator needs to perform static performance audit on code changes. Detects N+1 queries, missing batch operations, unbounded data fetches, deep pagination risks, and ES query issues. Generates 04-perf-report.md. Triggered by modus-harness in parallel with SubAgents 03 and 05 after Gate A passes.
4
4
  allowed-tools: Read, Write, Glob
5
5
  disable: false
6
6
  ---
7
7
 
8
- # modus-harness-04-perf(性能审计 SubAgent)
8
+ # modus-perf-auditor(性能审计 SubAgent)
9
9
 
10
10
  **调用方:** Harness Orchestrator(与 03/05 并行启动)
11
11
  **输入:** `02-sprint-contract.md` + 代码变更
@@ -1,11 +1,11 @@
1
1
  ---
2
- name: modus-harness-06-review
2
+ name: modus-reviewer
3
3
  description: Use this skill when the Harness orchestrator needs to perform comprehensive code review after all audit reports are ready. Evaluates all artifacts (01-analysis.md through 05-security-report.md), grades issues as P1/P2/P3, and generates cr-report.md with HANDOFF block. Gate C: if P1/P2 issues found, triggers Loop 2 re-entry. Triggered by modus-harness after Gate B passes.
4
4
  allowed-tools: Read, Write, Glob
5
5
  disable: false
6
6
  ---
7
7
 
8
- # modus-harness-06-review(代码评审 SubAgent)
8
+ # modus-reviewer(代码评审 SubAgent)
9
9
 
10
10
  **调用方:** Harness Orchestrator(Gate B 通过后触发)
11
11
  **输入:** 全部产出物(01-analysis.md 至 05-security-report.md)+ 代码变更
@@ -1,11 +1,11 @@
1
1
  ---
2
- name: modus-harness-05-security
2
+ name: modus-security-auditor
3
3
  description: Use this skill when the Harness orchestrator needs to perform security audit on code changes. Checks multi-tenant data isolation, missing authorization annotations, sensitive data logging, SQL injection risks, and bypass interface protection. Generates 05-security-report.md. Triggered by modus-harness in parallel with SubAgents 03 and 04 after Gate A passes.
4
4
  allowed-tools: Read, Write, Glob
5
5
  disable: false
6
6
  ---
7
7
 
8
- # modus-harness-05-security(安全审计 SubAgent)
8
+ # modus-security-auditor(安全审计 SubAgent)
9
9
 
10
10
  **调用方:** Harness Orchestrator(与 03/04 并行启动)
11
11
  **输入:** `02-sprint-contract.md` + 代码变更