vector-cadence-skills 0.1.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/CONTRIBUTING.md +69 -0
  3. package/DOCUMENTATION.md +1081 -0
  4. package/README.md +146 -0
  5. package/examples/bug-debug-lifecycle.md +39 -0
  6. package/examples/feature-lifecycle.md +54 -0
  7. package/examples/harness-subagent-plan.md +39 -0
  8. package/examples/vertical-slices.md +43 -0
  9. package/package.json +39 -0
  10. package/references/architecture-overview.md +279 -0
  11. package/references/artifact-model.md +20 -0
  12. package/references/final-skill-quality-bar.md +33 -0
  13. package/references/minimal-mode.md +50 -0
  14. package/references/source-integration-map.md +159 -0
  15. package/references/subagent-policy.md +30 -0
  16. package/references/tiering.md +23 -0
  17. package/scripts/validate-skills.mjs +187 -0
  18. package/skills/vc-align/SKILL.md +124 -0
  19. package/skills/vc-architecture/SKILL.md +131 -0
  20. package/skills/vc-debug/SKILL.md +154 -0
  21. package/skills/vc-execute/SKILL.md +166 -0
  22. package/skills/vc-handoff/SKILL.md +127 -0
  23. package/skills/vc-harness-architect/SKILL.md +138 -0
  24. package/skills/vc-learn/SKILL.md +123 -0
  25. package/skills/vc-orient/SKILL.md +108 -0
  26. package/skills/vc-plan/SKILL.md +156 -0
  27. package/skills/vc-prototype/SKILL.md +103 -0
  28. package/skills/vc-review/SKILL.md +156 -0
  29. package/skills/vc-setup/SKILL.md +126 -0
  30. package/skills/vc-skill-author/SKILL.md +131 -0
  31. package/skills/vc-slice/SKILL.md +121 -0
  32. package/skills/vc-triage/SKILL.md +149 -0
  33. package/skills.json +98 -0
  34. package/templates/AGENTS.md +82 -0
  35. package/templates/CONTEXT.md +23 -0
  36. package/templates/vc-budget.yml +4 -0
@@ -0,0 +1,23 @@
1
+ # Context
2
+
3
+ This file is a domain glossary. It defines what things are called in this project.
4
+
5
+ Do not put implementation plans, TODOs, API designs, or transient requirements here.
6
+
7
+ ## Terms
8
+
9
+ ### <Term>
10
+
11
+ Definition:
12
+ Aliases to avoid:
13
+ Related terms:
14
+
15
+ ## Ambiguous or overloaded terms
16
+
17
+ Use this section only when a term is actively confusing and needs resolution.
18
+
19
+ ### <Term>
20
+
21
+ Current meanings:
22
+ Canonical term to use:
23
+ Notes:
@@ -0,0 +1,4 @@
1
+ monthly_limit_usd: 200
2
+ tier_3_approval_threshold_usd: 10
3
+ alert_at_percent: 80
4
+ require_approval_for_tier_3: true