lite-kits 0.1.0__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.
Files changed (48) hide show
  1. lite_kits/__init__.py +61 -9
  2. lite_kits/cli.py +788 -262
  3. lite_kits/core/__init__.py +19 -0
  4. lite_kits/core/banner.py +160 -0
  5. lite_kits/core/conflict_checker.py +115 -0
  6. lite_kits/core/detector.py +140 -0
  7. lite_kits/core/installer.py +322 -0
  8. lite_kits/core/manifest.py +146 -0
  9. lite_kits/core/validator.py +146 -0
  10. lite_kits/kits/README.md +14 -15
  11. lite_kits/kits/dev/README.md +241 -0
  12. lite_kits/kits/dev/commands/.claude/audit.md +143 -0
  13. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/cleanup.md +2 -2
  14. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/commit.md +2 -2
  15. lite_kits/kits/{project/claude/commands → dev/commands/.claude}/orient.md +30 -48
  16. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
  17. lite_kits/kits/dev/commands/.claude/review.md +202 -0
  18. lite_kits/kits/dev/commands/.claude/stats.md +162 -0
  19. lite_kits/kits/dev/commands/.github/audit.prompt.md +143 -0
  20. lite_kits/kits/{git/github/prompts → dev/commands/.github}/cleanup.prompt.md +2 -2
  21. lite_kits/kits/{git/github/prompts → dev/commands/.github}/commit.prompt.md +2 -2
  22. lite_kits/kits/{project/github/prompts → dev/commands/.github}/orient.prompt.md +34 -48
  23. lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
  24. lite_kits/kits/dev/commands/.github/review.prompt.md +202 -0
  25. lite_kits/kits/dev/commands/.github/stats.prompt.md +163 -0
  26. lite_kits/kits/kits.yaml +497 -0
  27. lite_kits/kits/multiagent/README.md +28 -17
  28. lite_kits/kits/multiagent/{claude/commands → commands/.claude}/sync.md +331 -331
  29. lite_kits/kits/multiagent/{github/prompts → commands/.github}/sync.prompt.md +73 -69
  30. lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +370 -370
  31. lite_kits/kits/multiagent/memory/parallel-work-protocol.md +536 -536
  32. lite_kits/kits/multiagent/memory/pr-workflow-guide.md +275 -281
  33. lite_kits/kits/multiagent/templates/collaboration-structure/README.md +166 -166
  34. lite_kits/kits/multiagent/templates/decision.md +79 -79
  35. lite_kits/kits/multiagent/templates/handoff.md +95 -95
  36. lite_kits/kits/multiagent/templates/session-log.md +68 -68
  37. lite_kits-0.3.1.dist-info/METADATA +259 -0
  38. lite_kits-0.3.1.dist-info/RECORD +41 -0
  39. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/licenses/LICENSE +21 -21
  40. lite_kits/installer.py +0 -417
  41. lite_kits/kits/git/README.md +0 -374
  42. lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -208
  43. lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -242
  44. lite_kits/kits/project/README.md +0 -244
  45. lite_kits-0.1.0.dist-info/METADATA +0 -415
  46. lite_kits-0.1.0.dist-info/RECORD +0 -31
  47. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/WHEEL +0 -0
  48. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,241 @@
