@cluesmith/codev 1.2.3 → 1.4.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/bin/generate-image.js +7 -0
- package/dist/agent-farm/cli.d.ts.map +1 -1
- package/dist/agent-farm/cli.js +2 -37
- package/dist/agent-farm/cli.js.map +1 -1
- package/dist/agent-farm/commands/cleanup.js +12 -51
- package/dist/agent-farm/commands/cleanup.js.map +1 -1
- package/dist/agent-farm/commands/spawn.d.ts.map +1 -1
- package/dist/agent-farm/commands/spawn.js +13 -1
- package/dist/agent-farm/commands/spawn.js.map +1 -1
- package/dist/agent-farm/commands/start.js +32 -0
- package/dist/agent-farm/commands/start.js.map +1 -1
- package/dist/agent-farm/servers/dashboard-server.d.ts +0 -2
- package/dist/agent-farm/servers/dashboard-server.d.ts.map +1 -1
- package/dist/agent-farm/servers/dashboard-server.js +196 -9
- package/dist/agent-farm/servers/dashboard-server.js.map +1 -1
- package/dist/agent-farm/servers/open-server.d.ts +0 -2
- package/dist/agent-farm/servers/open-server.d.ts.map +1 -1
- package/dist/agent-farm/servers/open-server.js +12 -7
- package/dist/agent-farm/servers/open-server.js.map +1 -1
- package/dist/agent-farm/servers/tower-server.d.ts +0 -2
- package/dist/agent-farm/servers/tower-server.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-server.js +16 -4
- package/dist/agent-farm/servers/tower-server.js.map +1 -1
- package/dist/agent-farm/types.d.ts +1 -0
- package/dist/agent-farm/types.d.ts.map +1 -1
- package/dist/agent-farm/utils/shell.d.ts +2 -1
- package/dist/agent-farm/utils/shell.d.ts.map +1 -1
- package/dist/agent-farm/utils/shell.js +35 -2
- package/dist/agent-farm/utils/shell.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +26 -17
- package/dist/cli.js.map +1 -1
- package/dist/commands/adopt.d.ts.map +1 -1
- package/dist/commands/adopt.js +27 -2
- package/dist/commands/adopt.js.map +1 -1
- package/dist/commands/consult/index.d.ts.map +1 -1
- package/dist/commands/consult/index.js +23 -7
- package/dist/commands/consult/index.js.map +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +51 -0
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/generate-image.d.ts +13 -0
- package/dist/commands/generate-image.d.ts.map +1 -0
- package/dist/commands/generate-image.js +155 -0
- package/dist/commands/generate-image.js.map +1 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +23 -2
- package/dist/commands/init.js.map +1 -1
- package/dist/version.d.ts +3 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +23 -0
- package/dist/version.js.map +1 -0
- package/package.json +5 -3
- package/skeleton/DEPENDENCIES.md +3 -3
- package/skeleton/protocols/maintain/protocol.md +2 -2
- package/skeleton/{docs → resources}/commands/codev.md +0 -39
- package/skeleton/{docs → resources}/commands/consult.md +12 -2
- package/skeleton/{docs → resources}/commands/overview.md +0 -1
- package/skeleton/roles/architect.md +22 -0
- package/skeleton/roles/builder.md +22 -0
- package/skeleton/templates/arch.md +56 -0
- package/skeleton/templates/pr-overview.md +73 -0
- package/templates/dashboard-split.html +781 -39
- package/templates/open.html +278 -0
- package/templates/tower.html +71 -12
- package/dist/agent-farm/index.d.ts +0 -7
- package/dist/agent-farm/index.d.ts.map +0 -1
- package/dist/agent-farm/index.js +0 -373
- package/dist/agent-farm/index.js.map +0 -1
- package/skeleton/bin/agent-farm +0 -7
- package/skeleton/bin/codev-doctor +0 -335
- package/skeleton/resources/lessons-learned.md +0 -30
- /package/skeleton/{roles/review-types → consult-types}/impl-review.md +0 -0
- /package/skeleton/{roles/review-types → consult-types}/integration-review.md +0 -0
- /package/skeleton/{roles/review-types → consult-types}/plan-review.md +0 -0
- /package/skeleton/{roles/review-types → consult-types}/pr-ready.md +0 -0
- /package/skeleton/{roles/review-types → consult-types}/spec-review.md +0 -0
- /package/skeleton/{docs → resources}/commands/agent-farm.md +0 -0
- /package/skeleton/{AGENTS.md.template → templates/AGENTS.md} +0 -0
- /package/skeleton/{CLAUDE.md.template → templates/CLAUDE.md} +0 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# PR Overview Template
|
|
2
|
+
|
|
3
|
+
Use this template to prepare context for architect-mediated PR reviews.
|
|
4
|
+
|
|
5
|
+
## PR Info
|
|
6
|
+
- **Number**: #NNN
|
|
7
|
+
- **Title**: [PR Title]
|
|
8
|
+
- **Branch**: [branch-name]
|
|
9
|
+
- **Author**: [author]
|
|
10
|
+
- **Spec**: [link to spec if applicable]
|
|
11
|
+
- **Plan**: [link to plan if applicable]
|
|
12
|
+
|
|
13
|
+
## Summary
|
|
14
|
+
|
|
15
|
+
[1-2 sentence summary of what this PR does and why]
|
|
16
|
+
|
|
17
|
+
## Key Changes
|
|
18
|
+
|
|
19
|
+
### File: `path/to/file1.ts`
|
|
20
|
+
**What**: [Brief description of changes]
|
|
21
|
+
**Why**: [Rationale for these changes]
|
|
22
|
+
|
|
23
|
+
### File: `path/to/file2.ts`
|
|
24
|
+
**What**: [Brief description of changes]
|
|
25
|
+
**Why**: [Rationale for these changes]
|
|
26
|
+
|
|
27
|
+
## Diff
|
|
28
|
+
|
|
29
|
+
```diff
|
|
30
|
+
[Include the relevant portions of the diff, or full diff if small]
|
|
31
|
+
[For large PRs, focus on the most significant changes]
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Test Coverage
|
|
35
|
+
|
|
36
|
+
- [ ] Unit tests added/updated
|
|
37
|
+
- [ ] Integration tests added/updated
|
|
38
|
+
- [ ] Manual testing completed
|
|
39
|
+
|
|
40
|
+
**Test summary**: [Brief description of test coverage]
|
|
41
|
+
|
|
42
|
+
## Questions for Reviewer
|
|
43
|
+
|
|
44
|
+
1. [Specific question about design decision]
|
|
45
|
+
2. [Question about edge case handling]
|
|
46
|
+
3. [Question about alternative approaches considered]
|
|
47
|
+
|
|
48
|
+
## Context from Spec/Plan
|
|
49
|
+
|
|
50
|
+
[Include relevant excerpts from the spec or plan that inform this PR]
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Usage
|
|
55
|
+
|
|
56
|
+
To use this template for architect-mediated reviews:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Fill out this template and save as overview.md, then:
|
|
60
|
+
consult --model gemini pr 68 --context overview.md
|
|
61
|
+
|
|
62
|
+
# Or pipe directly:
|
|
63
|
+
cat overview.md | consult --model gemini pr 68 --context -
|
|
64
|
+
|
|
65
|
+
# For 3-way parallel reviews:
|
|
66
|
+
consult --model gemini pr 68 --context overview.md &
|
|
67
|
+
consult --model codex pr 68 --context overview.md &
|
|
68
|
+
consult --model claude pr 68 --context overview.md &
|
|
69
|
+
wait
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The consultant will analyze the provided context WITHOUT accessing the filesystem,
|
|
73
|
+
resulting in faster and more consistent reviews.
|