lumia-plugin 0.5.1 → 0.6.0

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.
@@ -5,6 +5,6 @@
5
5
  "description": "Internal template illustrating settings, actions, variables, and alerts for Lumia Stream plugins.",
6
6
  "main": "main.js",
7
7
  "dependencies": {
8
- "@lumiastream/plugin": "^0.5.1"
8
+ "@lumiastream/plugin": "^0.6.0"
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumia-plugin",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Command-line tools for creating, building, and validating Lumia Stream plugins.",
5
5
  "bin": {
6
6
  "lumia-plugin": "scripts/cli.js"
@@ -24,7 +24,7 @@
24
24
  "author": "Lumia Stream",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@lumiastream/plugin": "^0.5.1",
27
+ "@lumiastream/plugin": "^0.6.0",
28
28
  "jszip": "3.10.1"
29
29
  }
30
30
  }
package/scripts/skills.js CHANGED
@@ -117,7 +117,7 @@ Usage:
117
117
  Options:
118
118
  --target <path> Project path to update (default: current directory)
119
119
  --tools <list> Comma-separated: claude,copilot,gemini,cursor,codex
120
- (default: claude,copilot,gemini,cursor)
120
+ (default: claude,copilot,gemini,cursor,codex)
121
121
  --codex-home <path> Codex home path used when tools include codex
122
122
  (default: $CODEX_HOME or ~/.codex)
123
123
  --dry-run Print planned updates without writing files
@@ -169,7 +169,7 @@ function parseArgs(argv) {
169
169
  const parsed = {
170
170
  action: "install",
171
171
  target: process.cwd(),
172
- tools: ["claude", "copilot", "gemini", "cursor"],
172
+ tools: ["claude", "copilot", "gemini", "cursor", "codex"],
173
173
  codexHome: defaultCodexHome,
174
174
  dryRun: false,
175
175
  };