1
+ # Dev Kit
2
+
3
+ **Status**: ✅ Recommended (Default)
4
+
5
+ Essential development utilities for solo developers using spec-kit. Combines project management commands with git workflow automation.
6
+
7
+ ## What It Adds
8
+
9
+ ### Commands (AI Agents)
10
+
11
+ | Command | Claude Code | GitHub Copilot | Description |
12
+ |---------|-------------|----------------|-------------|
13
+ | `/orient` | ✅ | ✅ | Agent orientation protocol (most essential!) |
14
+ | `/commit` | ✅ | ✅ | Smart commit with staging and message generation |
15
+ | `/pr` | ✅ | ✅ | Pull request creation with auto-push |
16
+ | `/review` | ✅ | ✅ | Code review helper for staged changes |
17
+ | `/cleanup` | ✅ | ✅ | Safe branch cleanup (delete merged branches) |
18
+ | `/audit` | 🚧 | 🚧 | Security & quality audit (coming soon) |
19
+ | `/stats` | 🚧 | 🚧 | Project statistics (coming soon) |
20
+
21
+ ✅ = Implemented | 🚧 = Coming Soon
22
+
23
+ ## Installation
24
+
25
+ ### As recommended kit (default):
26
+ ```bash
27
+ lite-kits add # Installs dev-kit
28
+ ```
29
+
30
+ ### Individually:
31
+ ```bash
32
+ lite-kits add --kit dev
33
+ ```
34
+
35
+ ## What Gets Installed
36
+
37
+ ```
38
+ your-project/
39
+ ├── .claude/commands/ # If Claude Code detected
40
+ │ ├── orient.md # ✅ Essential!
41
+ │ ├── commit.md # ✅ Smart commits
42
+ │ ├── pr.md # ✅ PR creation
43
+ │ ├── review.md # ✅ Code review
44
+ │ ├── cleanup.md # ✅ Branch cleanup
45
+ │ ├── audit.md # 🚧 Coming Soon
46
+ │ └── stats.md # 🚧 Coming Soon
47
+ └── .github/prompts/ # If GitHub Copilot detected
48
+ ├── orient.prompt.md # ✅ Essential!
49
+ ├── commit.prompt.md # ✅ Smart commits
50
+ ├── pr.prompt.md # ✅ PR creation
51
+ ├── review.prompt.md # ✅ Code review
52
+ ├── cleanup.prompt.md # ✅ Branch cleanup
53
+ ├── audit.prompt.md # 🚧 Coming Soon
54
+ └── stats.prompt.md # 🚧 Coming Soon
55
+ ```
56
+
57
+ **Note**: Vanilla spec-kit files are **never modified** - only new files are added.
58
+
59
+ ## Commands
60
+
61
+ ### `/orient` - Agent Orientation ⭐ ESSENTIAL
62
+
63
+ **Purpose**: Help AI agents quickly understand project context before starting work.
64
+
65
+ **What it does**:
66
+ 1. Detects installed kits
67
+ 2. Determines agent role
68
+ 3. Reads project documentation (`.github/copilot-instructions.md`, `.specify/memory/constitution.md`)
69
+ 4. Checks current git state (branch, recent commits, changes)
70
+ 5. Reviews active spec work
71
+ 6. Outputs concise summary (~150 words max)
72
+
73
+ **Example usage**:
74
+ ```
75
+ /orient
76
+
77
+ ## Orientation Complete
78
+
79
+ **Installed Kits**: dev
80
+
81
+ **I am**: claude-sonnet-4.5 @ Claude Code (Primary)
82
+ **Project**: Lite-kits - Lightweight enhancement kits for spec-driven development
83
+ **Stack**: Python 3.11+, typer, rich
84
+ **Branch**: develop
85
+ **Recent work**: Merged PR #16 (kit refactor)
86
+ **Uncommitted changes**: 12 files
87
+ **Active feature**: None
88
+ **Coordination**: Solo work
89
+
90
+ **Next suggested action**: Review uncommitted changes with /review
91
+ ```
92
+
93
+ **Why this is essential**: Every AI agent should run `/orient` at the start of each session to get up to speed quickly without wasting tokens.
94
+
95
+ ---
96
+
97
+ ### `/commit` - Smart Commit
98
+
99
+ **Purpose**: Intelligent commit workflow with staging proposals and message generation.
100
+
101
+ **What it does**:
102
+ - Analyzes unstaged changes
103
+ - Proposes files to stage
104
+ - Generates conventional commit message
105
+ - Shows combined staging + message for approval
106
+ - Supports multi-commit suggestions for large changesets
107
+
108
+ ---
109
+
110
+ ### `/pr` - Pull Request Creation
111
+
112
+ **Purpose**: Create pull request with automatic branch push.
113
+
114
+ **What it does**:
115
+ - Checks for existing PR (prevents duplicates)
116
+ - Pushes current branch to remote
117
+ - Generates PR description from commits
118
+ - Creates PR via `gh pr create`
119
+ - Shows PR URL when complete
120
+
121
+ ---
122
+
123
+ ### `/review` - Code Review
124
+
125
+ **Purpose**: Review staged changes against project conventions and best practices.
126
+
127
+ **What it does**:
128
+ - Analyzes staged changes (`git diff --staged`)
129
+ - Checks against constitution principles
130
+ - Identifies common code smells
131
+ - Suggests improvements
132
+ - Verifies test coverage
133
+
134
+ ---
135
+
136
+ ### `/cleanup` - Branch Cleanup
137
+
138
+ **Purpose**: Safely delete merged branches.
139
+
140
+ **What it does**:
141
+ - Lists merged branches
142
+ - Excludes current branch, base branches (main/develop)
143
+ - Confirms before deletion
144
+ - Optional remote deletion (`--remote` flag)
145
+ - Protected branch safety
146
+
147
+ ---
148
+
149
+ ### `/audit` - Security & Quality Audit (Coming Soon)
150
+
151
+ **Purpose**: Scan for security issues and quality problems.
152
+
153
+ **Planned features**:
154
+ - Scan for hardcoded secrets/credentials
155
+ - Check for common vulnerabilities (SQL injection, XSS, CSRF)
156
+ - Analyze dependencies for known CVEs
157
+ - Verify input validation
158
+ - Check file permissions
159
+
160
+ ---
161
+
162
+ ### `/stats` - Project Statistics (Coming Soon)
163
+
164
+ **Purpose**: Show project health metrics.
165
+
166
+ **Planned features**:
167
+ - Lines of code by language
168
+ - Test coverage percentage
169
+ - Git activity with agent attribution
170
+ - Complexity metrics
171
+ - Dependency count
172
+ - Health score
173
+
174
+ ---
175
+
176
+ ## Use Cases
177
+
178
+ ### Solo Developer with AI Agent
179
+ **Install**: `lite-kits add` (includes dev-kit)
180
+ **Use**: `/orient` at start of every session, `/commit` and `/pr` for git workflow
181
+
182
+ ### Pair Programming with Claude Code
183
+ **Install**: `lite-kits add`
184
+ **Use**: `/orient` → `/review` → `/commit` → `/pr` workflow
185
+
186
+ ### Security-Focused Project
187
+ **Install**: `lite-kits add --kit dev`
188
+ **Use**: `/audit` regularly for security scans (when implemented)
189
+
190
+ ---
191
+
192
+ ## Configuration
193
+
194
+ No configuration needed - works out of the box.
195
+
196
+ **Optional customization**:
197
+ - Edit `.github/copilot-instructions.md` - Affects `/orient` output
198
+ - Edit `.specify/memory/constitution.md` - Project principles for `/review`
199
+
200
+ ---
201
+
202
+ ## Dependencies
203
+
204
+ **None** - dev-kit is standalone.
205
+
206
+ **Optional pairing**: Works great with multiagent-kit for team coordination.
207
+
208
+ ---
209
+
210
+ ## Compatibility
211
+
212
+ - ✅ **Agents**: Claude Code, GitHub Copilot
213
+ - ✅ **Platforms**: Linux, macOS, Windows
214
+ - ✅ **Shells**: Bash, PowerShell
215
+ - ✅ **Vanilla safe**: Only adds new files, never modifies existing
216
+
217
+ ---
218
+
219
+ ## Uninstall
220
+
221
+ ```bash
222
+ lite-kits remove --kit dev
223
+ ```
224
+
225
+ Removes:
226
+ - `.claude/commands/{orient,commit,pr,review,cleanup,audit,stats}.md`
227
+ - `.github/prompts/{orient,commit,pr,review,cleanup,audit,stats}.prompt.md`
228
+
229
+ ---
230
+
231
+ ## Future Enhancements
232
+
233
+ Considering for dev-kit:
234
+ - `/docs` - Generate/update documentation
235
+ - `/history` - Show project timeline
236
+ - `/dependencies` - Dependency analysis
237
+ - `/performance` - Performance profiling
238
+ - `/status` - Optimized git status command
239
+ - Template library (api, cli, library, frontend feature templates)
240
+
241
+ Suggest more in [GitHub Discussions](https://github.com/tmorgan181/lite-kits/discussions).
@@ -0,0 +1,143 @@
1
+ ---
2
+ description: Perform security analysis on dependencies and code patterns
3
+ ---
4
+
5
+ # Security Audit Helper
6
+
7
+ **Purpose**: Quick security analysis for AI agents working on features involving authentication, data handling, or external dependencies.
8
+
9
+ ## Execution Steps
10
+
11
+ Execute the following steps to perform a security audit:
12
+
13
+ ### 1. Detect Project Type and Dependencies
14
+
15
+ ```bash
16
+ # Check for Python dependencies
17
+ ls requirements.txt pyproject.toml setup.py 2>/dev/null
18
+
19
+ # Check for Node.js dependencies
20
+ ls package.json package-lock.json 2>/dev/null
21
+
22
+ # Check for Rust dependencies
23
+ ls Cargo.toml Cargo.lock 2>/dev/null
24
+
25
+ # Check for Go dependencies
26
+ ls go.mod go.sum 2>/dev/null
27
+ ```
28
+
29
+ ### 2. Run Dependency Vulnerability Scan
30
+
31
+ **Python projects**:
32
+ ```bash
33
+ # Check if pip-audit is available
34
+ command -v pip-audit >/dev/null 2>&1
35
+
36
+ # If available, run scan
37
+ pip-audit
38
+
39
+ # If not available, suggest installation
40
+ echo "Install pip-audit: pip install pip-audit"
41
+ ```
42
+
43
+ **Node.js projects**:
44
+ ```bash
45
+ # npm audit is built-in
46
+ npm audit
47
+
48
+ # Or use yarn
49
+ yarn audit
50
+ ```
51
+
52
+ **Other languages**: Suggest appropriate tools (cargo audit, go list, etc.)
53
+
54
+ ### 3. Scan for Common Security Anti-Patterns
55
+
56
+ Check source code for security issues:
57
+
58
+ ```bash
59
+ # Look for potential hardcoded secrets
60
+ grep -r "API_KEY\s*=\s*['\"]" src/ 2>/dev/null | head -5
61
+ grep -r "PASSWORD\s*=\s*['\"]" src/ 2>/dev/null | head -5
62
+ grep -r "SECRET\s*=\s*['\"]" src/ 2>/dev/null | head -5
63
+
64
+ # Look for weak crypto patterns (Python)
65
+ grep -r "md5\|sha1" src/ 2>/dev/null | head -5
66
+
67
+ # Look for SQL injection risks
68
+ grep -r "execute.*%\|execute.*+" src/ 2>/dev/null | head -5
69
+ ```
70
+
71
+ **Common patterns to flag**:
72
+ - Hardcoded API keys, passwords, tokens
73
+ - Weak cryptographic algorithms (MD5, SHA1)
74
+ - SQL string concatenation
75
+ - Eval/exec with user input
76
+ - Insecure file permissions
77
+
78
+ ### 4. Generate Concise Report
79
+
80
+ Provide analysis in this format (~150 words max):
81
+
82
+ ```markdown
83
+ ## Security Audit
84
+
85
+ **Dependencies**: N scanned, M vulnerabilities found
86
+
87
+ **Vulnerabilities** (if any):
88
+ - package-name==version: [SEVERITY] - Brief description
89
+ - Link to advisory for details
90
+
91
+ **Code Patterns** (if any):
92
+ - file.py:line: [PATTERN] - Recommendation
93
+
94
+ **Next Action**: [Fix CVE-XXXX / Update package / Review auth code]
95
+ ```
96
+
97
+ ## Important Notes
98
+
99
+ - **Graceful fallbacks**: If audit tools not installed, do basic pattern checks only
100
+ - **Be concise**: Target <150 words total output
101
+ - **Prioritize**: Show highest severity issues first
102
+ - **Avoid false positives**: Note that manual review may be needed
103
+ - **No dependencies**: Report "No dependencies to audit" gracefully
104
+ - **Cross-platform**: Use commands available on Windows, macOS, Linux
105
+
106
+ ## Edge Cases
107
+
108
+ - **No dependency files**: "No dependencies found. This appears to be a dependency-free project."
109
+ - **Tool not installed**: Provide installation command, run basic grep checks
110
+ - **No vulnerabilities**: "✅ No known vulnerabilities found! Consider reviewing auth/data handling patterns."
111
+ - **Too many issues**: Sample top 5, note total count
112
+
113
+ ## Example Output
114
+
115
+ ```markdown
116
+ ## Security Audit
117
+
118
+ **Dependencies**: 12 scanned, 2 vulnerabilities found
119
+
120
+ **Vulnerabilities**:
121
+ - requests==2.25.0: MEDIUM - CVE-2023-32681 (Proxy-Auth header leak)
122
+ Update to: requests>=2.31.0
123
+
124
+ **Code Patterns**:
125
+ - src/auth.py:42: Hardcoded API key detected
126
+ - src/db.py:103: SQL string concatenation (injection risk)
127
+
128
+ **Next Action**: Update requests package, move API key to environment variables, use parameterized queries
129
+ ```
130
+
131
+ ```markdown
132
+ ## Security Audit
133
+
134
+ **Dependencies**: pip-audit not installed
135
+
136
+ **Tool Not Available**:
137
+ Install pip-audit for vulnerability scanning:
138
+ `pip install pip-audit`
139
+
140
+ **Code Patterns**: Basic grep checks performed, no obvious issues found
141
+
142
+ **Next Action**: Install pip-audit and re-run for comprehensive dependency scan
143
+ ```
@@ -297,13 +297,13 @@ dev/004-cleanup-command
297
297
  $ git branch --merged develop
298
298
  dev/001-starter-kits
299
299
  dev/002-installer-polish
300
- dev/003-git-kit-enhancements
300
+ dev/003-dev-kit-enhancements
301
301
 
302
302
  # Agent presents options
303
303
  Merged branches available for cleanup:
304
304
  1. dev/001-starter-kits (2 days ago)
305
305
  2. dev/002-installer-polish (1 day ago)
306
- 3. dev/003-git-kit-enhancements (2 hours ago)
306
+ 3. dev/003-dev-kit-enhancements (2 hours ago)
307
307
 
308
308
  Delete which branches? (y/n/e): e
309
309
 
@@ -260,7 +260,7 @@ Message:
260
260
  9. ?? docs/new-guide.md
261
261
 
262
262
  Message:
263
- docs(004): update documentation for git-kit
263
+ docs(004): update documentation for dev-kit
264
264
 
265
265
  Added git workflow documentation and updated README
266
266
  with new command examples.
@@ -274,7 +274,7 @@ Message:
274
274
  Message:
275
275
  chore(004): update implementation status tracking
276
276
 
277
- Marked git-kit as complete in status docs.
277
+ Marked dev-kit as complete in status docs.
278
278
 
279
279
  ---
280
280
 
@@ -15,19 +15,11 @@ Execute the following steps to gather orientation information:
15
15
  Check for kit marker files to determine what's installed:
16
16
 
17
17
  ```bash
18
- # Initialize kit detection variables
19
- PROJECT_KIT=false
20
- GIT_KIT=false
21
- MULTIAGENT_KIT=false
22
-
23
- # Check for project-kit markers
24
- [ -f .claude/commands/review.md ] && PROJECT_KIT=true
25
-
26
- # Check for git-kit markers
27
- [ -f .claude/commands/commit.md ] && GIT_KIT=true
28
-
29
- # Check for multiagent-kit markers
30
- [ -f .specify/memory/pr-workflow-guide.md ] && MULTIAGENT_KIT=true
18
+ # Check all kits in one command
19
+ KITS_INSTALLED=""
20
+ [ -f .claude/commands/orient.md ] && KITS_INSTALLED="${KITS_INSTALLED}dev "
21
+ [ -f .specify/memory/pr-workflow-guide.md ] && KITS_INSTALLED="${KITS_INSTALLED}multiagent "
22
+ KITS_INSTALLED="${KITS_INSTALLED:-vanilla only}"
31
23
  ```
32
24
 
33
25
  ### 2. Determine Agent Role
@@ -58,17 +50,11 @@ Extract:
58
50
  ### 4. Check Git State
59
51
 
60
52
  ```bash
61
- # Current branch
62
- git branch --show-current
63
-
64
- # Recent commits (last 5)
65
- git log --oneline -5
66
-
67
- # Uncommitted changes
68
- git status --short
69
-
70
- # Untracked files count
71
- git ls-files --others --exclude-standard | wc -l
53
+ # Efficient single-command git status check
54
+ # Get branch, recent commits, and changes in one go
55
+ CURRENT_BRANCH=$(git branch --show-current 2>/dev/null || echo "(not in git repo)")
56
+ RECENT_COMMITS=$(git log --oneline -3 2>/dev/null | head -1 || echo "(no commits)")
57
+ CHANGES=$(git status --short 2>/dev/null | wc -l || echo "0")
72
58
  ```
73
59
 
74
60
  ### 5. Check Active Work
@@ -76,29 +62,25 @@ git ls-files --others --exclude-standard | wc -l
76
62
  Look for active feature work:
77
63
 
78
64
  ```bash
79
- # List specs directories
80
- ls -1d specs/*/ 2>/dev/null | tail -3
81
-
82
- # Check for current spec/plan/tasks
83
- CURRENT_BRANCH=$(git branch --show-current)
84
- if [[ "$CURRENT_BRANCH" =~ ^[0-9]+ ]]; then
85
- SPEC_DIR="specs/$CURRENT_BRANCH"
86
- [ -f "$SPEC_DIR/spec.md" ] && echo "✓ Spec exists"
87
- [ -f "$SPEC_DIR/plan.md" ] && echo "✓ Plan exists"
88
- [ -f "$SPEC_DIR/tasks.md" ] && echo "✓ Tasks exist"
65
+ # Check if current branch matches a spec directory
66
+ if [[ "$CURRENT_BRANCH" =~ ^[0-9]+ ]] || [[ "$CURRENT_BRANCH" =~ ^dev/[0-9]+ ]]; then
67
+ # Extract spec number from branch name
68
+ SPEC_NUM=$(echo "$CURRENT_BRANCH" | grep -oE '[0-9]+' | head -1)
69
+ SPEC_DIR="specs/$SPEC_NUM-*"
70
+ # Check for spec files efficiently
71
+ SPEC_FILES=$(ls -1 $SPEC_DIR/{spec,plan,tasks}.md 2>/dev/null | wc -l)
89
72
  fi
90
73
  ```
91
74
 
92
75
  ### 6. Check Multi-Agent Coordination (if multiagent-kit installed)
93
76
 
94
- If `MULTIAGENT_KIT=true`:
95
-
96
77
  ```bash
97
- # Check for active sessions
98
- find specs/*/collaboration/active/sessions/ -name "*.md" 2>/dev/null | wc -l
99
-
100
- # Check for pending handoffs
101
- find specs/*/collaboration/active/decisions/ -name "handoff-*.md" 2>/dev/null | head -1
78
+ # Only check if multiagent kit is installed
79
+ if [[ "$KITS_INSTALLED" == *"multiagent"* ]]; then
80
+ # Efficient check for collaboration activity
81
+ ACTIVE_SESSIONS=$(find specs/*/collaboration/active/sessions/ -name "*.md" 2>/dev/null | wc -l)
82
+ PENDING_HANDOFF=$(find specs/*/collaboration/active/decisions/ -name "handoff-*.md" 2>/dev/null | head -1)
83
+ fi
102
84
  ```
103
85
 
104
86
  ### 7. Generate Concise Output
@@ -108,15 +90,15 @@ Provide a **concise summary** (~150 words max) in this format:
108
90
  ```
109
91
  ## Orientation Complete
110
92
 
111
- **Installed Kits**: [list detected kits or "vanilla only"]
93
+ **Installed Kits**: [KITS_INSTALLED]
112
94
 
113
95
  **I am**: [AGENT_ROLE from step 2]
114
96
  **Project**: [project name from docs]
115
97
  **Stack**: [main technologies]
116
- **Branch**: [current branch]
117
- **Recent work**: [summary of last 1-2 commits]
118
- **Uncommitted changes**: [count of modified files]
119
- **Active feature**: [current spec if on feature branch]
98
+ **Branch**: [CURRENT_BRANCH]
99
+ **Recent work**: [RECENT_COMMITS - just the message]
100
+ **Uncommitted changes**: [CHANGES count]
101
+ **Active feature**: [current spec if SPEC_FILES > 0]
120
102
  **Coordination**: [solo work / handoff pending / etc]
121
103
 
122
104
  **Next suggested action**: [based on state analysis below]
@@ -133,7 +115,7 @@ Based on the state you discovered, suggest the next logical action:
133
115
  - **Plan exists, no tasks** → "Run `/tasks` to break down into tasks"
134
116
  - **Tasks exist** → "Run `/implement` to start coding"
135
117
  - **Handoff detected** (multiagent) → "Review handoff in `specs/[feature]/collaboration/active/decisions/`"
136
- - **Uncommitted changes** → "Review changes and consider running `/commit`" (if git-kit installed)
118
+ - **Uncommitted changes** → "Review changes and consider running `/commit`" (if dev-kit installed)
137
119
 
138
120
  ## Important Notes
139
121
 
@@ -148,7 +130,7 @@ Based on the state you discovered, suggest the next logical action:
148
130
  ```
149
131
  ## Orientation Complete
150
132
 
151
- **Installed Kits**: project, git
133
+ **Installed Kits**: dev
152
134
 
153
135
  **I am**: claude-sonnet-4.5 @ Claude Code (Primary)
154
136
  **Project**: Blog Platform API (TypeScript/Node.js)
@@ -341,7 +341,7 @@ Implements Phase 1 MVP with `/orient` command and modular kit system for multi-a
341
341
  ## Changes
342
342
 
343
343
  ### Features
344
- - Add `/orient` command for agent orientation (project-kit)
344
+ - Add `/orient` command for agent orientation (dev-kit)
345
345
  - Implement kit-aware installer with --kit flag support
346
346
  - Add modular kit structure (project, git, multiagent)
347
347
  - Auto-dependency inclusion (multiagent → project + git)