@ai-content-space/loopx 0.2.3 → 0.2.4

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 (38) hide show
  1. package/package.json +1 -1
  2. package/plugins/loopx/.codex-plugin/plugin.json +1 -1
  3. package/plugins/loopx/skills/clarify/SKILL.md +1 -1
  4. package/plugins/loopx/skills/debug/SKILL.md +1 -1
  5. package/plugins/loopx/skills/doc-readability/SKILL.md +222 -0
  6. package/plugins/loopx/skills/doc-readability/references/prd.md +269 -0
  7. package/plugins/loopx/skills/exec/SKILL.md +1 -1
  8. package/plugins/loopx/skills/final-review/SKILL.md +1 -1
  9. package/plugins/loopx/skills/finish/SKILL.md +1 -1
  10. package/plugins/loopx/skills/fix-review/SKILL.md +1 -1
  11. package/plugins/loopx/skills/go-style/SKILL.md +1 -1
  12. package/plugins/loopx/skills/kratos/SKILL.md +1 -1
  13. package/plugins/loopx/skills/plan/SKILL.md +1 -1
  14. package/plugins/loopx/skills/refactor-plan/SKILL.md +1 -1
  15. package/plugins/loopx/skills/review/SKILL.md +1 -1
  16. package/plugins/loopx/skills/spec/SKILL.md +1 -1
  17. package/plugins/loopx/skills/subagent-exec/SKILL.md +1 -1
  18. package/plugins/loopx/skills/tdd/SKILL.md +1 -1
  19. package/plugins/loopx/skills/verify/SKILL.md +1 -1
  20. package/skills/RESOLVER.md +3 -1
  21. package/skills/clarify/SKILL.md +1 -1
  22. package/skills/debug/SKILL.md +1 -1
  23. package/skills/doc-readability/SKILL.md +222 -0
  24. package/skills/doc-readability/references/prd.md +269 -0
  25. package/skills/exec/SKILL.md +1 -1
  26. package/skills/final-review/SKILL.md +1 -1
  27. package/skills/finish/SKILL.md +1 -1
  28. package/skills/fix-review/SKILL.md +1 -1
  29. package/skills/go-style/SKILL.md +1 -1
  30. package/skills/kratos/SKILL.md +1 -1
  31. package/skills/plan/SKILL.md +1 -1
  32. package/skills/refactor-plan/SKILL.md +1 -1
  33. package/skills/review/SKILL.md +1 -1
  34. package/skills/spec/SKILL.md +1 -1
  35. package/skills/subagent-exec/SKILL.md +1 -1
  36. package/skills/tdd/SKILL.md +1 -1
  37. package/skills/verify/SKILL.md +1 -1
  38. package/src/install-discovery.mjs +1 -0
@@ -3,7 +3,7 @@ name: tdd
3
3
  description: "Guides feature and bugfix implementation through a failing test before production code and red-green-refactor discipline. Not for generated files or throwaway prototypes."
4
4
  when_to_use: "tdd, failing test first, feature implementation, bugfix, regression test, red green refactor, 测试先行"
5
5
  metadata:
6
- version: "0.2.3"
6
+ version: "0.2.4"
7
7
  ---
8
8
 
9
9
  # Test-Driven Development (TDD)
@@ -3,7 +3,7 @@ name: verify
3
3
  description: "Requires fresh verification evidence before claiming work is complete, fixed, passing, review-ready, or ready to commit. Not for speculative confidence or stale results."
4
4
  when_to_use: "verify, completion claim, fixed claim, tests pass, review-ready, commit, fresh evidence, 验证, 完成前检查"
5
5
  metadata:
6
- version: "0.2.3"
6
+ version: "0.2.4"
7
7
  ---
8
8
 
9
9
  # Verification Before Completion
@@ -28,6 +28,7 @@ const LOOPX_SKILLS = [
28
28
  'debug',
29
29
  'tdd',
30
30
  'verify',
31
+ 'doc-readability',
31
32
  'go-style',
32
33
  'kratos',
33
34
  ];