diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-07 07:12:04 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-07 07:12:04 +0000 |
| commit | 2568226dfcfe101d03c59392e54559080597c20d (patch) | |
| tree | 18ca86c0700aff665d3e4cdc1343b3f9c3b49a2f /scripts | |
| parent | 68453478f516ae923e99df85f5642f0f865b5bcc (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 'scripts')
| -rwxr-xr-x | scripts/deploy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/deploy b/scripts/deploy index 0b8e162..cc51fc1 100755 --- a/scripts/deploy +++ b/scripts/deploy @@ -28,6 +28,10 @@ echo "==> Fixing permissions..." chown www-data:www-data "${BIN_DIR}/claudomator" chmod +x "${BIN_DIR}/claudomator" +echo "==> Installing to /usr/local/bin..." +cp "${BIN_DIR}/claudomator" /usr/local/bin/claudomator +chmod +x /usr/local/bin/claudomator + echo "==> Restarting service..." sudo systemctl restart "${SERVICE}" sudo systemctl status "${SERVICE}" --no-pager -l |
