@automagik/genie 4.260331.5 → 4.260331.6
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/.claude-plugin/marketplace.json +1 -1
- package/CLAUDE.md +31 -5
- package/dist/genie.js +524 -496
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/plugins/genie/.claude-plugin/plugin.json +1 -1
- package/plugins/genie/package.json +1 -1
- package/skills/genie/SKILL.md +71 -233
- package/skills/genie/reference/lifecycle.md +65 -0
- package/src/genie.ts +26 -3
- package/src/term-commands/agent/index.ts +6 -0
- package/src/term-commands/dir.ts +0 -92
- package/src/term-commands/msg.ts +8 -0
- package/src/term-commands/team.ts +8 -0
|
@@ -29,6 +29,14 @@ export function registerTeamNamespace(program: Command): void {
|
|
|
29
29
|
.option('--tmux-session <name>', 'Tmux session to place team window in (default: derived from repo path)')
|
|
30
30
|
.option('--session <name>', 'Alias for --tmux-session (deprecated)')
|
|
31
31
|
.option('--no-spawn', 'Create team and copy wish without spawning the leader (useful for testing)')
|
|
32
|
+
.addHelpText(
|
|
33
|
+
'after',
|
|
34
|
+
`
|
|
35
|
+
Examples:
|
|
36
|
+
genie team create my-feature --repo . # Create team in current repo
|
|
37
|
+
genie team create my-feature --repo . --wish my-feature-slug # Create team with a wish
|
|
38
|
+
genie team create hotfix --repo . --branch main # Create from main branch`,
|
|
39
|
+
)
|
|
32
40
|
.action(
|
|
33
41
|
async (
|
|
34
42
|
name: string,
|