@mutagent/cli 0.1.116 → 0.1.117

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": "@mutagent/cli",
3
- "version": "0.1.116",
3
+ "version": "0.1.117",
4
4
  "description": "Bun-native CLI for MutagenT AI platform - AI-first agent integration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,17 +14,22 @@
14
14
  }
15
15
  },
16
16
  "scripts": {
17
- "dev": "bun run src/bin/cli.ts",
17
+ "sync-skill": "bun run scripts/sync-skill.ts",
18
+ "dev": "bun run sync-skill && bun run src/bin/cli.ts",
19
+ "prebuild": "bun run sync-skill",
18
20
  "build": "bun build src/bin/cli.ts src/index.ts --outdir dist --target node --sourcemap --external commander --external chalk --external ora --external inquirer --external cosmiconfig --external zod --external handlebars --external open --external @mutagent/sdk",
19
- "build:binary": "bun build src/bin/cli.ts --compile --outfile dist/mutagent",
20
- "build:binary:linux-x64": "bun build src/bin/cli.ts --compile --target=bun-linux-x64 --outfile dist/mutagent-linux-x64",
21
- "build:binary:linux-arm64": "bun build src/bin/cli.ts --compile --target=bun-linux-arm64 --outfile dist/mutagent-linux-arm64",
22
- "build:binary:darwin-x64": "bun build src/bin/cli.ts --compile --target=bun-darwin-x64 --outfile dist/mutagent-darwin-x64",
23
- "build:binary:darwin-arm64": "bun build src/bin/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/mutagent-darwin-arm64",
24
- "build:binary:windows-x64": "bun build src/bin/cli.ts --compile --target=bun-windows-x64 --outfile dist/mutagent-windows-x64.exe",
21
+ "build:binary": "bun run sync-skill && bun build src/bin/cli.ts --compile --outfile dist/mutagent",
22
+ "build:binary:linux-x64": "bun run sync-skill && bun build src/bin/cli.ts --compile --target=bun-linux-x64 --outfile dist/mutagent-linux-x64",
23
+ "build:binary:linux-arm64": "bun run sync-skill && bun build src/bin/cli.ts --compile --target=bun-linux-arm64 --outfile dist/mutagent-linux-arm64",
24
+ "build:binary:darwin-x64": "bun run sync-skill && bun build src/bin/cli.ts --compile --target=bun-darwin-x64 --outfile dist/mutagent-darwin-x64",
25
+ "build:binary:darwin-arm64": "bun run sync-skill && bun build src/bin/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/mutagent-darwin-arm64",
26
+ "build:binary:windows-x64": "bun run sync-skill && bun build src/bin/cli.ts --compile --target=bun-windows-x64 --outfile dist/mutagent-windows-x64.exe",
27
+ "pretest": "bun run sync-skill",
25
28
  "test": "bun test src/",
26
29
  "test:integration": "bun test tests/pipe/ --timeout 30000",
30
+ "pretype-check": "bun run sync-skill",
27
31
  "type-check": "tsc --noEmit",
32
+ "prelint": "bun run sync-skill",
28
33
  "lint": "eslint src/**/*.ts --format compact",
29
34
  "lint:fix": "eslint src/**/*.ts --fix --format compact",
30
35
  "verify": "bun run lint && bun run type-check && bun run build",