agent-takkub 1.0.47 โ†’ 1.0.49

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
@@ -54,6 +54,7 @@ A single AI agent hits a wall on big work: context fills up, sub-tasks collide,
54
54
  | ๐Ÿงพ **Per-role memory + L2 archive** | Each teammate keeps a short, token-budgeted "learned notes" file; entries that get trimmed for space are archived (not deleted) to a searchable sibling file instead of being lost. |
55
55
  | ๐Ÿ”Ž **BM25 search (`takkub search`)** | Full-text search over session logs and role-memory archives, ranked with Okapi BM25 โ€” tokenizes both English words and Thai character trigrams, no external segmenter. |
56
56
  | โœ… **Evidence-gated QA/review** | A verify role's "done" report is checked for actual evidence (a file, a test run, an exit code) โ€” reports with no evidence cited get flagged for the Lead instead of trusted at face value. |
57
+ | ๐Ÿงฌ **Structural code-intelligence (`graft`)** | Symbol search, call-graph tracing, and signatures-only file views wired into code-reading roles (frontend/backend/mobile/devops/qa/reviewer/critic) โ€” no LLM call, ~92% smaller than reading a large file whole. Fully optional: install with `takkub doctor --fix` (needs Node โ‰ฅ 20); a pane never gets the extra tools unless a project's graph has actually finished building. The graph lives outside the repo (`~/.agent-takkub/graft-graphs`, never committed); disable entirely with `TAKKUB_SKIP_GRAFT_BUILD=1`. |
57
58
 
58
59
  ### Reliability & diagnostics
59
60
 
@@ -118,6 +119,8 @@ agent-takkub
118
119
 
119
120
  **Requirements** โ€” Node.js โ‰ฅ 18 and Python โ‰ฅ 3.11 already on your system. They're **detected, never reinstalled**. Everything else lives in an isolated `~/.agent-takkub`; your existing `claude` CLI, plugins, and config are left completely untouched.
120
121
 
122
+ **Optional: `graft` code-intelligence** needs Node โ‰ฅ 20 โ€” stricter than the cockpit's own Node โ‰ฅ 18 floor. It's off until you run `takkub doctor --fix`; without it (or on Node 18โ€“19), the cockpit runs exactly the same, just without the extra structural-search tools for code-reading roles.
123
+
121
124
  </td></tr>
122
125
  </table>
123
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-takkub",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS). Install globally: npm i -g agent-takkub",
5
5
  "keywords": [
6
6
  "claude",
@@ -42,5 +42,6 @@
42
42
  "engines": {
43
43
  "node": ">=18"
44
44
  },
45
+ "engines-note": "This floor is for agent-takkub itself. The OPTIONAL graft code-intelligence feature (installed separately via `takkub doctor --fix`, not an npm dependency of this package) needs Node >=20 โ€” see README's Requirements section. Not raised here because it would force the >=20 floor onto every user even though graft stays off until explicitly enabled.",
45
46
  "license": "MIT"
46
47
  }