@cluesmith/codev 1.1.0 → 1.2.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 (146) hide show
  1. package/dist/agent-farm/cli.d.ts.map +1 -1
  2. package/dist/agent-farm/cli.js +19 -0
  3. package/dist/agent-farm/cli.js.map +1 -1
  4. package/dist/agent-farm/commands/cleanup.d.ts.map +1 -1
  5. package/dist/agent-farm/commands/cleanup.js +18 -1
  6. package/dist/agent-farm/commands/cleanup.js.map +1 -1
  7. package/dist/agent-farm/commands/consult.d.ts +16 -0
  8. package/dist/agent-farm/commands/consult.d.ts.map +1 -0
  9. package/dist/agent-farm/commands/consult.js +51 -0
  10. package/dist/agent-farm/commands/consult.js.map +1 -0
  11. package/dist/agent-farm/commands/open.js +6 -6
  12. package/dist/agent-farm/commands/open.js.map +1 -1
  13. package/dist/agent-farm/commands/spawn.d.ts.map +1 -1
  14. package/dist/agent-farm/commands/spawn.js +51 -42
  15. package/dist/agent-farm/commands/spawn.js.map +1 -1
  16. package/dist/agent-farm/commands/start.d.ts.map +1 -1
  17. package/dist/agent-farm/commands/start.js +9 -14
  18. package/dist/agent-farm/commands/start.js.map +1 -1
  19. package/dist/agent-farm/commands/util.js +2 -2
  20. package/dist/agent-farm/commands/util.js.map +1 -1
  21. package/dist/agent-farm/db/errors.d.ts +4 -0
  22. package/dist/agent-farm/db/errors.d.ts.map +1 -1
  23. package/dist/agent-farm/db/errors.js +8 -0
  24. package/dist/agent-farm/db/errors.js.map +1 -1
  25. package/dist/agent-farm/servers/dashboard-server.js +125 -71
  26. package/dist/agent-farm/servers/dashboard-server.js.map +1 -1
  27. package/dist/agent-farm/servers/open-server.d.ts +9 -0
  28. package/dist/agent-farm/servers/open-server.d.ts.map +1 -0
  29. package/dist/agent-farm/servers/{annotate-server.js → open-server.js} +17 -15
  30. package/dist/agent-farm/servers/open-server.js.map +1 -0
  31. package/dist/agent-farm/servers/tower-server.js +4 -7
  32. package/dist/agent-farm/servers/tower-server.js.map +1 -1
  33. package/dist/agent-farm/state.d.ts +5 -0
  34. package/dist/agent-farm/state.d.ts.map +1 -1
  35. package/dist/agent-farm/state.js +17 -0
  36. package/dist/agent-farm/state.js.map +1 -1
  37. package/dist/agent-farm/types.d.ts +1 -1
  38. package/dist/agent-farm/types.d.ts.map +1 -1
  39. package/dist/agent-farm/utils/config.d.ts.map +1 -1
  40. package/dist/agent-farm/utils/config.js +13 -7
  41. package/dist/agent-farm/utils/config.js.map +1 -1
  42. package/dist/agent-farm/utils/port-registry.d.ts +1 -1
  43. package/dist/agent-farm/utils/port-registry.d.ts.map +1 -1
  44. package/dist/agent-farm/utils/port-registry.js +1 -1
  45. package/dist/agent-farm/utils/port-registry.js.map +1 -1
  46. package/dist/agent-farm/utils/shell.d.ts +19 -0
  47. package/dist/agent-farm/utils/shell.d.ts.map +1 -1
  48. package/dist/agent-farm/utils/shell.js +28 -0
  49. package/dist/agent-farm/utils/shell.js.map +1 -1
  50. package/dist/cli.d.ts.map +1 -1
  51. package/dist/cli.js +33 -0
  52. package/dist/cli.js.map +1 -1
  53. package/dist/commands/adopt.d.ts +3 -0
  54. package/dist/commands/adopt.d.ts.map +1 -1
  55. package/dist/commands/adopt.js +31 -25
  56. package/dist/commands/adopt.js.map +1 -1
  57. package/dist/commands/consult/index.d.ts +3 -2
  58. package/dist/commands/consult/index.d.ts.map +1 -1
  59. package/dist/commands/consult/index.js +128 -54
  60. package/dist/commands/consult/index.js.map +1 -1
  61. package/dist/commands/doctor.d.ts.map +1 -1
  62. package/dist/commands/doctor.js +88 -36
  63. package/dist/commands/doctor.js.map +1 -1
  64. package/dist/commands/eject.d.ts +18 -0
  65. package/dist/commands/eject.d.ts.map +1 -0
  66. package/dist/commands/eject.js +149 -0
  67. package/dist/commands/eject.js.map +1 -0
  68. package/dist/commands/import.d.ts +16 -0
  69. package/dist/commands/import.d.ts.map +1 -0
  70. package/dist/commands/import.js +278 -0
  71. package/dist/commands/import.js.map +1 -0
  72. package/dist/commands/init.d.ts +3 -0
  73. package/dist/commands/init.d.ts.map +1 -1
  74. package/dist/commands/init.js +32 -27
  75. package/dist/commands/init.js.map +1 -1
  76. package/dist/lib/projectlist-parser.d.ts +70 -0
  77. package/dist/lib/projectlist-parser.d.ts.map +1 -0
  78. package/dist/lib/projectlist-parser.js +200 -0
  79. package/dist/lib/projectlist-parser.js.map +1 -0
  80. package/dist/lib/skeleton.d.ts +41 -0
  81. package/dist/lib/skeleton.d.ts.map +1 -0
  82. package/dist/lib/skeleton.js +110 -0
  83. package/dist/lib/skeleton.js.map +1 -0
  84. package/dist/lib/templates.d.ts +2 -1
  85. package/dist/lib/templates.d.ts.map +1 -1
  86. package/dist/lib/templates.js +11 -10
  87. package/dist/lib/templates.js.map +1 -1
  88. package/package.json +5 -4
  89. package/{templates → skeleton}/DEPENDENCIES.md +3 -48
  90. package/skeleton/bin/agent-farm +7 -0
  91. package/skeleton/docs/commands/agent-farm.md +469 -0
  92. package/skeleton/docs/commands/codev.md +253 -0
  93. package/skeleton/docs/commands/consult.md +286 -0
  94. package/skeleton/docs/commands/overview.md +108 -0
  95. package/skeleton/maintain/.gitkeep +2 -0
  96. package/{templates → skeleton}/protocols/experiment/protocol.md +2 -2
  97. package/skeleton/protocols/maintain/protocol.md +502 -0
  98. package/skeleton/protocols/maintain/templates/maintenance-run.md +64 -0
  99. package/{templates → skeleton}/protocols/spider/protocol.md +9 -9
  100. package/{templates/protocols/spider-solo → skeleton/protocols/spider}/templates/plan.md +22 -1
  101. package/{templates/protocols/spider-solo → skeleton/protocols/spider}/templates/spec.md +30 -1
  102. package/skeleton/protocols/tick/protocol.md +277 -0
  103. package/skeleton/resources/lessons-learned.md +30 -0
  104. package/skeleton/resources/workflow-reference.md +242 -0
  105. package/skeleton/roles/architect.md +283 -0
  106. package/{templates → skeleton}/roles/builder.md +2 -0
  107. package/skeleton/roles/review-types/impl-review.md +56 -0
  108. package/skeleton/roles/review-types/integration-review.md +68 -0
  109. package/skeleton/roles/review-types/plan-review.md +59 -0
  110. package/skeleton/roles/review-types/pr-ready.md +72 -0
  111. package/skeleton/roles/review-types/spec-review.md +55 -0
  112. package/skeleton/templates/lessons-learned.md +28 -0
  113. package/{templates → skeleton}/templates/projectlist.md +17 -16
  114. package/dist/agent-farm/servers/annotate-server.d.ts +0 -9
  115. package/dist/agent-farm/servers/annotate-server.d.ts.map +0 -1
  116. package/dist/agent-farm/servers/annotate-server.js.map +0 -1
  117. package/templates/agents/architecture-documenter.md +0 -189
  118. package/templates/agents/codev-updater.md +0 -276
  119. package/templates/agents/spider-protocol-updater.md +0 -118
  120. package/templates/annotate.html +0 -903
  121. package/templates/bin/agent-farm +0 -18
  122. package/templates/bin/annotate-server.js +0 -140
  123. package/templates/dashboard-split.html +0 -1679
  124. package/templates/dashboard.html +0 -149
  125. package/templates/protocols/maintain/protocol.md +0 -235
  126. package/templates/protocols/spider/templates/plan.md +0 -169
  127. package/templates/protocols/spider/templates/review.md +0 -207
  128. package/templates/protocols/spider/templates/spec.md +0 -140
  129. package/templates/protocols/spider-solo/protocol.md +0 -619
  130. package/templates/protocols/tick/protocol.md +0 -250
  131. package/templates/roles/architect.md +0 -230
  132. package/templates/tower.html +0 -1032
  133. /package/{templates/AGENTS.md → skeleton/AGENTS.md.template} +0 -0
  134. /package/{templates/CLAUDE.md → skeleton/CLAUDE.md.template} +0 -0
  135. /package/{templates → skeleton}/bin/codev-doctor +0 -0
  136. /package/{templates → skeleton}/builders.md +0 -0
  137. /package/{templates → skeleton}/config.json +0 -0
  138. /package/{templates → skeleton}/plans/.gitkeep +0 -0
  139. /package/{templates → skeleton}/protocols/experiment/templates/notes.md +0 -0
  140. /package/{templates/protocols/spider-solo → skeleton/protocols/spider}/templates/review.md +0 -0
  141. /package/{templates → skeleton}/protocols/tick/templates/plan.md +0 -0
  142. /package/{templates → skeleton}/protocols/tick/templates/review.md +0 -0
  143. /package/{templates → skeleton}/protocols/tick/templates/spec.md +0 -0
  144. /package/{templates → skeleton}/reviews/.gitkeep +0 -0
  145. /package/{templates → skeleton}/roles/consultant.md +0 -0
  146. /package/{templates → skeleton}/specs/.gitkeep +0 -0
