lite-kits 0.1.1__py3-none-any.whl → 0.3.1__py3-none-any.whl
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.
- lite_kits/__init__.py +56 -4
- lite_kits/cli.py +696 -185
- lite_kits/core/__init__.py +6 -0
- lite_kits/core/banner.py +1 -1
- lite_kits/core/conflict_checker.py +115 -0
- lite_kits/core/detector.py +140 -0
- lite_kits/core/installer.py +236 -351
- lite_kits/core/manifest.py +146 -146
- lite_kits/core/validator.py +146 -0
- lite_kits/kits/README.md +6 -6
- lite_kits/kits/dev/README.md +241 -241
- lite_kits/kits/dev/{claude/commands → commands/.claude}/audit.md +143 -143
- lite_kits/kits/dev/{claude/commands → commands/.claude}/cleanup.md +2 -2
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/commit.md +2 -2
- lite_kits/kits/{project/claude/commands → dev/commands/.claude}/orient.md +3 -4
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/review.md +202 -202
- lite_kits/kits/{project/claude/commands → dev/commands/.claude}/stats.md +162 -162
- lite_kits/kits/{project/github/prompts → dev/commands/.github}/audit.prompt.md +143 -143
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/cleanup.prompt.md +2 -2
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/commit.prompt.md +2 -2
- lite_kits/kits/dev/{github/prompts → commands/.github}/orient.prompt.md +3 -4
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/review.prompt.md +202 -202
- lite_kits/kits/dev/{github/prompts → commands/.github}/stats.prompt.md +163 -163
- lite_kits/kits/kits.yaml +497 -180
- lite_kits/kits/multiagent/README.md +6 -6
- lite_kits/kits/multiagent/{claude/commands → commands/.claude}/sync.md +331 -331
- lite_kits/kits/multiagent/{github/prompts → commands/.github}/sync.prompt.md +73 -69
- lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +370 -370
- lite_kits/kits/multiagent/memory/parallel-work-protocol.md +536 -536
- lite_kits/kits/multiagent/memory/pr-workflow-guide.md +275 -275
- lite_kits/kits/multiagent/templates/collaboration-structure/README.md +166 -166
- lite_kits/kits/multiagent/templates/decision.md +79 -79
- lite_kits/kits/multiagent/templates/handoff.md +95 -95
- lite_kits/kits/multiagent/templates/session-log.md +68 -68
- lite_kits-0.3.1.dist-info/METADATA +259 -0
- lite_kits-0.3.1.dist-info/RECORD +41 -0
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.1.dist-info}/licenses/LICENSE +21 -21
- lite_kits/kits/dev/claude/commands/commit.md +0 -612
- lite_kits/kits/dev/claude/commands/orient.md +0 -146
- lite_kits/kits/dev/claude/commands/pr.md +0 -593
- lite_kits/kits/dev/claude/commands/review.md +0 -202
- lite_kits/kits/dev/claude/commands/stats.md +0 -162
- lite_kits/kits/dev/github/prompts/audit.prompt.md +0 -143
- lite_kits/kits/dev/github/prompts/cleanup.prompt.md +0 -382
- lite_kits/kits/dev/github/prompts/commit.prompt.md +0 -591
- lite_kits/kits/dev/github/prompts/pr.prompt.md +0 -603
- lite_kits/kits/dev/github/prompts/review.prompt.md +0 -202
- lite_kits/kits/git/README.md +0 -365
- lite_kits/kits/git/claude/commands/cleanup.md +0 -361
- lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -208
- lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -242
- lite_kits/kits/project/README.md +0 -228
- lite_kits/kits/project/claude/commands/audit.md +0 -143
- lite_kits/kits/project/claude/commands/review.md +0 -112
- lite_kits/kits/project/github/prompts/orient.prompt.md +0 -150
- lite_kits/kits/project/github/prompts/review.prompt.md +0 -112
- lite_kits/kits/project/github/prompts/stats.prompt.md +0 -163
- lite_kits-0.1.1.dist-info/METADATA +0 -447
- lite_kits-0.1.1.dist-info/RECORD +0 -58
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.1.dist-info}/WHEEL +0 -0
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.1.dist-info}/entry_points.txt +0 -0
@@ -1,166 +1,166 @@
|
|
1
|
-
# Collaboration Directory Structure
|
2
|
-
|
3
|
-
This directory is created automatically when multiagent-kit is installed and you create a new feature with `/specify`.
|
4
|
-
|
5
|
-
## Purpose
|
6
|
-
|
7
|
-
Coordinate work between multiple AI agents (Claude Code, GitHub Copilot, etc.) on the same feature.
|
8
|
-
|
9
|
-
## Structure
|
10
|
-
|
11
|
-
```
|
12
|
-
specs/<feature-number>-<feature-name>/
|
13
|
-
└── collaboration/
|
14
|
-
├── active/ # Current work in progress
|
15
|
-
│ ├── sessions/ # Individual agent work sessions
|
16
|
-
│ ├── decisions/ # Coordination decisions and handoffs
|
17
|
-
│ └── README.md # Quick reference (this file copied here)
|
18
|
-
│
|
19
|
-
├── archive/ # Completed sessions and decisions
|
20
|
-
│ ├── sessions/
|
21
|
-
│ └── decisions/
|
22
|
-
│
|
23
|
-
└── results/ # Outcomes and artifacts
|
24
|
-
├── validation/ # Test results, reviews
|
25
|
-
└── artifacts/ # Generated files, diagrams, etc.
|
26
|
-
```
|
27
|
-
|
28
|
-
## Workflows
|
29
|
-
|
30
|
-
### Solo Agent Work
|
31
|
-
|
32
|
-
If only one agent is working:
|
33
|
-
1. Create session log in `active/sessions/`
|
34
|
-
2. Document decisions in `active/decisions/`
|
35
|
-
3. When feature complete, archive to `archive/`
|
36
|
-
|
37
|
-
### Multi-Agent Coordination
|
38
|
-
|
39
|
-
When multiple agents collaborate:
|
40
|
-
|
41
|
-
1. **Starting Work**
|
42
|
-
- Run `/orient` to check for pending handoffs
|
43
|
-
- Create session log: `active/sessions/YYYY-MM-DD-<agent-name>.md`
|
44
|
-
- Review recent sessions from other agents
|
45
|
-
|
46
|
-
2. **Making Decisions**
|
47
|
-
- Document in `active/decisions/<decision-name>.md`
|
48
|
-
- Include: what was decided, why, by whom
|
49
|
-
- Tag with agent attribution
|
50
|
-
|
51
|
-
3. **Handoff to Another Agent**
|
52
|
-
- Create: `active/decisions/handoff-to-<agent>.md`
|
53
|
-
- Include: context, what's done, what's needed
|
54
|
-
- Other agent will see it in `/orient` output
|
55
|
-
|
56
|
-
4. **Accepting Handoff**
|
57
|
-
- Read the handoff document
|
58
|
-
- Create your session log
|
59
|
-
- Move handoff to `archive/decisions/` when acknowledged
|
60
|
-
|
61
|
-
5. **Completing Feature**
|
62
|
-
- Move all active sessions to `archive/sessions/`
|
63
|
-
- Move decisions to `archive/decisions/`
|
64
|
-
- Save artifacts in `results/artifacts/`
|
65
|
-
|
66
|
-
## File Naming Conventions
|
67
|
-
|
68
|
-
### Sessions
|
69
|
-
|
70
|
-
```
|
71
|
-
active/sessions/YYYY-MM-DD-<agent-name>.md
|
72
|
-
active/sessions/YYYY-MM-DD-<agent-name>-<description>.md
|
73
|
-
|
74
|
-
Examples:
|
75
|
-
active/sessions/2025-10-06-claude-code.md
|
76
|
-
active/sessions/2025-10-06-copilot-frontend-work.md
|
77
|
-
```
|
78
|
-
|
79
|
-
### Decisions
|
80
|
-
|
81
|
-
```
|
82
|
-
active/decisions/<decision-type>-<brief-name>.md
|
83
|
-
|
84
|
-
Examples:
|
85
|
-
active/decisions/handoff-to-copilot.md
|
86
|
-
active/decisions/architecture-database-choice.md
|
87
|
-
active/decisions/worktree-territory-split.md
|
88
|
-
```
|
89
|
-
|
90
|
-
### Artifacts
|
91
|
-
|
92
|
-
```
|
93
|
-
results/artifacts/<type>-<name>.<ext>
|
94
|
-
|
95
|
-
Examples:
|
96
|
-
results/artifacts/diagram-auth-flow.svg
|
97
|
-
results/artifacts/benchmark-api-performance.csv
|
98
|
-
```
|
99
|
-
|
100
|
-
## Template Usage
|
101
|
-
|
102
|
-
When creating documents, use the templates:
|
103
|
-
- Session log: Copy from `../../templates/session-log.md`
|
104
|
-
- Handoff: Copy from `../../templates/handoff.md`
|
105
|
-
- Decision: Copy from `../../templates/decision.md`
|
106
|
-
|
107
|
-
## Integration with Git
|
108
|
-
|
109
|
-
- Session logs and decisions are **committed to git**
|
110
|
-
- They become part of the feature's history
|
111
|
-
- Future agents can review them to understand context
|
112
|
-
- Helps with knowledge transfer and onboarding
|
113
|
-
|
114
|
-
## Best Practices
|
115
|
-
|
116
|
-
1. **Write for the next agent**: Assume someone else will read your session logs
|
117
|
-
2. **Link to commits**: Reference git commits in session logs
|
118
|
-
3. **Keep current**: Move old sessions to archive/ regularly
|
119
|
-
4. **Be specific**: "Added auth" → "Implemented JWT token validation in auth middleware"
|
120
|
-
5. **Update handoffs**: If you discover something while working, update the handoff
|
121
|
-
6. **Time-stamp everything**: Helps understand sequence of events
|
122
|
-
|
123
|
-
## Quick Commands
|
124
|
-
|
125
|
-
```bash
|
126
|
-
# Create session log
|
127
|
-
touch active/sessions/$(date +%Y-%m-%d)-claude-code.md
|
128
|
-
|
129
|
-
# Create handoff
|
130
|
-
cat > active/decisions/handoff-to-copilot.md << EOF
|
131
|
-
# Handoff to GitHub Copilot
|
132
|
-
|
133
|
-
**From**: Claude Code
|
134
|
-
**Date**: $(date +%Y-%m-%d)
|
135
|
-
|
136
|
-
## Context
|
137
|
-
[What you were working on]
|
138
|
-
|
139
|
-
## Completed
|
140
|
-
- [x] Task 1
|
141
|
-
- [x] Task 2
|
142
|
-
|
143
|
-
## Needed
|
144
|
-
- [ ] Task 3
|
145
|
-
- [ ] Task 4
|
146
|
-
|
147
|
-
## Files
|
148
|
-
- src/components/Auth.tsx (needs UI implementation)
|
149
|
-
|
150
|
-
## Notes
|
151
|
-
[Any gotchas or important context]
|
152
|
-
EOF
|
153
|
-
|
154
|
-
# Archive session
|
155
|
-
mv active/sessions/2025-10-05-*.md archive/sessions/
|
156
|
-
|
157
|
-
# List recent activity
|
158
|
-
ls -lt active/sessions/ | head -5
|
159
|
-
```
|
160
|
-
|
161
|
-
## See Also
|
162
|
-
|
163
|
-
- `/orient` - Check for pending handoffs
|
164
|
-
- `/sync` - View collaboration status
|
165
|
-
- `/commit` - Smart commits with agent attribution
|
166
|
-
- Workflow guide: `.specify/memory/pr-workflow-guide.md`
|
1
|
+
# Collaboration Directory Structure
|
2
|
+
|
3
|
+
This directory is created automatically when multiagent-kit is installed and you create a new feature with `/specify`.
|
4
|
+
|
5
|
+
## Purpose
|
6
|
+
|
7
|
+
Coordinate work between multiple AI agents (Claude Code, GitHub Copilot, etc.) on the same feature.
|
8
|
+
|
9
|
+
## Structure
|
10
|
+
|
11
|
+
```
|
12
|
+
specs/<feature-number>-<feature-name>/
|
13
|
+
└── collaboration/
|
14
|
+
├── active/ # Current work in progress
|
15
|
+
│ ├── sessions/ # Individual agent work sessions
|
16
|
+
│ ├── decisions/ # Coordination decisions and handoffs
|
17
|
+
│ └── README.md # Quick reference (this file copied here)
|
18
|
+
│
|
19
|
+
├── archive/ # Completed sessions and decisions
|
20
|
+
│ ├── sessions/
|
21
|
+
│ └── decisions/
|
22
|
+
│
|
23
|
+
└── results/ # Outcomes and artifacts
|
24
|
+
├── validation/ # Test results, reviews
|
25
|
+
└── artifacts/ # Generated files, diagrams, etc.
|
26
|
+
```
|
27
|
+
|
28
|
+
## Workflows
|
29
|
+
|
30
|
+
### Solo Agent Work
|
31
|
+
|
32
|
+
If only one agent is working:
|
33
|
+
1. Create session log in `active/sessions/`
|
34
|
+
2. Document decisions in `active/decisions/`
|
35
|
+
3. When feature complete, archive to `archive/`
|
36
|
+
|
37
|
+
### Multi-Agent Coordination
|
38
|
+
|
39
|
+
When multiple agents collaborate:
|
40
|
+
|
41
|
+
1. **Starting Work**
|
42
|
+
- Run `/orient` to check for pending handoffs
|
43
|
+
- Create session log: `active/sessions/YYYY-MM-DD-<agent-name>.md`
|
44
|
+
- Review recent sessions from other agents
|
45
|
+
|
46
|
+
2. **Making Decisions**
|
47
|
+
- Document in `active/decisions/<decision-name>.md`
|
48
|
+
- Include: what was decided, why, by whom
|
49
|
+
- Tag with agent attribution
|
50
|
+
|
51
|
+
3. **Handoff to Another Agent**
|
52
|
+
- Create: `active/decisions/handoff-to-<agent>.md`
|
53
|
+
- Include: context, what's done, what's needed
|
54
|
+
- Other agent will see it in `/orient` output
|
55
|
+
|
56
|
+
4. **Accepting Handoff**
|
57
|
+
- Read the handoff document
|
58
|
+
- Create your session log
|
59
|
+
- Move handoff to `archive/decisions/` when acknowledged
|
60
|
+
|
61
|
+
5. **Completing Feature**
|
62
|
+
- Move all active sessions to `archive/sessions/`
|
63
|
+
- Move decisions to `archive/decisions/`
|
64
|
+
- Save artifacts in `results/artifacts/`
|
65
|
+
|
66
|
+
## File Naming Conventions
|
67
|
+
|
68
|
+
### Sessions
|
69
|
+
|
70
|
+
```
|
71
|
+
active/sessions/YYYY-MM-DD-<agent-name>.md
|
72
|
+
active/sessions/YYYY-MM-DD-<agent-name>-<description>.md
|
73
|
+
|
74
|
+
Examples:
|
75
|
+
active/sessions/2025-10-06-claude-code.md
|
76
|
+
active/sessions/2025-10-06-copilot-frontend-work.md
|
77
|
+
```
|
78
|
+
|
79
|
+
### Decisions
|
80
|
+
|
81
|
+
```
|
82
|
+
active/decisions/<decision-type>-<brief-name>.md
|
83
|
+
|
84
|
+
Examples:
|
85
|
+
active/decisions/handoff-to-copilot.md
|
86
|
+
active/decisions/architecture-database-choice.md
|
87
|
+
active/decisions/worktree-territory-split.md
|
88
|
+
```
|
89
|
+
|
90
|
+
### Artifacts
|
91
|
+
|
92
|
+
```
|
93
|
+
results/artifacts/<type>-<name>.<ext>
|
94
|
+
|
95
|
+
Examples:
|
96
|
+
results/artifacts/diagram-auth-flow.svg
|
97
|
+
results/artifacts/benchmark-api-performance.csv
|
98
|
+
```
|
99
|
+
|
100
|
+
## Template Usage
|
101
|
+
|
102
|
+
When creating documents, use the templates:
|
103
|
+
- Session log: Copy from `../../templates/session-log.md`
|
104
|
+
- Handoff: Copy from `../../templates/handoff.md`
|
105
|
+
- Decision: Copy from `../../templates/decision.md`
|
106
|
+
|
107
|
+
## Integration with Git
|
108
|
+
|
109
|
+
- Session logs and decisions are **committed to git**
|
110
|
+
- They become part of the feature's history
|
111
|
+
- Future agents can review them to understand context
|
112
|
+
- Helps with knowledge transfer and onboarding
|
113
|
+
|
114
|
+
## Best Practices
|
115
|
+
|
116
|
+
1. **Write for the next agent**: Assume someone else will read your session logs
|
117
|
+
2. **Link to commits**: Reference git commits in session logs
|
118
|
+
3. **Keep current**: Move old sessions to archive/ regularly
|
119
|
+
4. **Be specific**: "Added auth" → "Implemented JWT token validation in auth middleware"
|
120
|
+
5. **Update handoffs**: If you discover something while working, update the handoff
|
121
|
+
6. **Time-stamp everything**: Helps understand sequence of events
|
122
|
+
|
123
|
+
## Quick Commands
|
124
|
+
|
125
|
+
```bash
|
126
|
+
# Create session log
|
127
|
+
touch active/sessions/$(date +%Y-%m-%d)-claude-code.md
|
128
|
+
|
129
|
+
# Create handoff
|
130
|
+
cat > active/decisions/handoff-to-copilot.md << EOF
|
131
|
+
# Handoff to GitHub Copilot
|
132
|
+
|
133
|
+
**From**: Claude Code
|
134
|
+
**Date**: $(date +%Y-%m-%d)
|
135
|
+
|
136
|
+
## Context
|
137
|
+
[What you were working on]
|
138
|
+
|
139
|
+
## Completed
|
140
|
+
- [x] Task 1
|
141
|
+
- [x] Task 2
|
142
|
+
|
143
|
+
## Needed
|
144
|
+
- [ ] Task 3
|
145
|
+
- [ ] Task 4
|
146
|
+
|
147
|
+
## Files
|
148
|
+
- src/components/Auth.tsx (needs UI implementation)
|
149
|
+
|
150
|
+
## Notes
|
151
|
+
[Any gotchas or important context]
|
152
|
+
EOF
|
153
|
+
|
154
|
+
# Archive session
|
155
|
+
mv active/sessions/2025-10-05-*.md archive/sessions/
|
156
|
+
|
157
|
+
# List recent activity
|
158
|
+
ls -lt active/sessions/ | head -5
|
159
|
+
```
|
160
|
+
|
161
|
+
## See Also
|
162
|
+
|
163
|
+
- `/orient` - Check for pending handoffs
|
164
|
+
- `/sync` - View collaboration status
|
165
|
+
- `/commit` - Smart commits with agent attribution
|
166
|
+
- Workflow guide: `.specify/memory/pr-workflow-guide.md`
|
@@ -1,79 +1,79 @@
|
|
1
|
-
# Decision: [DECISION TITLE]
|
2
|
-
|
3
|
-
**Date**: YYYY-MM-DD
|
4
|
-
**Decided by**: [agent-name]
|
5
|
-
**Status**: [proposed / accepted / implemented / superseded]
|
6
|
-
|
7
|
-
## Context
|
8
|
-
|
9
|
-
[What situation led to this decision? What problem are we solving?]
|
10
|
-
|
11
|
-
## Decision
|
12
|
-
|
13
|
-
[What was decided? Be specific and clear.]
|
14
|
-
|
15
|
-
## Rationale
|
16
|
-
|
17
|
-
[Why did we make this decision? What factors influenced it?]
|
18
|
-
|
19
|
-
## Alternatives Considered
|
20
|
-
|
21
|
-
### Option 1: [Alternative Name]
|
22
|
-
- **Pros**:
|
23
|
-
- [Pro 1]
|
24
|
-
- [Pro 2]
|
25
|
-
- **Cons**:
|
26
|
-
- [Con 1]
|
27
|
-
- [Con 2]
|
28
|
-
- **Why not chosen**: [reason]
|
29
|
-
|
30
|
-
### Option 2: [Alternative Name]
|
31
|
-
- **Pros**:
|
32
|
-
- [Pro 1]
|
33
|
-
- **Cons**:
|
34
|
-
- [Con 1]
|
35
|
-
- **Why not chosen**: [reason]
|
36
|
-
|
37
|
-
## Implications
|
38
|
-
|
39
|
-
**Impact on**:
|
40
|
-
- **Architecture**: [how this affects system design]
|
41
|
-
- **Performance**: [performance implications if any]
|
42
|
-
- **Maintenance**: [how this affects future work]
|
43
|
-
- **Other features**: [what else is affected]
|
44
|
-
|
45
|
-
## Implementation
|
46
|
-
|
47
|
-
**Files affected**:
|
48
|
-
- `path/to/file1.ext`
|
49
|
-
- `path/to/file2.ext`
|
50
|
-
|
51
|
-
**Commits implementing this**:
|
52
|
-
- `abc1234` - [commit message]
|
53
|
-
- `def5678` - [commit message]
|
54
|
-
|
55
|
-
**Testing requirements**:
|
56
|
-
- [ ] Test requirement 1
|
57
|
-
- [ ] Test requirement 2
|
58
|
-
|
59
|
-
## Reversibility
|
60
|
-
|
61
|
-
**Can this be reversed?** [yes / no / partially]
|
62
|
-
|
63
|
-
**If yes, how?**
|
64
|
-
[Steps to reverse this decision if needed]
|
65
|
-
|
66
|
-
**Cost of reversal**:
|
67
|
-
[How much work to reverse it]
|
68
|
-
|
69
|
-
## References
|
70
|
-
|
71
|
-
- Related decisions: [link to other decision docs]
|
72
|
-
- External docs: [relevant links]
|
73
|
-
- Discussion: [where this was discussed]
|
74
|
-
|
75
|
-
---
|
76
|
-
|
77
|
-
**Decision ID**: [unique identifier if needed]
|
78
|
-
**Reviewed by**: [other agent if applicable]
|
79
|
-
**Last updated**: YYYY-MM-DD
|
1
|
+
# Decision: [DECISION TITLE]
|
2
|
+
|
3
|
+
**Date**: YYYY-MM-DD
|
4
|
+
**Decided by**: [agent-name]
|
5
|
+
**Status**: [proposed / accepted / implemented / superseded]
|
6
|
+
|
7
|
+
## Context
|
8
|
+
|
9
|
+
[What situation led to this decision? What problem are we solving?]
|
10
|
+
|
11
|
+
## Decision
|
12
|
+
|
13
|
+
[What was decided? Be specific and clear.]
|
14
|
+
|
15
|
+
## Rationale
|
16
|
+
|
17
|
+
[Why did we make this decision? What factors influenced it?]
|
18
|
+
|
19
|
+
## Alternatives Considered
|
20
|
+
|
21
|
+
### Option 1: [Alternative Name]
|
22
|
+
- **Pros**:
|
23
|
+
- [Pro 1]
|
24
|
+
- [Pro 2]
|
25
|
+
- **Cons**:
|
26
|
+
- [Con 1]
|
27
|
+
- [Con 2]
|
28
|
+
- **Why not chosen**: [reason]
|
29
|
+
|
30
|
+
### Option 2: [Alternative Name]
|
31
|
+
- **Pros**:
|
32
|
+
- [Pro 1]
|
33
|
+
- **Cons**:
|
34
|
+
- [Con 1]
|
35
|
+
- **Why not chosen**: [reason]
|
36
|
+
|
37
|
+
## Implications
|
38
|
+
|
39
|
+
**Impact on**:
|
40
|
+
- **Architecture**: [how this affects system design]
|
41
|
+
- **Performance**: [performance implications if any]
|
42
|
+
- **Maintenance**: [how this affects future work]
|
43
|
+
- **Other features**: [what else is affected]
|
44
|
+
|
45
|
+
## Implementation
|
46
|
+
|
47
|
+
**Files affected**:
|
48
|
+
- `path/to/file1.ext`
|
49
|
+
- `path/to/file2.ext`
|
50
|
+
|
51
|
+
**Commits implementing this**:
|
52
|
+
- `abc1234` - [commit message]
|
53
|
+
- `def5678` - [commit message]
|
54
|
+
|
55
|
+
**Testing requirements**:
|
56
|
+
- [ ] Test requirement 1
|
57
|
+
- [ ] Test requirement 2
|
58
|
+
|
59
|
+
## Reversibility
|
60
|
+
|
61
|
+
**Can this be reversed?** [yes / no / partially]
|
62
|
+
|
63
|
+
**If yes, how?**
|
64
|
+
[Steps to reverse this decision if needed]
|
65
|
+
|
66
|
+
**Cost of reversal**:
|
67
|
+
[How much work to reverse it]
|
68
|
+
|
69
|
+
## References
|
70
|
+
|
71
|
+
- Related decisions: [link to other decision docs]
|
72
|
+
- External docs: [relevant links]
|
73
|
+
- Discussion: [where this was discussed]
|
74
|
+
|
75
|
+
---
|
76
|
+
|
77
|
+
**Decision ID**: [unique identifier if needed]
|
78
|
+
**Reviewed by**: [other agent if applicable]
|
79
|
+
**Last updated**: YYYY-MM-DD
|
@@ -1,95 +1,95 @@
|
|
1
|
-
# Handoff: [FROM-AGENT] → [TO-AGENT]
|
2
|
-
|
3
|
-
**From**: [claude-code / github-copilot-cli]
|
4
|
-
**To**: [claude-code / github-copilot-cli]
|
5
|
-
**Date**: YYYY-MM-DD
|
6
|
-
**Feature**: [feature number and name]
|
7
|
-
|
8
|
-
## Summary
|
9
|
-
|
10
|
-
[1-2 paragraph summary of what's been done and what's needed]
|
11
|
-
|
12
|
-
## Context
|
13
|
-
|
14
|
-
**Why this handoff?**
|
15
|
-
[Reason for the handoff - different expertise, workload balance, etc.]
|
16
|
-
|
17
|
-
**Current state**:
|
18
|
-
[Where the feature is now - what works, what doesn't]
|
19
|
-
|
20
|
-
## Completed Work
|
21
|
-
|
22
|
-
- [x] Task 1 - [brief description]
|
23
|
-
- [x] Task 2 - [brief description]
|
24
|
-
- [x] Task 3 - [brief description]
|
25
|
-
|
26
|
-
**Commits**:
|
27
|
-
- `abc1234` - [commit message]
|
28
|
-
- `def5678` - [commit message]
|
29
|
-
|
30
|
-
**Key files**:
|
31
|
-
- `path/to/file1.ext` - [what it does]
|
32
|
-
- `path/to/file2.ext` - [what it does]
|
33
|
-
|
34
|
-
## Needed Work
|
35
|
-
|
36
|
-
- [ ] Task 1 - [description]
|
37
|
-
- Why: [rationale or context]
|
38
|
-
- Files: [which files to modify]
|
39
|
-
|
40
|
-
- [ ] Task 2 - [description]
|
41
|
-
- Why: [rationale or context]
|
42
|
-
- Files: [which files to modify]
|
43
|
-
|
44
|
-
## Important Notes
|
45
|
-
|
46
|
-
**✓ What's working**:
|
47
|
-
- [Feature A works correctly]
|
48
|
-
- [Test B passes]
|
49
|
-
|
50
|
-
**⚠ Known issues**:
|
51
|
-
- [Issue 1 to be aware of]
|
52
|
-
- [Issue 2 to handle]
|
53
|
-
|
54
|
-
**🔍 Areas to focus on**:
|
55
|
-
- [Priority area 1]
|
56
|
-
- [Priority area 2]
|
57
|
-
|
58
|
-
## Testing
|
59
|
-
|
60
|
-
**Manual testing done**:
|
61
|
-
- [x] Test scenario 1
|
62
|
-
- [x] Test scenario 2
|
63
|
-
- [ ] Test scenario 3 (needs completion)
|
64
|
-
|
65
|
-
**Automated tests**:
|
66
|
-
- [x] Unit tests pass
|
67
|
-
- [ ] Integration tests (need to be written)
|
68
|
-
|
69
|
-
## References
|
70
|
-
|
71
|
-
- Related issue: #123
|
72
|
-
- Design doc: [link or path]
|
73
|
-
- API docs: [link]
|
74
|
-
|
75
|
-
## Questions for Receiving Agent
|
76
|
-
|
77
|
-
> Things to consider or decide:
|
78
|
-
|
79
|
-
1. [Question 1]?
|
80
|
-
2. [Question 2]?
|
81
|
-
|
82
|
-
## Acceptance Criteria
|
83
|
-
|
84
|
-
> When you can consider this handoff accepted:
|
85
|
-
|
86
|
-
- [ ] Reviewed all committed code
|
87
|
-
- [ ] Understand the needed work
|
88
|
-
- [ ] No blocking questions
|
89
|
-
- [ ] Session log created for your work
|
90
|
-
|
91
|
-
---
|
92
|
-
|
93
|
-
**Handoff Status**: pending
|
94
|
-
**Acknowledged by**: _______
|
95
|
-
**Acknowledged date**: _______
|
1
|
+
# Handoff: [FROM-AGENT] → [TO-AGENT]
|
2
|
+
|
3
|
+
**From**: [claude-code / github-copilot-cli]
|
4
|
+
**To**: [claude-code / github-copilot-cli]
|
5
|
+
**Date**: YYYY-MM-DD
|
6
|
+
**Feature**: [feature number and name]
|
7
|
+
|
8
|
+
## Summary
|
9
|
+
|
10
|
+
[1-2 paragraph summary of what's been done and what's needed]
|
11
|
+
|
12
|
+
## Context
|
13
|
+
|
14
|
+
**Why this handoff?**
|
15
|
+
[Reason for the handoff - different expertise, workload balance, etc.]
|
16
|
+
|
17
|
+
**Current state**:
|
18
|
+
[Where the feature is now - what works, what doesn't]
|
19
|
+
|
20
|
+
## Completed Work
|
21
|
+
|
22
|
+
- [x] Task 1 - [brief description]
|
23
|
+
- [x] Task 2 - [brief description]
|
24
|
+
- [x] Task 3 - [brief description]
|
25
|
+
|
26
|
+
**Commits**:
|
27
|
+
- `abc1234` - [commit message]
|
28
|
+
- `def5678` - [commit message]
|
29
|
+
|
30
|
+
**Key files**:
|
31
|
+
- `path/to/file1.ext` - [what it does]
|
32
|
+
- `path/to/file2.ext` - [what it does]
|
33
|
+
|
34
|
+
## Needed Work
|
35
|
+
|
36
|
+
- [ ] Task 1 - [description]
|
37
|
+
- Why: [rationale or context]
|
38
|
+
- Files: [which files to modify]
|
39
|
+
|
40
|
+
- [ ] Task 2 - [description]
|
41
|
+
- Why: [rationale or context]
|
42
|
+
- Files: [which files to modify]
|
43
|
+
|
44
|
+
## Important Notes
|
45
|
+
|
46
|
+
**✓ What's working**:
|
47
|
+
- [Feature A works correctly]
|
48
|
+
- [Test B passes]
|
49
|
+
|
50
|
+
**⚠ Known issues**:
|
51
|
+
- [Issue 1 to be aware of]
|
52
|
+
- [Issue 2 to handle]
|
53
|
+
|
54
|
+
**🔍 Areas to focus on**:
|
55
|
+
- [Priority area 1]
|
56
|
+
- [Priority area 2]
|
57
|
+
|
58
|
+
## Testing
|
59
|
+
|
60
|
+
**Manual testing done**:
|
61
|
+
- [x] Test scenario 1
|
62
|
+
- [x] Test scenario 2
|
63
|
+
- [ ] Test scenario 3 (needs completion)
|
64
|
+
|
65
|
+
**Automated tests**:
|
66
|
+
- [x] Unit tests pass
|
67
|
+
- [ ] Integration tests (need to be written)
|
68
|
+
|
69
|
+
## References
|
70
|
+
|
71
|
+
- Related issue: #123
|
72
|
+
- Design doc: [link or path]
|
73
|
+
- API docs: [link]
|
74
|
+
|
75
|
+
## Questions for Receiving Agent
|
76
|
+
|
77
|
+
> Things to consider or decide:
|
78
|
+
|
79
|
+
1. [Question 1]?
|
80
|
+
2. [Question 2]?
|
81
|
+
|
82
|
+
## Acceptance Criteria
|
83
|
+
|
84
|
+
> When you can consider this handoff accepted:
|
85
|
+
|
86
|
+
- [ ] Reviewed all committed code
|
87
|
+
- [ ] Understand the needed work
|
88
|
+
- [ ] No blocking questions
|
89
|
+
- [ ] Session log created for your work
|
90
|
+
|
91
|
+
---
|
92
|
+
|
93
|
+
**Handoff Status**: pending
|
94
|
+
**Acknowledged by**: _______
|
95
|
+
**Acknowledged date**: _______
|