@jmylchreest/aide-plugin 0.0.30 → 0.0.32

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": "@jmylchreest/aide-plugin",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "description": "aide plugin for OpenCode — multi-agent orchestration, memory, skills, and persistence",
5
5
  "type": "module",
6
6
  "main": "./src/opencode/index.ts",
@@ -23,10 +23,10 @@
23
23
  "aide-wrapper": "./bin/aide-wrapper.sh"
24
24
  },
25
25
  "scripts": {
26
- "prebuild": "npm run copy-src",
26
+ "prebuild": "bun run copy-src",
27
27
  "build": "echo 'Ships TypeScript source — no compilation needed'",
28
- "copy-src": "node scripts/copy-src.mjs",
29
- "prepublishOnly": "npm run copy-src"
28
+ "copy-src": "bun scripts/copy-src.mjs",
29
+ "prepublishOnly": "bun run copy-src"
30
30
  },
31
31
  "keywords": [
32
32
  "aide",
package/src/cli/config.ts CHANGED
@@ -95,7 +95,7 @@ export function addAideToConfig(
95
95
  if (!mcp[MCP_SERVER_NAME]) {
96
96
  mcp[MCP_SERVER_NAME] = {
97
97
  type: "local",
98
- command: ["npx", "-y", PLUGIN_NAME, "mcp"],
98
+ command: ["bunx", "-y", PLUGIN_NAME, "mcp"],
99
99
  environment: {
100
100
  AIDE_CODE_WATCH: "1",
101
101
  AIDE_CODE_WATCH_DELAY: "30s",
package/src/cli/index.ts CHANGED
File without changes