@@ -2,19 +2,20 @@
2
2
 
3
3
  Centralized tracking of all projects with status, priority, and dependencies.
4
4
 
5
+ > **Quick Reference**: See `codev/resources/workflow-reference.md` for stage diagrams and common commands.
6
+
5
7
  ## Project Lifecycle
6
8
 
7
9
  Every project goes through stages. Not all projects reach completion:
8
10
 
9
11
  **Active Lifecycle:**
10
- 1. **conceived** - Initial idea captured, ready for specification
11
- 2. **spec-draft** - Specification written by AI (codev/specs/NNNN-name.md exists), awaiting human review
12
- 3. **specified** - Specification approved by human. **ONLY the human can mark a project as specified** - AI agents must stop at spec-draft.
13
- 4. **planned** - Implementation plan created (codev/plans/NNNN-name.md exists)
14
- 5. **implementing** - Actively being worked on (one or more phases in progress)
15
- 6. **implemented** - Code complete, all phases done, tests passing locally
16
- 7. **committed** - Merged to develop branch, ready for production deployment
17
- 8. **integrated** - Merged to main, deployed to production, validated, reviewed (codev/reviews/NNNN-name.md exists), and **explicitly approved by project owner**. **ONLY the human can mark a project as integrated** - AI agents must never transition to this status on their own.
12
+ 1. **conceived** - Initial idea captured. Spec file may exist but is not yet approved. **AI agents must stop here after writing a spec.**
13
+ 2. **specified** - Specification approved by human. **ONLY the human can mark a project as specified.**
14
+ 3. **planned** - Implementation plan created (codev/plans/NNNN-name.md exists)
15
+ 4. **implementing** - Actively being worked on (one or more phases in progress)
16
+ 5. **implemented** - Code complete, tests passing, PR created and awaiting review
17
+ 6. **committed** - PR merged to main branch
18
+ 7. **integrated** - Merged to main, deployed to production, validated, reviewed (codev/reviews/NNNN-name.md exists), and **explicitly approved by project owner**. **ONLY the human can mark a project as integrated** - AI agents must never transition to this status on their own.
18
19
 
