@cortexkit/aft 0.35.4 → 0.36.0

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
@@ -5,10 +5,10 @@ Unified CLI for [Agent File Tools (AFT)](https://github.com/cortexkit/aft) — s
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npx @cortexkit/aft setup # interactive setup for one or more harnesses
9
- npx @cortexkit/aft doctor # check and fix configuration issues
10
- npx @cortexkit/aft doctor --force # force clear plugin cache
11
- npx @cortexkit/aft doctor --issue # collect diagnostics and open a GitHub issue
8
+ npx @cortexkit/aft@latest setup # interactive setup for one or more harnesses
9
+ npx @cortexkit/aft@latest doctor # check and fix configuration issues
10
+ npx @cortexkit/aft@latest doctor --force # force clear plugin cache
11
+ npx @cortexkit/aft@latest doctor --issue # collect diagnostics and open a GitHub issue
12
12
  ```
13
13
 
14
14
  By default the CLI auto-detects which harnesses are installed on your system (OpenCode, Pi). When multiple are detected, it prompts you to choose. Use `--harness opencode` or `--harness pi` to target one explicitly.
package/dist/index.js CHANGED
@@ -927,7 +927,6 @@ var init_bridge = __esm(() => {
927
927
  }
928
928
  };
929
929
  });
930
-
931
930
  // ../aft-bridge/dist/platform.js
932
931
  var init_platform = () => {};
933
932
 
@@ -1148,6 +1147,22 @@ var init_onnx_runtime = __esm(() => {
1148
1147
  };
1149
1148
  });
1150
1149
 
1150
+ // ../aft-bridge/dist/pipe-strip.js
1151
+ var NOISE_FILTERS, GREP_GUARD_FLAGS;
1152
+ var init_pipe_strip = __esm(() => {
1153
+ NOISE_FILTERS = new Set(["grep", "rg", "head", "tail", "cat", "less", "more"]);
1154
+ GREP_GUARD_FLAGS = new Set([
1155
+ "c",
1156
+ "count",
1157
+ "q",
1158
+ "quiet",
1159
+ "o",
1160
+ "only-matching",
1161
+ "l",
1162
+ "files-with-matches"
1163
+ ]);
1164
+ });
1165
+
1151
1166
  // ../aft-bridge/dist/pool.js
1152
1167
  import { realpathSync } from "node:fs";
1153
1168
 
@@ -1339,6 +1354,7 @@ var init_dist = __esm(() => {
1339
1354
  init_npm_resolver();
1340
1355
  init_onnx_runtime();
1341
1356
  init_paths();
1357
+ init_pipe_strip();
1342
1358
  init_platform();
1343
1359
  init_pool();
1344
1360
  init_resolver();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortexkit/aft",
3
- "version": "0.35.4",
3
+ "version": "0.36.0",
4
4
  "type": "module",
5
5
  "description": "Unified CLI for Agent File Tools (AFT) — setup, doctor, and diagnostics across supported agent harnesses (OpenCode, Pi)",
6
6
  "license": "MIT",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@clack/prompts": "^1.2.0",
27
- "@cortexkit/aft-bridge": "0.35.4",
27
+ "@cortexkit/aft-bridge": "0.36.0",
28
28
  "comment-json": "^4.6.2"
29
29
  },
30
30
  "devDependencies": {