@fractary/codex-cli 0.10.19 → 0.10.20

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/dist/cli.cjs CHANGED
@@ -255,7 +255,7 @@ init_cjs_shims();
255
255
  // src/commands/config/initialize.ts
256
256
  init_cjs_shims();
257
257
  function configInitializeCommand() {
258
- const cmd = new commander.Command("config-initialize");
258
+ const cmd = new commander.Command("config-init");
259
259
  cmd.description("Initialize codex section in .fractary/config.yaml (requires base config from @fractary/core)").option("--org <slug>", 'Organization slug (e.g., "fractary")').option("--project <name>", "Project name (default: derived from directory)").option("--codex-repo <name>", 'Codex repository name (e.g., "codex.fractary.com")').option("--sync-preset <name>", "Sync preset (standard, minimal)", "standard").option("--force", "Overwrite existing codex section").option("--no-mcp", "Skip MCP server installation").option("--json", "Output as JSON").action(async (options) => {
260
260
  try {
261
261
  const configManager = codex.createConfigManager(process.cwd());