@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 +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -223,7 +223,7 @@ init_esm_shims();
|
|
|
223
223
|
// src/commands/config/initialize.ts
|
|
224
224
|
init_esm_shims();
|
|
225
225
|
function configInitializeCommand() {
|
|
226
|
-
const cmd = new Command("config-
|
|
226
|
+
const cmd = new Command("config-init");
|
|
227
227
|
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) => {
|
|
228
228
|
try {
|
|
229
229
|
const configManager = createConfigManager(process.cwd());
|