@tokenade/cli 1.1.7 → 1.1.9
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 +1 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -162,7 +162,6 @@ When reporting, please include your OS, `tokenade --version`, your coding agent,
|
|
|
162
162
|
| `query <symbol>` | Locate a symbol without reading files. |
|
|
163
163
|
| `impact <file>` | Refactor impact radius (dependents + symbols). |
|
|
164
164
|
| `semantic <query>` | Hybrid BM25 + dense, framework-aware search (aliases: `ask`, `sem`). |
|
|
165
|
-
| `file-search <path> <query>` | Per-file embedder lookup (`--k=N`). |
|
|
166
165
|
| `index` | Build & cache the codebase symbol index. |
|
|
167
166
|
| `watch` | Keep the index fresh: incremental reindex on every save. |
|
|
168
167
|
| `measure` | Report agent-loaded-file startup-token cost. |
|
|
@@ -364,7 +363,7 @@ AGENTS.md 385
|
|
|
364
363
|
PER SESSION (one agent loads one) 642
|
|
365
364
|
```
|
|
366
365
|
|
|
367
|
-
Also: **`index`** (build the cache up front) · **`watch`** (keep it fresh on save) · **`
|
|
366
|
+
Also: **`index`** (build the cache up front) · **`watch`** (keep it fresh on save) · **`review-context --base main`** (budget-bounded diff context for reviews) · **`pack --budget 8000`** (export a repo slice as one bundle) · **`semantic-status`** (index state).
|
|
368
367
|
|
|
369
368
|
### Run commands through compaction
|
|
370
369
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokenade/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Tokenade — cut your AI coding agent's token bill. Installs the Tokenade CLI (a local, paid token-reduction tool; activate via your browser).",
|
|
5
5
|
"homepage": "https://tokenade.net",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"tar": "^7.5.16"
|
|
16
16
|
},
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@tokenade/cli-linux-x64": "1.1.
|
|
19
|
-
"@tokenade/cli-linux-x64-musl": "1.1.
|
|
20
|
-
"@tokenade/cli-linux-arm64-musl": "1.1.
|
|
21
|
-
"@tokenade/cli-darwin-arm64": "1.1.
|
|
22
|
-
"@tokenade/cli-darwin-x64": "1.1.
|
|
23
|
-
"@tokenade/cli-win32-x64": "1.1.
|
|
24
|
-
"@tokenade/cli-win32-arm64": "1.1.
|
|
18
|
+
"@tokenade/cli-linux-x64": "1.1.9",
|
|
19
|
+
"@tokenade/cli-linux-x64-musl": "1.1.9",
|
|
20
|
+
"@tokenade/cli-linux-arm64-musl": "1.1.9",
|
|
21
|
+
"@tokenade/cli-darwin-arm64": "1.1.9",
|
|
22
|
+
"@tokenade/cli-darwin-x64": "1.1.9",
|
|
23
|
+
"@tokenade/cli-win32-x64": "1.1.9",
|
|
24
|
+
"@tokenade/cli-win32-arm64": "1.1.9"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"bin/",
|