@vpxa/aikit 0.1.177 → 0.1.179

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vpxa/aikit",
3
- "version": "0.1.177",
3
+ "version": "0.1.179",
4
4
  "type": "module",
5
5
  "description": "Local-first AI developer toolkit — knowledge base, code analysis, context management, and developer tools for LLM agents",
6
6
  "license": "MIT",
@@ -146,6 +146,7 @@ This gives the user a visual dependency graph of the execution plan before dispa
146
146
  7. **Flow Context** — "Call \`knowledge({ action: 'withdraw', scope: 'flow', profile: '<role>', budget: 6000 })\` as your FIRST action to receive pre-analyzed context from prior agents."
147
147
  8. **Self-Review** — checklist before declaring status
148
148
  9. **No present** — "Do NOT use the \`present\` tool — return all findings as structured text"
149
+ 10. **No get_changed_files** — "Do NOT call \`get_changed_files\` — it returns ALL uncommitted diffs (100K+ tokens), wasting your context window. If you need a specific file's changes, use \`run_in_terminal\` with \`git diff <file>\`."
149
150
 
150
151
  **Subagent status protocol:** \`DONE\` | \`DONE_WITH_CONCERNS\` | \`NEEDS_CONTEXT\` | \`BLOCKED\`
151
152
  **Per-step review cycle (tier-gated):**
@@ -67,6 +67,7 @@ Use AI Kit retrieval and compression tools first. Prefer reusable compressed con
67
67
  | \`run_in_terminal\` for tsc/lint | \`check({})\` | Typecheck + lint combined, summary output |
68
68
  | \`run_in_terminal\` for test | \`test_run({})\` | Run tests with structured output |
69
69
  | Editing without reading | \`file_summary\` then targeted \`read_file\` | Prevents wrong-position edits |
70
+ | \`get_changed_files\` | \`run_in_terminal\` with \`git diff <specific-file>\` | Returns ALL uncommitted diffs (100K+ tokens). Target specific files instead |
70
71
 
71
72
  > **Path Note:** \`compact({path})\` and \`file_summary({path})\` accept ANY absolute path — not just indexed workspace files. They read the file directly from disk. Use them freely for cross-workspace and cross-repository file access without needing to index the target workspace first.
72
73