@happycastle/oh-my-openclaw 0.6.0 → 0.6.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.
- package/dist/cli/setup.js +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.js +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli/setup.js
CHANGED
|
@@ -121,7 +121,7 @@ export function runSetup(options) {
|
|
|
121
121
|
}
|
|
122
122
|
export function registerSetupCli(ctx) {
|
|
123
123
|
ctx.program
|
|
124
|
-
.command('setup')
|
|
124
|
+
.command('omoc-setup')
|
|
125
125
|
.description('Inject OmOC agent definitions into your OpenClaw config')
|
|
126
126
|
.option('--force', 'Overwrite existing OmOC agent configs', false)
|
|
127
127
|
.option('--dry-run', 'Preview changes without writing', false)
|
package/dist/cli.js
CHANGED
|
@@ -180,7 +180,7 @@ function install(installDir) {
|
|
|
180
180
|
console.log('Available commands:');
|
|
181
181
|
console.log(` ${BLUE}/ultrawork [task]${RESET} — Full automation (plan → execute → verify)`);
|
|
182
182
|
console.log(` ${BLUE}/plan [task]${RESET} — Create a plan only`);
|
|
183
|
-
console.log(` ${BLUE}/
|
|
183
|
+
console.log(` ${BLUE}/start_work${RESET} — Execute existing plan`);
|
|
184
184
|
console.log(`\nSend a message to your OpenClaw agent to get started!`);
|
|
185
185
|
console.log(`\n${DIM}Tip: Ask your agent "Read the oh-my-openclaw skill and tell me what it does"${RESET}\n`);
|
|
186
186
|
}
|
package/dist/index.js
CHANGED
|
@@ -118,9 +118,9 @@ export default function register(api) {
|
|
|
118
118
|
workspaceDir: ctx.workspaceDir,
|
|
119
119
|
logger: ctx.logger,
|
|
120
120
|
});
|
|
121
|
-
}, { commands: ['setup'] });
|
|
122
|
-
registry.cli.push('setup');
|
|
123
|
-
api.logger.info(`[${PLUGIN_ID}] CLI command registered (setup)`);
|
|
121
|
+
}, { commands: ['omoc-setup'] });
|
|
122
|
+
registry.cli.push('omoc-setup');
|
|
123
|
+
api.logger.info(`[${PLUGIN_ID}] CLI command registered (omoc-setup)`);
|
|
124
124
|
}
|
|
125
125
|
catch (err) {
|
|
126
126
|
api.logger.error(`[${PLUGIN_ID}] Failed to register CLI:`, err);
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "oh-my-openclaw",
|
|
3
3
|
"name": "Oh-My-OpenClaw",
|
|
4
4
|
"description": "Multi-agent orchestration plugin \u2014 11 agents, category-based model routing, todo enforcer, ralph loop, agent setup CLI, and custom tools",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.1",
|
|
6
6
|
"skills": ["skills"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED