@kodevibe/harness 0.8.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.
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: {agent-name}
3
+ description: {One-line description of the agent}
4
+ ---
5
+
6
+ # {Agent Name}
7
+
8
+ ## Role
9
+ {Define this agent's responsibilities and authority in 2-3 sentences}
10
+
11
+ ## Referenced Skills
12
+ - {skill-name-1}.md
13
+ - {skill-name-2}.md
14
+
15
+ ## Referenced Files
16
+ - failure-patterns.md
17
+ - project-state.md
18
+
19
+ ## Procedure
20
+
21
+ ### Input
22
+ Information the user must provide:
23
+ - {input 1}
24
+ - {input 2}
25
+
26
+ ### Steps
27
+ 1. {Step 1}
28
+ 2. {Step 2}
29
+ 3. {Step 3}
30
+
31
+ ### Output Format
32
+ {Define the expected output structure}
33
+
34
+ ## Constraints
35
+ - {What this agent must NOT do}
36
+ - {Actions outside this agent's authority}
37
+
38
+ ### 🧭 Navigation — After {Agent Name}
39
+
40
+ After this agent completes, always append a 🧭 block:
41
+
42
+ | Result | 🧭 Next Step |
43
+ |---|---|
44
+ | {Outcome 1} | `{next-skill}` — "{copy-paste prompt}" |
45
+ | {Outcome 2} | `{next-skill}` — "{copy-paste prompt}" |
46
+
47
+ Example 🧭 block:
48
+ ```
49
+ ---
50
+ 🧭 Next Step
51
+ → Next: `{next-skill or agent}`
52
+ → Prompt: "{copy-paste ready prompt}"
53
+ → Why: {one-sentence reason}
54
+ → Pipeline: {🟢|🔵|🔴|🟡|🟣} Step {N}/{total}
55
+ ---
56
+ ```
@@ -0,0 +1,54 @@
1
+ # {Skill Name}
2
+
3
+ ## Purpose
4
+ {Describe the specific problem this skill solves in 1-2 sentences}
5
+
6
+ ## When to Apply
7
+ Situations where this skill should be used:
8
+ - {Trigger condition 1}
9
+ - {Trigger condition 2}
10
+
11
+ ## Procedure
12
+ 1. {First step}
13
+ 2. {Second step}
14
+ 3. {Third step}
15
+
16
+ ## Checklist
17
+ - [ ] {Required check 1}
18
+ - [ ] {Required check 2}
19
+ - [ ] (FP-NNN) {Item derived from a failure pattern}
20
+
21
+ ## Examples
22
+
23
+ ### Good
24
+ ```typescript
25
+ // Correct implementation example
26
+ ```
27
+
28
+ ### Bad
29
+ ```typescript
30
+ // Common mistake example
31
+ ```
32
+
33
+ ## Related Failure Patterns
34
+ - FP-NNN: {description} → reflected in checklist item X
35
+
36
+ ### 🧭 Navigation — After {Skill Name}
37
+
38
+ After this skill completes, always append a 🧭 block:
39
+
40
+ | Result | 🧭 Next Step |
41
+ |---|---|
42
+ | {Outcome 1} | `{next-skill}` — "{copy-paste prompt}" |
43
+ | {Outcome 2} | `{next-skill}` — "{copy-paste prompt}" |
44
+
45
+ Example 🧭 block:
46
+ ```
47
+ ---
48
+ 🧭 Next Step
49
+ → Next: `{next-skill or agent}`
50
+ → Prompt: "{copy-paste ready prompt}"
51
+ → Why: {one-sentence reason}
52
+ → Pipeline: {🟢|🔵|🔴|🟡|🟣} Step {N}/{total}
53
+ ---
54
+ ```