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.
- package/CHANGELOG.md +10 -0
- package/CONTRIBUTING.md +69 -0
- package/DOCUMENTATION.md +1081 -0
- package/README.md +146 -0
- package/examples/bug-debug-lifecycle.md +39 -0
- package/examples/feature-lifecycle.md +54 -0
- package/examples/harness-subagent-plan.md +39 -0
- package/examples/vertical-slices.md +43 -0
- package/package.json +39 -0
- package/references/architecture-overview.md +279 -0
- package/references/artifact-model.md +20 -0
- package/references/final-skill-quality-bar.md +33 -0
- package/references/minimal-mode.md +50 -0
- package/references/source-integration-map.md +159 -0
- package/references/subagent-policy.md +30 -0
- package/references/tiering.md +23 -0
- package/scripts/validate-skills.mjs +187 -0
- package/skills/vc-align/SKILL.md +124 -0
- package/skills/vc-architecture/SKILL.md +131 -0
- package/skills/vc-debug/SKILL.md +154 -0
- package/skills/vc-execute/SKILL.md +166 -0
- package/skills/vc-handoff/SKILL.md +127 -0
- package/skills/vc-harness-architect/SKILL.md +138 -0
- package/skills/vc-learn/SKILL.md +123 -0
- package/skills/vc-orient/SKILL.md +108 -0
- package/skills/vc-plan/SKILL.md +156 -0
- package/skills/vc-prototype/SKILL.md +103 -0
- package/skills/vc-review/SKILL.md +156 -0
- package/skills/vc-setup/SKILL.md +126 -0
- package/skills/vc-skill-author/SKILL.md +131 -0
- package/skills/vc-slice/SKILL.md +121 -0
- package/skills/vc-triage/SKILL.md +149 -0
- package/skills.json +98 -0
- package/templates/AGENTS.md +82 -0
- package/templates/CONTEXT.md +23 -0
- package/templates/vc-budget.yml +4 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
- Added initial production-ready Vector Cadence integrated skill suite.
|
|
6
|
+
- Added setup, orient, align, plan, slice, triage, prototype, execute, debug, review, architecture, learn, handoff, harness architect, and skill author skills.
|
|
7
|
+
- Added README, comprehensive documentation, architecture overview, and source integration map.
|
|
8
|
+
- Added templates for `AGENTS.md`, `CONTEXT.md`, and `.vc-budget.yml`.
|
|
9
|
+
- Added machine-readable `skills.json` index.
|
|
10
|
+
- Added validation script for skill metadata, links, legacy command leakage, and line-count warnings.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Contributing to Vector Cadence Skills
|
|
2
|
+
|
|
3
|
+
## Principle
|
|
4
|
+
|
|
5
|
+
Do not add a top-level skill unless it owns a distinct lifecycle responsibility.
|
|
6
|
+
|
|
7
|
+
If the content is long rationale, use a reference doc. If the behavior needs a tool, build an extension. If it is deterministic, consider a script.
|
|
8
|
+
|
|
9
|
+
## Skill structure
|
|
10
|
+
|
|
11
|
+
Each skill should use this shape when practical:
|
|
12
|
+
|
|
13
|
+
```md
|
|
14
|
+
---
|
|
15
|
+
name: vc-example
|
|
16
|
+
description: Does X. Use when Y.
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# Vector Cadence Example
|
|
20
|
+
|
|
21
|
+
## Purpose
|
|
22
|
+
## Operating model
|
|
23
|
+
## When to use
|
|
24
|
+
## When to skip
|
|
25
|
+
## Inputs
|
|
26
|
+
## Workflow
|
|
27
|
+
## Output
|
|
28
|
+
## Guardrails
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Simple skills may omit `Operating model` or `Inputs` when unnecessary.
|
|
32
|
+
|
|
33
|
+
## Description rules
|
|
34
|
+
|
|
35
|
+
Descriptions should:
|
|
36
|
+
|
|
37
|
+
- be under 1024 characters,
|
|
38
|
+
- be concrete and trigger-rich,
|
|
39
|
+
- explain what the skill does,
|
|
40
|
+
- include `Use when...`,
|
|
41
|
+
- avoid vague “helps with” language.
|
|
42
|
+
|
|
43
|
+
## Runtime skill rules
|
|
44
|
+
|
|
45
|
+
- Keep runtime skills concise.
|
|
46
|
+
- Keep source rationale in documentation, not every `SKILL.md`.
|
|
47
|
+
- Do not invent tools or APIs.
|
|
48
|
+
- Say “if the harness provides...” for optional tools such as subagents, Taste, or code search.
|
|
49
|
+
- Make side effects explicit.
|
|
50
|
+
- End with clear output and next-skill routing.
|
|
51
|
+
|
|
52
|
+
## When to create something else
|
|
53
|
+
|
|
54
|
+
| Need | Add |
|
|
55
|
+
|---|---|
|
|
56
|
+
| detailed rationale | reference doc |
|
|
57
|
+
| deterministic validation/generation | script |
|
|
58
|
+
| new tool/provider/subagent/search | extension |
|
|
59
|
+
| install/default UX | wrapper CLI |
|
|
60
|
+
|
|
61
|
+
## Validation
|
|
62
|
+
|
|
63
|
+
Run:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
node scripts/validate-skills.mjs
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Fix errors before publishing. Warnings should be reviewed but may be acceptable for intentionally complex skills.
|