codebase-ai 0.3.5 → 0.3.7

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/README.md CHANGED
@@ -131,6 +131,7 @@ codebase setup
131
131
 
132
132
  # AI interface
133
133
  codebase brief # full project briefing
134
+ codebase brief --slim # lightweight ~20-line brief
134
135
  codebase next # highest-priority open issue
135
136
  codebase status # kanban board + milestones
136
137
  codebase query <path> # e.g. stack.languages or commands.test
@@ -140,9 +141,13 @@ codebase issue create "title"
140
141
  codebase issue close <n> --reason "why"
141
142
  codebase issue comment <n> --message "text"
142
143
 
144
+ # Session management
145
+ codebase handoff # generate HANDOFF.md for session transfer
146
+ codebase tokens # token budget report (A/B/C/D grades)
147
+
143
148
  # Maintenance
144
149
  codebase scan # refresh .codebase.json
145
- codebase doctor # health check
150
+ codebase doctor # health check (includes TOKEN HEALTH section)
146
151
  codebase fix # auto-repair
147
152
  codebase mcp # start MCP server
148
153
  ```
@@ -162,7 +167,7 @@ codebase mcp # start MCP server
162
167
  }
163
168
  ```
164
169
 
165
- Add to `.mcp.json` in your project root. Tools: `project_brief`, `get_codebase`, `query_codebase`, `get_next_task`, `get_blockers`, `create_issue`, `close_issue`, `rescan_project`, `list_commands`.
170
+ Add to `.mcp.json` in your project root. Tools: `project_brief` (supports `slim: true`), `get_codebase`, `query_codebase`, `get_next_task`, `get_blockers`, `create_issue`, `close_issue`, `rescan_project`, `list_commands`, `generate_handoff`.
166
171
 
167
172
  ---
168
173