@cortexkit/aft-opencode 0.49.2 → 0.49.3

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -35725,7 +35725,7 @@ function listenForForegroundAbort(ctx, runtime, enabled) {
35725
35725
  }
35726
35726
  function bashToolDescription(aftSearchRegistered, compressionOn, backgroundOn) {
35727
35727
  const searchSteer = aftSearchRegistered ? "use aft_search (concepts, identifiers, regex, literals), read, aft_outline, or aft_zoom instead" : "use the grep tool, read, aft_outline, or aft_zoom instead";
35728
- const compression = compressionOn ? " Output is compressed by default; pass compressed: false for raw output. Piped commands run verbatim and show the pipeline's output; for AFT's test/build summary, run the runner without | head, | tail, or | grep." : "";
35728
+ const compression = compressionOn ? " Output is compressed by default; pass compressed: false for raw output. Piped commands run verbatim and show the pipeline's output; for AFT's test/build summary, run the runner without | head, | tail, or | grep. Pipeline-failure notes cover single top-level pipelines only; multi-statement commands (`a; b | c; d`) are not instrumented, so masked failures inside them still need explicit exit-code checks." : "";
35729
35729
  const tasks = backgroundOn ? ' Commands run in the foreground and return inline; wait: true blocks until a long command finishes instead of auto-promoting, but detaches to background if you send a new message — use it when you need the result before doing anything else; keep it off otherwise so auto-promote can remind you while you work. Use background: true yourself ONLY when you have other useful work to do while it runs; then bash_watch waits on the task (sync blocks until exit/pattern, async notifies) and bash_status peeks at it — never background a command and immediately bash_watch it (that wastes a turn for what foreground returns in one), and never loop bash_status to wait. pty: true runs interactive programs (REPLs, TUIs), implies background, and is driven with bash_status({ outputMode: "screen" }) plus bash_write.' : " Commands run in the foreground to completion; timeout is the hard kill cap (default 30 minutes).";
35730
35730
  return `Execute shell commands.${compression}${tasks}
35731
35731
 
@@ -38290,11 +38290,11 @@ var PLUGIN_VERSION = (() => {
38290
38290
  return "0.0.0";
38291
38291
  }
38292
38292
  })();
38293
- var ANNOUNCEMENT_VERSION = "0.49.2";
38293
+ var ANNOUNCEMENT_VERSION = "0.49.3";
38294
38294
  var ANNOUNCEMENT_FEATURES = [
38295
- "No more zombie tasks: background commands die with their session reclaimed worktrees and aborted calls both terminate their process groups, while deliberately backgrounded tasks keep surviving restarts.",
38296
- "aft_inspect stops crying wolf: diagnostics from a still-warming analyzer no longer count as errors (rust-analyzer's readiness signal is now consumed), so E-counts match what the compiler actually says.",
38297
- "Piped commands can't hide failures: when an upstream command fails behind a successful pipe tail, the output says so. Plus zoom into nested JSON paths, range hints on large reads, and better edit errors (thanks @iceteaSA)."
38295
+ "Callgraph stays consistent under load: edits arriving mid-rebuild can no longer be silently lost from navigation results.",
38296
+ "aft_zoom handles real-world .jsonc: files with comment banners above the opening brace now resolve, and not-found errors point at the segment that actually failed (thanks @iceteaSA).",
38297
+ "Disk hygiene: stale per-checkout inspect caches from old worktrees are now swept automatically one machine reclaimed 21 GB."
38298
38298
  ];
38299
38299
  var ANNOUNCEMENT_FOOTER = "Join us on Discord: https://discord.gg/DSa65w8wuf";
38300
38300
  var plugin = async (input) => initializePluginForDirectory(input);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortexkit/aft-opencode",
3
- "version": "0.49.2",
3
+ "version": "0.49.3",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Agent File Tools (AFT) — tree-sitter and lsp powered code analysis",
6
6
  "main": "dist/index.js",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@clack/prompts": "^1.6.0",
37
- "@cortexkit/aft-bridge": "0.49.2",
37
+ "@cortexkit/aft-bridge": "0.49.3",
38
38
  "@opentui/core": "0.4.3",
39
39
  "@opentui/solid": "0.4.3",
40
40
  "comment-json": "^4.6.2",
@@ -43,12 +43,12 @@
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "optionalDependencies": {
46
- "@cortexkit/aft-darwin-arm64": "0.49.2",
47
- "@cortexkit/aft-darwin-x64": "0.49.2",
48
- "@cortexkit/aft-linux-arm64": "0.49.2",
49
- "@cortexkit/aft-linux-x64": "0.49.2",
50
- "@cortexkit/aft-win32-arm64": "0.49.2",
51
- "@cortexkit/aft-win32-x64": "0.49.2"
46
+ "@cortexkit/aft-darwin-arm64": "0.49.3",
47
+ "@cortexkit/aft-darwin-x64": "0.49.3",
48
+ "@cortexkit/aft-linux-arm64": "0.49.3",
49
+ "@cortexkit/aft-linux-x64": "0.49.3",
50
+ "@cortexkit/aft-win32-arm64": "0.49.3",
51
+ "@cortexkit/aft-win32-x64": "0.49.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@opencode-ai/plugin": "^1.17.11",