@cliangdev/flux-plugin 0.0.0-dev.45a9640 → 0.0.0-dev.5c77ea3

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/bin/install.cjs CHANGED
@@ -179,7 +179,7 @@ ${cyan} ███████╗██╗ ██╗ ██╗██╗
179
179
 
180
180
  mcpConfig.mcpServers.flux = {
181
181
  command: "npx",
182
- args: ["-y", "@cliangdev/flux-plugin", "serve"],
182
+ args: ["-y", `@cliangdev/flux-plugin@${pkg.version}`, "serve"],
183
183
  };
184
184
 
185
185
  writeJson(mcpConfigPath, mcpConfig);
@@ -1,4 +1,3 @@
1
- #!/usr/bin/env node
2
1
  import { createRequire } from "node:module";
3
2
  var __create = Object.create;
4
3
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cliangdev/flux-plugin",
3
- "version": "0.0.0-dev.45a9640",
3
+ "version": "0.0.0-dev.5c77ea3",
4
4
  "description": "Claude Code plugin for AI-first workflow orchestration with MCP server",
5
5
  "type": "module",
6
6
  "main": "./dist/server/index.js",
@@ -23,7 +23,8 @@
23
23
  "build:compile:server": "bun build --compile --outfile bin/flux-server src/server/index.ts",
24
24
  "build:compile:status": "bun build --compile --outfile bin/flux-status src/status-line/index.ts",
25
25
  "validate": "node scripts/validate-structure.cjs",
26
- "prepublishOnly": "bun run validate && bun run build",
26
+ "test:integration": "bun test scripts/__tests__/integration.test.ts --timeout 120000",
27
+ "prepublishOnly": "bun run validate && bun run build && bun run test:integration",
27
28
  "test": "bun test",
28
29
  "test:linear-description": "bun run src/server/adapters/__tests__/linear-description-test.ts",
29
30
  "typecheck": "tsc --noEmit",