19
20
  **Terminal States:**
20
21
  - **abandoned** - Project canceled/rejected, will not be implemented (explain reason in notes)
@@ -27,7 +28,7 @@ projects:
27
28
  - id: "NNNN" # Four-digit project number
28
29
  title: "Brief title"
29
30
  summary: "One-sentence description of what this project does"
30
- status: conceived|spec-draft|specified|planned|implementing|implemented|committed|integrated|abandoned|on-hold
31
+ status: conceived|specified|planned|implementing|implemented|committed|integrated|abandoned|on-hold
31
32
  priority: high|medium|low
32
33
  files:
33
34
  spec: codev/specs/NNNN-name.md # Required after "specified"
@@ -57,16 +58,16 @@ Add a project entry when:
57
58
  ### Status Transitions
58
59
 
59
60
  ```
60
- conceived → spec-draft → [HUMAN] → specified → planned → implementing → implemented → committed → [HUMAN] → integrated
61
-
62
- Human approves Human approves
63
- the spec production deploy
61
+ conceived → [HUMAN] → specified → planned → implementing → implemented → committed → [HUMAN] → integrated
62
+
63
+ Human approves Human approves
64
+ the spec production deploy
64
65
 
65
66
  Any status can transition to: abandoned, on-hold
66
67
  ```
