@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.
- package/LICENSE +21 -0
- package/README.ko.md +351 -0
- package/README.md +314 -0
- package/bin/cli.js +4 -0
- package/harness/agent-memory/architect.md +42 -0
- package/harness/agent-memory/planner.md +47 -0
- package/harness/agent-memory/reviewer.md +46 -0
- package/harness/agent-memory/sprint-manager.md +49 -0
- package/harness/agents/architect.md +177 -0
- package/harness/agents/planner.md +320 -0
- package/harness/agents/reviewer.md +273 -0
- package/harness/agents/sprint-manager.md +250 -0
- package/harness/core-rules.md +136 -0
- package/harness/dependency-map.md +58 -0
- package/harness/failure-patterns.md +63 -0
- package/harness/features.md +53 -0
- package/harness/project-brief.md +145 -0
- package/harness/project-state.md +85 -0
- package/harness/skills/bootstrap.md +326 -0
- package/harness/skills/code-review-pr.md +141 -0
- package/harness/skills/deployment.md +144 -0
- package/harness/skills/feature-breakdown.md +136 -0
- package/harness/skills/impact-analysis.md +110 -0
- package/harness/skills/investigate.md +172 -0
- package/harness/skills/learn.md +308 -0
- package/harness/skills/pivot.md +171 -0
- package/harness/skills/security-checklist.md +101 -0
- package/harness/skills/test-integrity.md +94 -0
- package/package.json +53 -0
- package/src/init.js +772 -0
- package/templates/agent.template.md +56 -0
- package/templates/skill.template.md +54 -0
|
@@ -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
|
+
```
|