summaryrefslogtreecommitdiff
path: root/internal/cli/root.go
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-07 07:12:04 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-07 07:12:04 +0000
commit2568226dfcfe101d03c59392e54559080597c20d (patch)
tree18ca86c0700aff665d3e4cdc1343b3f9c3b49a2f /internal/cli/root.go
parent68453478f516ae923e99df85f5642f0f865b5bcc (diff)
feat: add create CLI command with --parent-id; deploy to /usr/local/bin
claudomator create <name> -i <instructions> [flags] --parent-id attach as subtask of given task ID --working-dir working directory --model claude model --budget max USD --timeout task timeout --priority high/normal/low --start queue immediately after creating deploy script now also copies binary to /usr/local/bin/claudomator. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cli/root.go')
-rw-r--r--internal/cli/root.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/root.go b/internal/cli/root.go
index 75ec393..1a528fb 100644
--- a/internal/cli/root.go
+++ b/internal/cli/root.go
@@ -42,6 +42,7 @@ func NewRootCmd() *cobra.Command {
newInitCmd(),
newLogsCmd(),
newStartCmd(),
+ newCreateCmd(),
)
return cmd