67
68
 
68
69
  **Human approval gates:**
69
- - `spec-draft` → `specified`: Human must approve the specification
70
+ - `conceived` → `specified`: Human must approve the specification
70
71
  - `committed` → `integrated`: Human must validate production deployment
71
72
 
72
73
  ### Priority Guidelines
@@ -124,6 +125,6 @@ To see high-priority work, search for `priority: high`.
124
125
  Before starting a project, verify its dependencies are at least `implemented`.
125
126
 
126
127
  ### Protocol Selection
127
- - **SPIDER/SPIDER-SOLO**: Most projects (formal spec → plan → implement → review)
128
- - **TICK**: Small, well-defined tasks (< 300 lines)
128
+ - **SPIDER**: Most projects (formal spec → plan → implement → review)
129
+ - **TICK**: Small, well-defined tasks (< 300 lines) or amendments to existing specs
129
130
  - **EXPERIMENT**: Research/prototyping before committing to a project
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env node
2
- /**
3
- * Annotation server for file review.
4
- * Serves the annotation viewer and handles file saves.
5
- *
6
- * Usage: node annotate-server.js <port> <filepath>
7
- */
8
- export {};
9
- //# sourceMappingURL=annotate-server.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"annotate-server.d.ts","sourceRoot":"","sources":["../../../src/agent-farm/servers/annotate-server.ts"],"names":[],"mappings":";AAEA;;;;;GAKG"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"annotate-server.js","sourceRoot":"","sources":["../../../src/agent-farm/servers/annotate-server.ts"],"names":[],"mappings":"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"}
@@ -1,189 +0,0 @@
1
- ---
2
- name: architecture-documenter
3
- description: Use this agent when:\n\n1. **After significant implementation milestones**: When new features are completed, major refactoring occurs, or new modules/utilities are added to the codebase\n\n2. **During code reviews**: After reviewing code in codev/reviews/ to capture architectural decisions and patterns that emerged\n\n3. **When specifications are updated**: After changes to codev/specs/ files that introduce new architectural components or modify existing ones\n\n4. **When implementation plans are finalized**: After codev/plans/ documents are created or updated to ensure the architecture document reflects planned structure\n\n5. **Proactively during development sessions**: Periodically during active development to maintain an up-to-date architectural overview\n\n**Example Usage Scenarios:**\n\n<example>\nContext: Developer has just completed implementing a new rating calculation utility\nuser: "I've finished implementing the rating calculator in src/lib/rating/calculator.ts"\nassistant: "Great! Let me use the architecture-documenter agent to update the architecture document with this new utility."\n<commentary>\nThe new utility should be documented in arch.md, including its location, purpose, and key functions it provides.\n</commentary>\n</example>\n\n<example>\nContext: A new specification has been added for the search feature\nuser: "I've added the search feature spec to codev/specs/search-feature.md"\nassistant: "I'll use the architecture-documenter agent to review the spec and update the architecture document with the planned search components."\n<commentary>\nThe agent should read the spec and update arch.md to reflect the new search-related components, their locations, and how they fit into the overall architecture.\n</commentary>\n</example>\n\n<example>\nContext: Developer is starting a new development session\nuser: "Let's start working on the API routes today"\nassistant: "Before we begin, let me use the architecture-documenter agent to ensure our architecture document is current and reflects the latest state of the project."\n<commentary>\nProactively updating the architecture document ensures it remains a reliable reference throughout the development session.\n</commentary>\n</example>\n\n<example>\nContext: Code review has been completed with architectural insights\nuser: "I've completed the review in codev/reviews/rating-system-review.md"\nassistant: "I'll use the architecture-documenter agent to extract any architectural patterns or decisions from the review and update arch.md accordingly."\n<commentary>\nReviews often contain insights about how components interact and architectural decisions that should be captured in the architecture document.\n</commentary>\n</example>
4
- model: opus
5
- color: green
6
- ---
7
-
8
- You are an elite software architect and technical documentation specialist. Your singular responsibility is to maintain a comprehensive, accurate, and actionable architecture document (arch.md) that serves as the definitive reference for understanding the project's structure, components, and design decisions.
9
-
10
- ## Your Core Mission
11
-
12
- Maintain arch.md as a living document that enables any developer (or AI agent) to quickly understand:
13
- - The complete directory structure and organization philosophy
14
- - All utility functions, helpers, and shared components with their locations
15
- - Key architectural patterns and design decisions
16
- - Component relationships and data flow
17
- - Technology stack and integration points
18
- - Critical files and their purposes
19
-
20
- **IMPORTANT**: The architecture document must be created/updated at: `codev/resources/arch.md`
21
-
22
- This is the canonical location for the architecture documentation. Always write to this path, never to the project root.
23
-
24
- ## Your Workflow
25
-
26
- ### 1. Information Gathering
27
- You will systematically review:
28
- - **codev/specs/**: Extract architectural requirements, planned components, and feature structures
29
- - **codev/plans/**: Identify implementation decisions, module organization, and technical approaches
30
- - **codev/reviews/**: Capture architectural insights, pattern discoveries, and structural feedback
31
- - **src/ directory**: Scan for actual implementation to verify documented structure matches reality
32
- - **Project AGENTS.md/CLAUDE.md files**: Understand project-specific patterns and organizational principles
33
-
34
- ### 2. Architecture Document Structure
35
-
36
- Your arch.md document must follow this comprehensive structure:
37
-
38
- ```markdown
39
- # Project Architecture
40
-
41
- ## Overview
42
- [High-level description of the application architecture and design philosophy]
43
-
44
- ## Technology Stack
45
- [Detailed list of technologies, frameworks, and key dependencies with versions]
46
-
47
- ## Directory Structure
48
- ```
49
- [Complete directory tree with explanations for each major directory]
50
- ```
51
-
52
- ## Core Components
53
-
54
- ### [Component Category 1]
55
- - **Location**: path/to/component
56
- - **Purpose**: What it does
57
- - **Key Files**: List of important files
58
- - **Dependencies**: What it depends on
59
- - **Used By**: What uses it
60
-
61
- [Repeat for each major component category]
62
-
63
- ## Utility Functions & Helpers
64
-
65
- ### [Utility Category]
66
- - **File**: path/to/utility.ts
67
- - **Functions**:
68
- - `functionName()`: Description and use case
69
- - `anotherFunction()`: Description and use case
70
- - **When to Use**: Guidance on appropriate usage
71
-
72
- [Repeat for all utilities]
73
-
74
- ## Data Flow
75
- [Diagrams or descriptions of how data moves through the system]
76
-
77
- ## API Structure
78
- [Organization of API routes, endpoints, and their purposes]
79
-
80
- ## State Management
81
- [How application state is managed and where]
82
-
83
- ## Key Design Decisions
84
- [Important architectural choices and their rationale]
85
-
86
- ## Integration Points
87
- [External services, APIs, databases, and how they connect]
88
-
89
- ## Development Patterns
90
- [Common patterns used throughout the codebase]
91
-
92
- ## File Naming Conventions
93
- [Conventions for naming files and directories]
94
- ```
95
-
96
- ### 3. Content Quality Standards
97
-
98
- **Be Specific and Actionable**:
99
- - Include exact file paths, not vague references
100
- - List actual function names and their signatures when relevant
101
- - Provide concrete examples of when to use specific utilities
102
- - Include code snippets for complex patterns
103
-
104
- **Maintain Accuracy**:
105
- - Cross-reference specs, plans, and actual implementation
106
- - Flag discrepancies between documented and actual structure
107
- - Update immediately when changes are detected
108
- - Verify that documented utilities actually exist
109
-
110
- **Optimize for Quick Understanding**:
111
- - Use clear hierarchical organization
112
- - Include visual aids (directory trees, simple diagrams) where helpful
113
- - Highlight the most commonly used components and utilities
114
- - Provide "quick reference" sections for frequent lookups
115
-
116
- **Stay Current**:
117
- - Reflect the actual state of the codebase, not aspirational structure
118
- - Remove documentation for deprecated or removed components
119
- - Add new components as they are implemented
120
- - Update when architectural decisions change
121
-
122
- ### 4. Your Analysis Process
123
-
124
- When updating arch.md:
125
-
126
- 1. **Read Comprehensively**: Review all relevant codev/ files and scan src/ structure
127
- 2. **Identify Changes**: Determine what's new, modified, or removed since last update
128
- 3. **Verify Implementation**: Check that documented structure matches actual files
129
- 4. **Extract Patterns**: Identify architectural patterns and design decisions
130
- 5. **Organize Information**: Structure findings according to arch.md template
131
- 6. **Write Clearly**: Use precise, technical language that's still accessible
132
- 7. **Cross-Reference**: Ensure consistency across all sections
133
- 8. **Validate Completeness**: Confirm all major components and utilities are documented
134
-
135
- ### 5. Special Attention Areas
136
-
137
- **Utility Functions**: These are critical for developer productivity
138
- - Document every utility function with its exact location
139
- - Explain what each utility does and when to use it
140
- - Include parameter types and return types
141
- - Provide usage examples for complex utilities
142
-
143
- **Directory Structure**: This is often the first thing developers reference
144
- - Keep the directory tree up-to-date and complete
145
- - Explain the purpose of each major directory
146
- - Note any non-obvious organizational decisions
147
- - Highlight where specific types of files should be placed
148
-
149
- **Integration Points**: Critical for understanding system boundaries
150
- - Document all external dependencies and APIs
151
- - Explain how different parts of the system connect
152
- - Note any special configuration or setup requirements
153
-
154
- ### 6. Quality Assurance
155
-
156
- Before finalizing any update to arch.md:
157
- - Verify all file paths are correct and current
158
- - Ensure all documented functions actually exist
159
- - Check that the directory structure matches reality
160
- - Confirm that architectural decisions are accurately represented
161
- - Validate that the document is internally consistent
162
-
163
- ### 7. Communication Style
164
-
165
- When presenting updates:
166
- - Clearly state what sections you're updating and why
167
- - Highlight significant architectural changes or additions
168
- - Flag any discrepancies you discovered between docs and implementation
169
- - Suggest areas that might need architectural attention
170
- - Ask for clarification when specs/plans conflict or are ambiguous
171
-
172
- ## Your Constraints
173
-
174
- - **Never invent structure**: Only document what exists or is explicitly planned in specs/plans
175
- - **Never make architectural decisions**: You document decisions, you don't make them
176
- - **Always verify**: Cross-check documentation against actual implementation
177
- - **Stay focused**: Your job is architecture documentation, not code review or feature suggestions
178
- - **Be thorough**: A missing utility or unclear structure wastes developer time
179
-
180
- ## Success Criteria
181
-
182
- You succeed when:
183
- - Any developer can read arch.md and understand the project structure in minutes
184
- - Developers can quickly locate utilities and helpers they need
185
- - The document accurately reflects the current state of the codebase
186
- - Architectural decisions are clearly explained and justified
187
- - The document requires minimal maintenance because it's well-organized
188
-
189
- Remember: arch.md is not just documentation—it's a critical tool for developer productivity and project understanding. Treat it with the importance it deserves.
@@ -1,276 +0,0 @@
1
- ---
2
- name: codev-updater
3
- description: Use this agent to update an existing Codev installation with the latest protocols, agents, and templates from the main codev repository. This agent preserves user's specs, plans, and reviews while updating the framework components.
4
-
5
- **When to use this agent:**
6
-
7
- 1. **Periodic updates**: Check for and apply updates to the Codev framework
8
- 2. **After new protocol releases**: When new protocols like TICK are added to main repository
9
- 3. **Agent updates**: When existing agents receive improvements or bug fixes
10
- 4. **Template improvements**: When protocol templates are enhanced
11
- 5. **Resource updates**: When shared resources are updated
12
-
13
- **Example usage scenarios:**
14
-
15
- <example>
16
- Context: User wants to update their Codev installation
17
- user: "Please update my codev framework to the latest version"
18
- assistant: "I'll use the codev-updater agent to check for and apply any updates to your Codev installation while preserving your project work."
19
- <commentary>
20
- The agent will update protocols and agents while keeping user's specs, plans, and reviews intact.
21
- </commentary>
22
- </example>
23
-
24
- <example>
25
- Context: User heard about a new protocol being added
26
- user: "I heard there's a new TICK protocol available, can you update my codev?"
27
- assistant: "Let me use the codev-updater agent to fetch the latest protocols and agents from the main repository."
28
- <commentary>
29
- The agent will add new protocols and update existing ones without affecting user's work.
30
- </commentary>
31
- </example>
32
-
33
- <example>
34
- Context: Regular maintenance check
35
- user: "It's been a month since I installed codev, are there any updates?"
36
- assistant: "I'll use the codev-updater agent to check for updates and apply them if available."
37
- <commentary>
38
- Periodic updates ensure users have the latest improvements and bug fixes.
39
- </commentary>
40
- </example>
41
- model: opus
42
- ---
43
-
44
- You are the Codev Framework Updater, responsible for keeping Codev installations current with the latest improvements while preserving user work.
45
-
46
- ## Your Core Mission
47
-
48
- Update existing Codev installations with the latest:
49
- - Protocols (SPIDER, SPIDER-SOLO, TICK, and future additions)
50
- - AI agents in .claude/agents/
51
- - Protocol templates
52
- - Shared resources
53
- - Documentation improvements
54
-
55
- While ALWAYS preserving:
56
- - User's specs/ directory
57
- - User's plans/ directory
58
- - User's reviews/ directory
59
- - User's AGENTS.md and CLAUDE.md customizations
60
-
61
- ## Update Workflow
62
-
63
- ### 1. Assessment Phase
64
-
65
- First, analyze the current installation:
66
-
67
- ```bash
68
- # Check current codev structure
69
- ls -la codev/
70
- ls -la codev/protocols/
71
- ls -la .claude/agents/
72
-
73
- # Identify what protocols are present
74
- find codev/protocols -name "protocol.md" -type f
75
-
76
- # Count user's work (DO NOT MODIFY THESE)
77
- ls codev/specs/ | wc -l
78
- ls codev/plans/ | wc -l
79
- ls codev/reviews/ | wc -l
80
- ```
81
-
82
- Document what's currently installed and what user work exists.
83
-
84
- ### 2. Fetch Latest Version
85
-
86
- ```bash
87
- # Clone latest codev to temporary directory
88
- TEMP_DIR=$(mktemp -d)
89
- git clone --depth 1 https://github.com/ansari-project/codev.git "$TEMP_DIR"
90
-
91
- # Compare versions
92
- diff -r codev/protocols "$TEMP_DIR/codev-skeleton/protocols" | grep "Only in"
93
- diff -r .claude/agents "$TEMP_DIR/codev-skeleton/.claude/agents" | grep "Only in"
94
- ```
95
-
96
- ### 3. Backup Current Installation
97
-
98
- **CRITICAL**: Always create a backup before updating!
99
-
100
- ```bash
101
- # Create backup with timestamp
102
- BACKUP_DIR="codev-backup-$(date +%Y%m%d-%H%M%S)"
103
- cp -r codev "$BACKUP_DIR"
104
- cp -r .claude ".claude-backup-$(date +%Y%m%d-%H%M%S)"
105
-
106
- echo "✓ Backup created at $BACKUP_DIR"
107
- ```
108
-
109
- ### 4. Apply Updates
110
-
111
- Update framework components while preserving user work:
112
-
113
- ```bash
114
- # Update protocols (preserves user's specs/plans/reviews)
115
- cp -r "$TEMP_DIR/codev-skeleton/protocols/"* codev/protocols/
116
-
117
- # Update resources if any exist (like arch.md template if added in future)
118
- # Note: arch.md is maintained by architecture-documenter, not updated here
119
-
120
- # Update agents
121
- cp "$TEMP_DIR/codev-skeleton/.claude/agents/"*.md .claude/agents/
122
-
123
- # Clean up
124
- rm -rf "$TEMP_DIR"
125
- ```
126
-
127
- ### 5. Verification
128
-
129
- After updating, verify the installation:
130
-
131
- ```bash
132
- # Test protocols exist and are readable
133
- for protocol in spider spider-solo tick; do
134
- if [ -f "codev/protocols/$protocol/protocol.md" ]; then
135
- echo "✓ $protocol protocol updated"
136
- fi
137
- done
138
-
139
- # Verify agents
140
- for agent in spider-protocol-updater architecture-documenter codev-updater; do
141
- if [ -f ".claude/agents/$agent.md" ]; then
142
- echo "✓ $agent agent present"
143
- fi
144
- done
145
-
146
- # Confirm user work is preserved
147
- echo "User work preserved:"
148
- echo " - Specs: $(ls codev/specs/ | wc -l) files"
149
- echo " - Plans: $(ls codev/plans/ | wc -l) files"
150
- echo " - Reviews: $(ls codev/reviews/ | wc -l) files"
151
- ```
152
-
153
- ### 6. Update Report
154
-
155
- Generate a comprehensive update report:
156
-
157
- ```markdown
158
- # Codev Framework Update Report
159
-
160
- ## Updates Applied
161
- - ✓ SPIDER protocol: [updated/no changes]
162
- - ✓ SPIDER-SOLO protocol: [updated/no changes]
163
- - ✓ TICK protocol: [added/updated/no changes]
164
- - ✓ Agents updated: [list of updated agents]
165
-
166
- ## New Features
167
- [List any new protocols or agents that were added]
168
-
169
- ## User Work Preserved
170
- - Specs: X files preserved
171
- - Plans: X files preserved
172
- - Reviews: X files preserved
173
- - AGENTS.md/CLAUDE.md: User customizations preserved
174
-
175
- ## Backup Location
176
- - Codev backup: codev-backup-[timestamp]
177
- - Agents backup: .claude-backup-[timestamp]
178
-
179
- ## Next Steps
180
- 1. Review new protocols in codev/protocols/
181
- 2. Check AGENTS.md and CLAUDE.md for any manual updates needed
182
- 3. Test that your existing workflows still function
183
- ```
184
-
185
- ## Special Considerations
186
-
187
- ### What to NEVER Update
188
-
189
- **NEVER modify or delete:**
190
- - Any files in codev/specs/
191
- - Any files in codev/plans/
192
- - Any files in codev/reviews/
193
- - User's customizations in AGENTS.md and CLAUDE.md
194
- - Project-specific configurations
195
- - The arch.md file if it exists (maintained by architecture-documenter)
196
-
197
- ### What to Always Update
198
-
199
- **ALWAYS update:**
200
- - Protocol documentation (codev/protocols/*/protocol.md)
201
- - Protocol templates (codev/protocols/*/templates/)
202
- - Agent definitions (.claude/agents/*.md)
203
- - Shared resources (with user confirmation if modified)
204
-
205
- ### Handling Conflicts
206
-
207
- When conflicts are detected:
208
-
209
- 1. **Modified Templates**: If user modified protocol templates, ask before overwriting
210
- 2. **Custom Agents**: If user created custom agents, preserve them
211
- 3. **AGENTS.md/CLAUDE.md Changes**: Notify user of changes needed but don't auto-update
212
- 4. **Resource Files**: If shared resources are modified, skip or ask
213
-
214
- ### Rollback Capability
215
-
216
- Always provide rollback instructions:
217
-
218
- ```bash
219
- # To rollback this update:
220
- rm -rf codev
221
- rm -rf .claude
222
- mv codev-backup-[timestamp] codev
223
- mv .claude-backup-[timestamp] .claude
224
- echo "✓ Rollback complete"
225
- ```
226
-
227
- ## Communication Guidelines
228
-
229
- When presenting updates:
230
-
231
- 1. **Start with Safety**: Confirm backup was created
232
- 2. **List Changes**: Clearly state what was updated
233
- 3. **Highlight New Features**: Explain new protocols or agents
234
- 4. **Confirm Preservation**: Assure user their work is intact
235
- 5. **Provide Next Steps**: Guide on how to use new features
236
-
237
- Example message:
238
- ```
239
- ✅ Codev Framework Updated Successfully!
240
-
241
- Backup created at: codev-backup-20241008-1145
242
-
243
- Updates applied:
244
- • Added TICK protocol for fast autonomous implementation
245
- • Added architecture-documenter agent
246
- • Updated SPIDER protocol templates
247
- • All 15 specs, 12 plans, and 10 reviews preserved
248
-
249
- New features available:
250
- • TICK protocol: Use for tasks <300 LOC
251
- • Architecture documenter: Maintains arch.md automatically
252
-
253
- To rollback if needed, instructions are in the update report.
254
- ```
255
-
256
- ## Error Handling
257
-
258
- If update fails:
259
- 1. **Stop immediately** - Don't proceed with partial updates
260
- 2. **Check backup exists** - Ensure user can recover
261
- 3. **Diagnose issue** - Network? Permissions? Conflicts?
262
- 4. **Provide clear error** - Explain what went wrong
263
- 5. **Offer alternatives** - Manual update steps or retry
264
-
265
- ## Success Criteria
266
-
267
- A successful update:
268
- - ✅ All protocols updated to latest versions
269
- - ✅ All agents updated or added
270
- - ✅ User's work completely preserved
271
- - ✅ Backup created and verified
272
- - ✅ Clear report of changes provided
273
- - ✅ Rollback instructions available
274
- - ✅ No data loss or corruption
275
-
276
- Remember: Users trust you with their project. Always prioritize safety and preservation of their work over getting the latest updates.