@cliangdev/flux-plugin 0.3.0 → 0.3.1

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/bin/install.cjs +2 -2
  2. package/package.json +1 -1
package/bin/install.cjs CHANGED
@@ -327,10 +327,10 @@ ${cyan} ███████╗██╗ ██╗ ██╗██╗
327
327
  mcpConfig.mcpServers = {};
328
328
  }
329
329
 
330
- const versionTag = pkg.version.includes("-dev.") ? "latest" : pkg.version;
330
+ const tag = pkg.version.includes("-dev.") ? "next" : "latest";
331
331
  mcpConfig.mcpServers.flux = {
332
332
  command: "bunx",
333
- args: [`@cliangdev/flux-plugin@${versionTag}`, "serve"],
333
+ args: [`@cliangdev/flux-plugin@${tag}`, "serve"],
334
334
  };
335
335
 
336
336
  writeJson(mcpConfigPath, mcpConfig);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cliangdev/flux-plugin",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
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",