shipwright-cli 2.4.0 → 3.1.0
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/README.md +16 -11
- package/completions/_shipwright +248 -94
- package/completions/shipwright.bash +68 -19
- package/completions/shipwright.fish +310 -42
- package/config/decision-tiers.json +55 -0
- package/config/defaults.json +111 -0
- package/config/event-schema.json +218 -0
- package/config/policy.json +21 -18
- package/dashboard/coverage/coverage-summary.json +14 -0
- package/dashboard/public/index.html +1 -1
- package/dashboard/server.ts +306 -17
- package/dashboard/src/components/charts/bar.test.ts +79 -0
- package/dashboard/src/components/charts/donut.test.ts +68 -0
- package/dashboard/src/components/charts/pipeline-rail.test.ts +117 -0
- package/dashboard/src/components/charts/sparkline.test.ts +125 -0
- package/dashboard/src/core/api.test.ts +309 -0
- package/dashboard/src/core/helpers.test.ts +301 -0
- package/dashboard/src/core/router.test.ts +307 -0
- package/dashboard/src/core/router.ts +7 -0
- package/dashboard/src/core/sse.test.ts +144 -0
- package/dashboard/src/views/metrics.test.ts +186 -0
- package/dashboard/src/views/overview.test.ts +173 -0
- package/dashboard/src/views/pipelines.test.ts +183 -0
- package/dashboard/src/views/team.test.ts +253 -0
- package/dashboard/vitest.config.ts +14 -5
- package/docs/TIPS.md +1 -1
- package/docs/patterns/README.md +1 -1
- package/package.json +7 -9
- package/scripts/adapters/docker-deploy.sh +1 -1
- package/scripts/adapters/tmux-adapter.sh +11 -1
- package/scripts/adapters/wezterm-adapter.sh +1 -1
- package/scripts/check-version-consistency.sh +1 -1
- package/scripts/lib/architecture.sh +127 -0
- package/scripts/lib/bootstrap.sh +75 -0
- package/scripts/lib/compat.sh +89 -6
- package/scripts/lib/config.sh +91 -0
- package/scripts/lib/daemon-adaptive.sh +3 -3
- package/scripts/lib/daemon-dispatch.sh +63 -17
- package/scripts/lib/daemon-failure.sh +0 -0
- package/scripts/lib/daemon-health.sh +1 -1
- package/scripts/lib/daemon-patrol.sh +64 -17
- package/scripts/lib/daemon-poll.sh +54 -25
- package/scripts/lib/daemon-state.sh +125 -23
- package/scripts/lib/daemon-triage.sh +31 -9
- package/scripts/lib/decide-autonomy.sh +295 -0
- package/scripts/lib/decide-scoring.sh +228 -0
- package/scripts/lib/decide-signals.sh +462 -0
- package/scripts/lib/fleet-failover.sh +63 -0
- package/scripts/lib/helpers.sh +29 -6
- package/scripts/lib/pipeline-detection.sh +2 -2
- package/scripts/lib/pipeline-github.sh +9 -9
- package/scripts/lib/pipeline-intelligence.sh +105 -38
- package/scripts/lib/pipeline-quality-checks.sh +17 -16
- package/scripts/lib/pipeline-quality.sh +1 -1
- package/scripts/lib/pipeline-stages.sh +440 -59
- package/scripts/lib/pipeline-state.sh +54 -4
- package/scripts/lib/policy.sh +0 -0
- package/scripts/lib/test-helpers.sh +247 -0
- package/scripts/postinstall.mjs +78 -12
- package/scripts/signals/example-collector.sh +36 -0
- package/scripts/sw +17 -7
- package/scripts/sw-activity.sh +1 -11
- package/scripts/sw-adaptive.sh +109 -85
- package/scripts/sw-adversarial.sh +4 -14
- package/scripts/sw-architecture-enforcer.sh +1 -11
- package/scripts/sw-auth.sh +8 -17
- package/scripts/sw-autonomous.sh +111 -49
- package/scripts/sw-changelog.sh +1 -11
- package/scripts/sw-checkpoint.sh +144 -20
- package/scripts/sw-ci.sh +2 -12
- package/scripts/sw-cleanup.sh +13 -17
- package/scripts/sw-code-review.sh +16 -36
- package/scripts/sw-connect.sh +5 -12
- package/scripts/sw-context.sh +9 -26
- package/scripts/sw-cost.sh +17 -18
- package/scripts/sw-daemon.sh +76 -71
- package/scripts/sw-dashboard.sh +57 -17
- package/scripts/sw-db.sh +524 -26
- package/scripts/sw-decide.sh +685 -0
- package/scripts/sw-decompose.sh +1 -11
- package/scripts/sw-deps.sh +15 -25
- package/scripts/sw-developer-simulation.sh +1 -11
- package/scripts/sw-discovery.sh +138 -30
- package/scripts/sw-doc-fleet.sh +7 -17
- package/scripts/sw-docs-agent.sh +6 -16
- package/scripts/sw-docs.sh +4 -12
- package/scripts/sw-doctor.sh +134 -43
- package/scripts/sw-dora.sh +11 -19
- package/scripts/sw-durable.sh +35 -52
- package/scripts/sw-e2e-orchestrator.sh +11 -27
- package/scripts/sw-eventbus.sh +115 -115
- package/scripts/sw-evidence.sh +114 -30
- package/scripts/sw-feedback.sh +3 -13
- package/scripts/sw-fix.sh +2 -20
- package/scripts/sw-fleet-discover.sh +1 -11
- package/scripts/sw-fleet-viz.sh +10 -18
- package/scripts/sw-fleet.sh +13 -17
- package/scripts/sw-github-app.sh +6 -16
- package/scripts/sw-github-checks.sh +1 -11
- package/scripts/sw-github-deploy.sh +1 -11
- package/scripts/sw-github-graphql.sh +2 -12
- package/scripts/sw-guild.sh +1 -11
- package/scripts/sw-heartbeat.sh +49 -12
- package/scripts/sw-hygiene.sh +45 -43
- package/scripts/sw-incident.sh +48 -74
- package/scripts/sw-init.sh +35 -37
- package/scripts/sw-instrument.sh +1 -11
- package/scripts/sw-intelligence.sh +368 -53
- package/scripts/sw-jira.sh +5 -14
- package/scripts/sw-launchd.sh +2 -12
- package/scripts/sw-linear.sh +8 -17
- package/scripts/sw-logs.sh +4 -12
- package/scripts/sw-loop.sh +905 -104
- package/scripts/sw-memory.sh +263 -20
- package/scripts/sw-mission-control.sh +2 -12
- package/scripts/sw-model-router.sh +73 -34
- package/scripts/sw-otel.sh +15 -23
- package/scripts/sw-oversight.sh +1 -11
- package/scripts/sw-patrol-meta.sh +5 -11
- package/scripts/sw-pipeline-composer.sh +7 -17
- package/scripts/sw-pipeline-vitals.sh +1 -11
- package/scripts/sw-pipeline.sh +550 -122
- package/scripts/sw-pm.sh +2 -12
- package/scripts/sw-pr-lifecycle.sh +33 -28
- package/scripts/sw-predictive.sh +16 -22
- package/scripts/sw-prep.sh +6 -16
- package/scripts/sw-ps.sh +1 -11
- package/scripts/sw-public-dashboard.sh +2 -12
- package/scripts/sw-quality.sh +85 -14
- package/scripts/sw-reaper.sh +1 -11
- package/scripts/sw-recruit.sh +15 -25
- package/scripts/sw-regression.sh +11 -21
- package/scripts/sw-release-manager.sh +19 -28
- package/scripts/sw-release.sh +8 -16
- package/scripts/sw-remote.sh +1 -11
- package/scripts/sw-replay.sh +48 -44
- package/scripts/sw-retro.sh +70 -92
- package/scripts/sw-review-rerun.sh +1 -1
- package/scripts/sw-scale.sh +174 -41
- package/scripts/sw-security-audit.sh +12 -22
- package/scripts/sw-self-optimize.sh +239 -23
- package/scripts/sw-session.sh +5 -15
- package/scripts/sw-setup.sh +8 -18
- package/scripts/sw-standup.sh +5 -15
- package/scripts/sw-status.sh +32 -23
- package/scripts/sw-strategic.sh +129 -13
- package/scripts/sw-stream.sh +1 -11
- package/scripts/sw-swarm.sh +76 -36
- package/scripts/sw-team-stages.sh +10 -20
- package/scripts/sw-templates.sh +4 -14
- package/scripts/sw-testgen.sh +3 -13
- package/scripts/sw-tmux-pipeline.sh +1 -19
- package/scripts/sw-tmux-role-color.sh +0 -10
- package/scripts/sw-tmux-status.sh +3 -11
- package/scripts/sw-tmux.sh +2 -20
- package/scripts/sw-trace.sh +1 -19
- package/scripts/sw-tracker-github.sh +0 -10
- package/scripts/sw-tracker-jira.sh +1 -11
- package/scripts/sw-tracker-linear.sh +1 -11
- package/scripts/sw-tracker.sh +7 -24
- package/scripts/sw-triage.sh +29 -39
- package/scripts/sw-upgrade.sh +5 -23
- package/scripts/sw-ux.sh +1 -19
- package/scripts/sw-webhook.sh +18 -32
- package/scripts/sw-widgets.sh +3 -21
- package/scripts/sw-worktree.sh +11 -27
- package/scripts/update-homebrew-sha.sh +73 -0
- package/templates/pipelines/tdd.json +72 -0
- package/scripts/sw-pipeline.sh.mock +0 -7
|
@@ -9,52 +9,54 @@ _shipwright_completions() {
|
|
|
9
9
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
10
10
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
11
11
|
|
|
12
|
-
# Top-level commands
|
|
13
|
-
local commands="agent quality observe release intel
|
|
12
|
+
# Top-level commands — all 90+ from the CLI router
|
|
13
|
+
local commands="agent quality observe release intel session status mission-control ps logs activity templates doctor cleanup reaper upgrade loop pipeline worktree prep hygiene daemon autonomous memory guild instrument cost adaptive regression incident db deps fleet fleet-viz fix init setup dashboard public-dashboard jira linear model tracker heartbeat standup checkpoint durable webhook connect remote launchd auth intelligence optimize predict adversarial simulation strategic architecture vitals stream docs changelog docs-agent doc-fleet release-manager replay review-rerun scale swarm dora retro tmux tmux-pipeline github checks ci deploys github-app decompose discovery context trace pr widgets feedback eventbus evidence otel triage pipeline-composer oversight code-review pm team-stages ux recruit testgen e2e security-audit help version"
|
|
14
14
|
|
|
15
15
|
case "$prev" in
|
|
16
|
-
shipwright|sw
|
|
16
|
+
shipwright|sw)
|
|
17
17
|
COMPREPLY=( $(compgen -W "$commands" -- "$cur") )
|
|
18
18
|
return 0
|
|
19
19
|
;;
|
|
20
|
+
# ─── Group routers ────────────────────────────────────────────────
|
|
20
21
|
agent)
|
|
21
|
-
COMPREPLY=( $(compgen -W "recruit swarm standup guild oversight" -- "$cur") )
|
|
22
|
+
COMPREPLY=( $(compgen -W "recruit swarm standup guild oversight help" -- "$cur") )
|
|
22
23
|
return 0
|
|
23
24
|
;;
|
|
24
25
|
quality)
|
|
25
|
-
COMPREPLY=( $(compgen -W "code-review security-audit testgen hygiene" -- "$cur") )
|
|
26
|
+
COMPREPLY=( $(compgen -W "code-review security-audit testgen hygiene validate gate help" -- "$cur") )
|
|
26
27
|
return 0
|
|
27
28
|
;;
|
|
28
29
|
observe)
|
|
29
|
-
COMPREPLY=( $(compgen -W "vitals dora retro stream activity replay status" -- "$cur") )
|
|
30
|
+
COMPREPLY=( $(compgen -W "vitals dora retro stream activity replay status help" -- "$cur") )
|
|
30
31
|
return 0
|
|
31
32
|
;;
|
|
32
33
|
release)
|
|
33
|
-
COMPREPLY=( $(compgen -W "release release-manager changelog deploy" -- "$cur") )
|
|
34
|
+
COMPREPLY=( $(compgen -W "release release-manager changelog deploy build help" -- "$cur") )
|
|
34
35
|
return 0
|
|
35
36
|
;;
|
|
36
37
|
intel)
|
|
37
|
-
COMPREPLY=( $(compgen -W "predict intelligence strategic optimize" -- "$cur") )
|
|
38
|
+
COMPREPLY=( $(compgen -W "predict intelligence strategic optimize help" -- "$cur") )
|
|
38
39
|
return 0
|
|
39
40
|
;;
|
|
41
|
+
# ─── Subcommands for flat commands ────────────────────────────────
|
|
40
42
|
pipeline)
|
|
41
|
-
COMPREPLY=( $(compgen -W "start resume status test" -- "$cur") )
|
|
43
|
+
COMPREPLY=( $(compgen -W "start resume status abort list show test" -- "$cur") )
|
|
42
44
|
return 0
|
|
43
45
|
;;
|
|
44
46
|
daemon)
|
|
45
|
-
COMPREPLY=( $(compgen -W "start stop status metrics test" -- "$cur") )
|
|
47
|
+
COMPREPLY=( $(compgen -W "start stop status metrics triage patrol test logs init" -- "$cur") )
|
|
46
48
|
return 0
|
|
47
49
|
;;
|
|
48
50
|
fleet)
|
|
49
|
-
COMPREPLY=( $(compgen -W "start stop status metrics test" -- "$cur") )
|
|
51
|
+
COMPREPLY=( $(compgen -W "start stop status metrics discover test" -- "$cur") )
|
|
50
52
|
return 0
|
|
51
53
|
;;
|
|
52
54
|
memory)
|
|
53
|
-
COMPREPLY=( $(compgen -W "show search stats" -- "$cur") )
|
|
55
|
+
COMPREPLY=( $(compgen -W "show search forget export import stats test" -- "$cur") )
|
|
54
56
|
return 0
|
|
55
57
|
;;
|
|
56
58
|
cost)
|
|
57
|
-
COMPREPLY=( $(compgen -W "show budget" -- "$cur") )
|
|
59
|
+
COMPREPLY=( $(compgen -W "show budget record calculate check-budget remaining-budget" -- "$cur") )
|
|
58
60
|
return 0
|
|
59
61
|
;;
|
|
60
62
|
templates)
|
|
@@ -121,13 +123,49 @@ _shipwright_completions() {
|
|
|
121
123
|
COMPREPLY=( $(compgen -W "review merge cleanup feedback" -- "$cur") )
|
|
122
124
|
return 0
|
|
123
125
|
;;
|
|
124
|
-
|
|
125
|
-
COMPREPLY=( $(compgen -W "
|
|
126
|
+
db)
|
|
127
|
+
COMPREPLY=( $(compgen -W "init health migrate stats query export" -- "$cur") )
|
|
128
|
+
return 0
|
|
129
|
+
;;
|
|
130
|
+
ci)
|
|
131
|
+
COMPREPLY=( $(compgen -W "generate status test" -- "$cur") )
|
|
132
|
+
return 0
|
|
133
|
+
;;
|
|
134
|
+
auth)
|
|
135
|
+
COMPREPLY=( $(compgen -W "login logout status test" -- "$cur") )
|
|
136
|
+
return 0
|
|
137
|
+
;;
|
|
138
|
+
autonomous)
|
|
139
|
+
COMPREPLY=( $(compgen -W "start status test" -- "$cur") )
|
|
140
|
+
return 0
|
|
141
|
+
;;
|
|
142
|
+
version)
|
|
143
|
+
COMPREPLY=( $(compgen -W "show bump check" -- "$cur") )
|
|
144
|
+
return 0
|
|
145
|
+
;;
|
|
146
|
+
jira)
|
|
147
|
+
COMPREPLY=( $(compgen -W "sync status test" -- "$cur") )
|
|
148
|
+
return 0
|
|
149
|
+
;;
|
|
150
|
+
linear)
|
|
151
|
+
COMPREPLY=( $(compgen -W "sync status test" -- "$cur") )
|
|
152
|
+
return 0
|
|
153
|
+
;;
|
|
154
|
+
eventbus)
|
|
155
|
+
COMPREPLY=( $(compgen -W "emit listen status test" -- "$cur") )
|
|
156
|
+
return 0
|
|
157
|
+
;;
|
|
158
|
+
evidence)
|
|
159
|
+
COMPREPLY=( $(compgen -W "capture verify pre-pr" -- "$cur") )
|
|
160
|
+
return 0
|
|
161
|
+
;;
|
|
162
|
+
webhook)
|
|
163
|
+
COMPREPLY=( $(compgen -W "start stop status test" -- "$cur") )
|
|
126
164
|
return 0
|
|
127
165
|
;;
|
|
128
166
|
esac
|
|
129
167
|
|
|
130
|
-
# Flags for subcommands
|
|
168
|
+
# Flags for subcommands
|
|
131
169
|
if [[ "$cur" == -* ]]; then
|
|
132
170
|
case "${COMP_WORDS[1]}" in
|
|
133
171
|
pipeline)
|
|
@@ -140,7 +178,7 @@ _shipwright_completions() {
|
|
|
140
178
|
COMPREPLY=( $(compgen -W "--repo --local --test-cmd --fast-test-cmd --fast-test-interval --max-iterations --model --agents --roles --worktree --skip-permissions --max-turns --resume --max-restarts --verbose --audit --audit-agent --quality-gates --definition-of-done --no-auto-extend --extension-size --max-extensions" -- "$cur") )
|
|
141
179
|
;;
|
|
142
180
|
fix)
|
|
143
|
-
COMPREPLY=( $(compgen -W "--repos" -- "$cur") )
|
|
181
|
+
COMPREPLY=( $(compgen -W "--repos --worktree --test-cmd" -- "$cur") )
|
|
144
182
|
;;
|
|
145
183
|
logs)
|
|
146
184
|
COMPREPLY=( $(compgen -W "--follow --lines --grep" -- "$cur") )
|
|
@@ -167,7 +205,19 @@ _shipwright_completions() {
|
|
|
167
205
|
COMPREPLY=( $(compgen -W "--token" -- "$cur") )
|
|
168
206
|
;;
|
|
169
207
|
cost)
|
|
170
|
-
COMPREPLY=( $(compgen -W "--period --json --by-stage" -- "$cur") )
|
|
208
|
+
COMPREPLY=( $(compgen -W "--period --json --by-stage --by-issue" -- "$cur") )
|
|
209
|
+
;;
|
|
210
|
+
daemon)
|
|
211
|
+
COMPREPLY=( $(compgen -W "--detach --no-github --max-parallel --auto-scale" -- "$cur") )
|
|
212
|
+
;;
|
|
213
|
+
session)
|
|
214
|
+
COMPREPLY=( $(compgen -W "--template -t --agents --roles" -- "$cur") )
|
|
215
|
+
;;
|
|
216
|
+
fleet)
|
|
217
|
+
COMPREPLY=( $(compgen -W "--org --language --config" -- "$cur") )
|
|
218
|
+
;;
|
|
219
|
+
help)
|
|
220
|
+
COMPREPLY=( $(compgen -W "--all -a" -- "$cur") )
|
|
171
221
|
;;
|
|
172
222
|
esac
|
|
173
223
|
return 0
|
|
@@ -178,4 +228,3 @@ _shipwright_completions() {
|
|
|
178
228
|
|
|
179
229
|
complete -F _shipwright_completions shipwright
|
|
180
230
|
complete -F _shipwright_completions sw
|
|
181
|
-
complete -F _shipwright_completions cct
|
|
@@ -4,20 +4,26 @@
|
|
|
4
4
|
# Place in ~/.config/fish/completions/
|
|
5
5
|
|
|
6
6
|
# Disable file completions by default
|
|
7
|
-
for cmd in shipwright sw
|
|
7
|
+
for cmd in shipwright sw
|
|
8
8
|
complete -c $cmd -f
|
|
9
9
|
|
|
10
|
-
#
|
|
11
|
-
set -l all_cmds agent quality observe release intel session status ps logs templates doctor cleanup reaper upgrade loop pipeline worktree prep daemon memory cost init help version
|
|
10
|
+
# All top-level commands (90+)
|
|
11
|
+
set -l all_cmds agent quality observe release intel session status mission-control ps logs activity templates doctor cleanup reaper upgrade loop pipeline worktree prep hygiene daemon autonomous memory guild instrument cost adaptive regression incident db deps fleet fleet-viz fix init setup dashboard public-dashboard jira linear model tracker heartbeat standup checkpoint durable webhook connect remote launchd auth intelligence optimize predict adversarial simulation strategic architecture vitals stream docs changelog docs-agent doc-fleet release-manager replay review-rerun scale swarm dora retro tmux tmux-pipeline github checks ci deploys github-app decompose discovery context trace pr widgets feedback eventbus evidence otel triage pipeline-composer oversight code-review pm team-stages ux recruit testgen e2e security-audit help version
|
|
12
|
+
|
|
13
|
+
# ─── Command groups ──────────────────────────────────────────────────
|
|
12
14
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "agent" -d "Agent management (recruit, swarm, standup, guild, oversight)"
|
|
13
|
-
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "quality" -d "Quality & review (code-review, security-audit, testgen, hygiene)"
|
|
15
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "quality" -d "Quality & review (code-review, security-audit, testgen, hygiene, validate)"
|
|
14
16
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "observe" -d "Observability (vitals, dora, retro, stream, activity, replay)"
|
|
15
|
-
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "release" -d "Release & deploy (release, release-manager, changelog, deploy)"
|
|
17
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "release" -d "Release & deploy (release, release-manager, changelog, deploy, build)"
|
|
16
18
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "intel" -d "Intelligence (predict, intelligence, strategic, optimize)"
|
|
19
|
+
|
|
20
|
+
# ─── Core workflow ───────────────────────────────────────────────────
|
|
17
21
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "session" -d "Create a new tmux window for a Claude team"
|
|
18
22
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "status" -d "Show dashboard of running teams and agents"
|
|
23
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "mission-control" -d "Terminal-based pipeline mission control"
|
|
19
24
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "ps" -d "Show running agent processes and status"
|
|
20
25
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "logs" -d "View and search agent pane logs"
|
|
26
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "activity" -d "Live agent activity stream"
|
|
21
27
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "templates" -d "Manage team composition templates"
|
|
22
28
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "doctor" -d "Validate your setup and check for issues"
|
|
23
29
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "cleanup" -d "Clean up orphaned team sessions"
|
|
@@ -27,12 +33,114 @@ for cmd in shipwright sw cct
|
|
|
27
33
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "pipeline" -d "Full delivery pipeline"
|
|
28
34
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "worktree" -d "Manage git worktrees"
|
|
29
35
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "prep" -d "Repo preparation"
|
|
36
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "hygiene" -d "Repository organization & cleanup"
|
|
30
37
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "daemon" -d "Issue watcher daemon"
|
|
38
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "autonomous" -d "AI-building-AI master controller"
|
|
31
39
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "memory" -d "Persistent memory system"
|
|
32
40
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "cost" -d "Cost intelligence"
|
|
33
41
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "init" -d "Quick tmux setup"
|
|
42
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "setup" -d "Guided setup wizard"
|
|
34
43
|
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "help" -d "Show help message"
|
|
35
|
-
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "version" -d "Show version"
|
|
44
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "version" -d "Show/bump/check version"
|
|
45
|
+
|
|
46
|
+
# ─── Agent management (top-level shortcuts) ──────────────────────────
|
|
47
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "swarm" -d "Dynamic agent swarm management"
|
|
48
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "recruit" -d "Agent recruitment & talent management"
|
|
49
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "standup" -d "Automated daily standups"
|
|
50
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "guild" -d "Knowledge guilds & cross-team learning"
|
|
51
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "oversight" -d "Quality oversight board"
|
|
52
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "pm" -d "Autonomous PM agent"
|
|
53
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "team-stages" -d "Multi-agent execution with roles"
|
|
54
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "scale" -d "Dynamic agent team scaling"
|
|
55
|
+
|
|
56
|
+
# ─── Quality (top-level shortcuts) ───────────────────────────────────
|
|
57
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "code-review" -d "Clean code & architecture analysis"
|
|
58
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "security-audit" -d "Comprehensive security auditing"
|
|
59
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "testgen" -d "Autonomous test generation"
|
|
60
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "adversarial" -d "Red-team code review"
|
|
61
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "simulation" -d "Multi-persona developer simulation"
|
|
62
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "architecture" -d "Architecture model & enforcement"
|
|
63
|
+
|
|
64
|
+
# ─── Observability (top-level shortcuts) ─────────────────────────────
|
|
65
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "vitals" -d "Pipeline vitals — real-time scoring"
|
|
66
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "dora" -d "DORA metrics dashboard"
|
|
67
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "retro" -d "Sprint retrospective engine"
|
|
68
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "stream" -d "Live terminal output streaming"
|
|
69
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "replay" -d "Pipeline DVR — view past runs"
|
|
70
|
+
|
|
71
|
+
# ─── Release (top-level shortcuts) ───────────────────────────────────
|
|
72
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "changelog" -d "Automated release notes"
|
|
73
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "release-manager" -d "Autonomous release pipeline"
|
|
74
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "review-rerun" -d "SHA-deduped rerun comment writer"
|
|
75
|
+
|
|
76
|
+
# ─── Intelligence (top-level shortcuts) ──────────────────────────────
|
|
77
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "intelligence" -d "Intelligence engine analysis"
|
|
78
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "predict" -d "Predictive risk assessment"
|
|
79
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "strategic" -d "Strategic intelligence agent"
|
|
80
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "optimize" -d "Self-optimization based on DORA"
|
|
81
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "adaptive" -d "Data-driven pipeline tuning"
|
|
82
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "regression" -d "Regression detection pipeline"
|
|
83
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "model" -d "Intelligent model routing"
|
|
84
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "pipeline-composer" -d "Dynamic pipeline composition"
|
|
85
|
+
|
|
86
|
+
# ─── Operations ──────────────────────────────────────────────────────
|
|
87
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "fleet" -d "Multi-repo daemon orchestration"
|
|
88
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "fleet-viz" -d "Multi-repo fleet visualization"
|
|
89
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "fix" -d "Bulk fix across repos"
|
|
90
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "dashboard" -d "Real-time web dashboard"
|
|
91
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "public-dashboard" -d "Public pipeline progress"
|
|
92
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "connect" -d "Team connect — sync local state"
|
|
93
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "remote" -d "Remote machine management"
|
|
94
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "launchd" -d "Process supervision"
|
|
95
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "heartbeat" -d "Agent heartbeat protocol"
|
|
96
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "checkpoint" -d "Save/restore agent state"
|
|
97
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "tmux-pipeline" -d "Spawn pipelines in tmux"
|
|
98
|
+
|
|
99
|
+
# ─── Integrations ────────────────────────────────────────────────────
|
|
100
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "jira" -d "Jira ↔ GitHub sync"
|
|
101
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "linear" -d "Linear ↔ GitHub sync"
|
|
102
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "tracker" -d "Issue tracker router"
|
|
103
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "github" -d "GitHub context & metadata"
|
|
104
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "github-app" -d "GitHub App management"
|
|
105
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "checks" -d "GitHub check runs"
|
|
106
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "ci" -d "CI/CD workflow generation"
|
|
107
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "deploys" -d "Deployment history"
|
|
108
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "webhook" -d "GitHub webhook receiver"
|
|
109
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "auth" -d "GitHub OAuth authentication"
|
|
110
|
+
|
|
111
|
+
# ─── Issue management ────────────────────────────────────────────────
|
|
112
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "triage" -d "Issue labeling & prioritization"
|
|
113
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "decompose" -d "Issue decomposition"
|
|
114
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "pr" -d "PR lifecycle management"
|
|
115
|
+
|
|
116
|
+
# ─── Data & learning ─────────────────────────────────────────────────
|
|
117
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "db" -d "SQLite persistence layer"
|
|
118
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "instrument" -d "Pipeline instrumentation"
|
|
119
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "discovery" -d "Cross-pipeline learning"
|
|
120
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "feedback" -d "Production feedback loop"
|
|
121
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "eventbus" -d "Durable event bus"
|
|
122
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "evidence" -d "Machine-verifiable proof"
|
|
123
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "otel" -d "OpenTelemetry observability"
|
|
124
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "context" -d "Context engine"
|
|
125
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "trace" -d "E2E traceability"
|
|
126
|
+
|
|
127
|
+
# ─── Documentation ───────────────────────────────────────────────────
|
|
128
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "docs" -d "Documentation keeper"
|
|
129
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "docs-agent" -d "Auto-sync README, wiki, API docs"
|
|
130
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "doc-fleet" -d "Documentation fleet orchestrator"
|
|
131
|
+
|
|
132
|
+
# ─── Advanced ────────────────────────────────────────────────────────
|
|
133
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "incident" -d "Incident detection & response"
|
|
134
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "deps" -d "Dependency update management"
|
|
135
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "durable" -d "Durable workflow engine"
|
|
136
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "tmux" -d "tmux health & plugin management"
|
|
137
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "ux" -d "Premium UX enhancement layer"
|
|
138
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "widgets" -d "Embeddable status widgets"
|
|
139
|
+
complete -c $cmd -n "not __fish_seen_subcommand_from $all_cmds" -a "e2e" -d "Test suite registry & execution"
|
|
140
|
+
|
|
141
|
+
# ═══════════════════════════════════════════════════════════════════════
|
|
142
|
+
# SUBCOMMANDS
|
|
143
|
+
# ═══════════════════════════════════════════════════════════════════════
|
|
36
144
|
|
|
37
145
|
# agent subcommands
|
|
38
146
|
complete -c $cmd -n "__fish_seen_subcommand_from agent" -a "recruit" -d "Agent recruitment & talent management"
|
|
@@ -46,6 +154,8 @@ for cmd in shipwright sw cct
|
|
|
46
154
|
complete -c $cmd -n "__fish_seen_subcommand_from quality" -a "security-audit" -d "Comprehensive security auditing"
|
|
47
155
|
complete -c $cmd -n "__fish_seen_subcommand_from quality" -a "testgen" -d "Autonomous test generation"
|
|
48
156
|
complete -c $cmd -n "__fish_seen_subcommand_from quality" -a "hygiene" -d "Repository organization & cleanup"
|
|
157
|
+
complete -c $cmd -n "__fish_seen_subcommand_from quality" -a "validate" -d "Intelligent completion audits"
|
|
158
|
+
complete -c $cmd -n "__fish_seen_subcommand_from quality" -a "gate" -d "Quality gate enforcement"
|
|
49
159
|
|
|
50
160
|
# observe subcommands
|
|
51
161
|
complete -c $cmd -n "__fish_seen_subcommand_from observe" -a "vitals" -d "Pipeline vitals — real-time scoring"
|
|
@@ -61,6 +171,7 @@ for cmd in shipwright sw cct
|
|
|
61
171
|
complete -c $cmd -n "__fish_seen_subcommand_from release" -a "release-manager" -d "Autonomous release pipeline"
|
|
62
172
|
complete -c $cmd -n "__fish_seen_subcommand_from release" -a "changelog" -d "Automated release notes"
|
|
63
173
|
complete -c $cmd -n "__fish_seen_subcommand_from release" -a "deploy" -d "Deployments — deployment history"
|
|
174
|
+
complete -c $cmd -n "__fish_seen_subcommand_from release" -a "build" -d "Build release tarballs"
|
|
64
175
|
|
|
65
176
|
# intel subcommands
|
|
66
177
|
complete -c $cmd -n "__fish_seen_subcommand_from intel" -a "predict" -d "Predictive risk assessment"
|
|
@@ -88,6 +199,14 @@ for cmd in shipwright sw cct
|
|
|
88
199
|
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -a "logs" -d "View daemon logs"
|
|
89
200
|
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -a "init" -d "Initialize daemon config"
|
|
90
201
|
|
|
202
|
+
# fleet subcommands
|
|
203
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "start" -d "Start daemons for all repos"
|
|
204
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "stop" -d "Stop all daemons"
|
|
205
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "status" -d "Show fleet-wide status"
|
|
206
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "metrics" -d "Cross-repo DORA metrics"
|
|
207
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "discover" -d "Auto-discover repos"
|
|
208
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -a "test" -d "Run fleet test suite"
|
|
209
|
+
|
|
91
210
|
# memory subcommands
|
|
92
211
|
complete -c $cmd -n "__fish_seen_subcommand_from memory" -a "show" -d "Show learned patterns"
|
|
93
212
|
complete -c $cmd -n "__fish_seen_subcommand_from memory" -a "search" -d "Search across memories"
|
|
@@ -103,21 +222,145 @@ for cmd in shipwright sw cct
|
|
|
103
222
|
complete -c $cmd -n "__fish_seen_subcommand_from cost" -a "record" -d "Record token usage"
|
|
104
223
|
complete -c $cmd -n "__fish_seen_subcommand_from cost" -a "calculate" -d "Calculate cost estimate"
|
|
105
224
|
complete -c $cmd -n "__fish_seen_subcommand_from cost" -a "check-budget" -d "Check budget before starting"
|
|
106
|
-
|
|
107
|
-
# cost show flags
|
|
108
|
-
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l period -d "Number of days to report" -r
|
|
109
|
-
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l json -d "JSON output"
|
|
110
|
-
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l by-stage -d "Breakdown by pipeline stage"
|
|
111
|
-
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l by-issue -d "Breakdown by issue"
|
|
225
|
+
complete -c $cmd -n "__fish_seen_subcommand_from cost" -a "remaining-budget" -d "Check remaining daily budget"
|
|
112
226
|
|
|
113
227
|
# templates subcommands
|
|
114
228
|
complete -c $cmd -n "__fish_seen_subcommand_from templates" -a "list" -d "Browse team templates"
|
|
115
229
|
complete -c $cmd -n "__fish_seen_subcommand_from templates" -a "show" -d "Show template details"
|
|
116
230
|
|
|
117
|
-
#
|
|
118
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
119
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
120
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
231
|
+
# worktree subcommands
|
|
232
|
+
complete -c $cmd -n "__fish_seen_subcommand_from worktree" -a "create" -d "Create git worktree"
|
|
233
|
+
complete -c $cmd -n "__fish_seen_subcommand_from worktree" -a "list" -d "List active worktrees"
|
|
234
|
+
complete -c $cmd -n "__fish_seen_subcommand_from worktree" -a "remove" -d "Remove worktree"
|
|
235
|
+
|
|
236
|
+
# tracker subcommands
|
|
237
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tracker" -a "init" -d "Initialize tracker"
|
|
238
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tracker" -a "status" -d "Show tracker status"
|
|
239
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tracker" -a "sync" -d "Sync issues"
|
|
240
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tracker" -a "test" -d "Run tracker test suite"
|
|
241
|
+
|
|
242
|
+
# heartbeat subcommands
|
|
243
|
+
complete -c $cmd -n "__fish_seen_subcommand_from heartbeat" -a "write" -d "Write heartbeat"
|
|
244
|
+
complete -c $cmd -n "__fish_seen_subcommand_from heartbeat" -a "check" -d "Check heartbeat"
|
|
245
|
+
complete -c $cmd -n "__fish_seen_subcommand_from heartbeat" -a "list" -d "List heartbeats"
|
|
246
|
+
complete -c $cmd -n "__fish_seen_subcommand_from heartbeat" -a "clear" -d "Clear heartbeats"
|
|
247
|
+
|
|
248
|
+
# checkpoint subcommands
|
|
249
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checkpoint" -a "save" -d "Save agent state"
|
|
250
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checkpoint" -a "restore" -d "Restore agent state"
|
|
251
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checkpoint" -a "list" -d "List checkpoints"
|
|
252
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checkpoint" -a "delete" -d "Delete checkpoint"
|
|
253
|
+
|
|
254
|
+
# connect subcommands
|
|
255
|
+
complete -c $cmd -n "__fish_seen_subcommand_from connect" -a "start" -d "Sync to dashboard"
|
|
256
|
+
complete -c $cmd -n "__fish_seen_subcommand_from connect" -a "stop" -d "Stop connection"
|
|
257
|
+
complete -c $cmd -n "__fish_seen_subcommand_from connect" -a "join" -d "Join a team"
|
|
258
|
+
complete -c $cmd -n "__fish_seen_subcommand_from connect" -a "status" -d "Show connection status"
|
|
259
|
+
|
|
260
|
+
# remote subcommands
|
|
261
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -a "list" -d "Show remote machines"
|
|
262
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -a "add" -d "Register a remote"
|
|
263
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -a "remove" -d "Remove a remote"
|
|
264
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -a "status" -d "Health check remotes"
|
|
265
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -a "test" -d "Run remote test suite"
|
|
266
|
+
|
|
267
|
+
# launchd subcommands
|
|
268
|
+
complete -c $cmd -n "__fish_seen_subcommand_from launchd" -a "install" -d "Auto-start on boot"
|
|
269
|
+
complete -c $cmd -n "__fish_seen_subcommand_from launchd" -a "uninstall" -d "Remove services"
|
|
270
|
+
complete -c $cmd -n "__fish_seen_subcommand_from launchd" -a "status" -d "Show service status"
|
|
271
|
+
complete -c $cmd -n "__fish_seen_subcommand_from launchd" -a "test" -d "Run launchd test suite"
|
|
272
|
+
|
|
273
|
+
# dashboard subcommands
|
|
274
|
+
complete -c $cmd -n "__fish_seen_subcommand_from dashboard" -a "start" -d "Start dashboard"
|
|
275
|
+
complete -c $cmd -n "__fish_seen_subcommand_from dashboard" -a "stop" -d "Stop dashboard"
|
|
276
|
+
complete -c $cmd -n "__fish_seen_subcommand_from dashboard" -a "status" -d "Show dashboard status"
|
|
277
|
+
|
|
278
|
+
# github subcommands
|
|
279
|
+
complete -c $cmd -n "__fish_seen_subcommand_from github" -a "context" -d "Show GitHub context"
|
|
280
|
+
complete -c $cmd -n "__fish_seen_subcommand_from github" -a "security" -d "Show security alerts"
|
|
281
|
+
complete -c $cmd -n "__fish_seen_subcommand_from github" -a "blame" -d "Show file ownership"
|
|
282
|
+
|
|
283
|
+
# checks subcommands
|
|
284
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checks" -a "list" -d "Show check runs"
|
|
285
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checks" -a "status" -d "Show check status"
|
|
286
|
+
complete -c $cmd -n "__fish_seen_subcommand_from checks" -a "test" -d "Run checks test suite"
|
|
287
|
+
|
|
288
|
+
# deploys subcommands
|
|
289
|
+
complete -c $cmd -n "__fish_seen_subcommand_from deploys" -a "list" -d "Show deployment history"
|
|
290
|
+
complete -c $cmd -n "__fish_seen_subcommand_from deploys" -a "status" -d "Show deployment status"
|
|
291
|
+
complete -c $cmd -n "__fish_seen_subcommand_from deploys" -a "test" -d "Run deploys test suite"
|
|
292
|
+
|
|
293
|
+
# docs subcommands
|
|
294
|
+
complete -c $cmd -n "__fish_seen_subcommand_from docs" -a "check" -d "Report stale sections"
|
|
295
|
+
complete -c $cmd -n "__fish_seen_subcommand_from docs" -a "sync" -d "Regenerate stale sections"
|
|
296
|
+
complete -c $cmd -n "__fish_seen_subcommand_from docs" -a "wiki" -d "Generate wiki pages"
|
|
297
|
+
complete -c $cmd -n "__fish_seen_subcommand_from docs" -a "report" -d "Show freshness report"
|
|
298
|
+
complete -c $cmd -n "__fish_seen_subcommand_from docs" -a "test" -d "Run docs test suite"
|
|
299
|
+
|
|
300
|
+
# tmux subcommands
|
|
301
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tmux" -a "doctor" -d "Check Claude compat"
|
|
302
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tmux" -a "install" -d "Install TPM"
|
|
303
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tmux" -a "fix" -d "Auto-fix issues"
|
|
304
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tmux" -a "reload" -d "Reload config"
|
|
305
|
+
complete -c $cmd -n "__fish_seen_subcommand_from tmux" -a "test" -d "Run tmux test suite"
|
|
306
|
+
|
|
307
|
+
# decompose subcommands
|
|
308
|
+
complete -c $cmd -n "__fish_seen_subcommand_from decompose" -a "analyze" -d "Analyze complexity"
|
|
309
|
+
complete -c $cmd -n "__fish_seen_subcommand_from decompose" -a "create-subtasks" -d "Create subtasks"
|
|
310
|
+
|
|
311
|
+
# pr subcommands
|
|
312
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pr" -a "review" -d "Auto-review PR"
|
|
313
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pr" -a "merge" -d "Auto-merge PR"
|
|
314
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pr" -a "cleanup" -d "Cleanup merged branches"
|
|
315
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pr" -a "feedback" -d "Get PR feedback"
|
|
316
|
+
|
|
317
|
+
# db subcommands
|
|
318
|
+
complete -c $cmd -n "__fish_seen_subcommand_from db" -a "init" -d "Initialize database"
|
|
319
|
+
complete -c $cmd -n "__fish_seen_subcommand_from db" -a "health" -d "Check database health"
|
|
320
|
+
complete -c $cmd -n "__fish_seen_subcommand_from db" -a "migrate" -d "Run migrations"
|
|
321
|
+
complete -c $cmd -n "__fish_seen_subcommand_from db" -a "stats" -d "Show statistics"
|
|
322
|
+
complete -c $cmd -n "__fish_seen_subcommand_from db" -a "export" -d "Export data"
|
|
323
|
+
|
|
324
|
+
# version subcommands
|
|
325
|
+
complete -c $cmd -n "__fish_seen_subcommand_from version" -a "show" -d "Show current version"
|
|
326
|
+
complete -c $cmd -n "__fish_seen_subcommand_from version" -a "bump" -d "Bump version everywhere"
|
|
327
|
+
complete -c $cmd -n "__fish_seen_subcommand_from version" -a "check" -d "Verify version consistency"
|
|
328
|
+
|
|
329
|
+
# evidence subcommands
|
|
330
|
+
complete -c $cmd -n "__fish_seen_subcommand_from evidence" -a "capture" -d "Capture evidence artifacts"
|
|
331
|
+
complete -c $cmd -n "__fish_seen_subcommand_from evidence" -a "verify" -d "Verify evidence freshness"
|
|
332
|
+
complete -c $cmd -n "__fish_seen_subcommand_from evidence" -a "pre-pr" -d "Run pre-PR evidence checks"
|
|
333
|
+
|
|
334
|
+
# ═══════════════════════════════════════════════════════════════════════
|
|
335
|
+
# FLAGS
|
|
336
|
+
# ═══════════════════════════════════════════════════════════════════════
|
|
337
|
+
|
|
338
|
+
# pipeline flags
|
|
339
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l issue -d "GitHub issue number" -r
|
|
340
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l goal -d "Goal description" -r
|
|
341
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l repo -d "Change to directory before running" -r
|
|
342
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l local -d "Local-only mode (no GitHub)"
|
|
343
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l pipeline -d "Pipeline template" -r
|
|
344
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l template -d "Pipeline template" -ra "fast standard full hotfix autonomous enterprise cost-aware deployed"
|
|
345
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l test-cmd -d "Test command to run" -r
|
|
346
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l model -d "AI model to use" -ra "opus sonnet haiku"
|
|
347
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l agents -d "Number of agents" -r
|
|
348
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l skip-gates -d "Auto-approve all gates"
|
|
349
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l base -d "Base branch for PR" -r
|
|
350
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l reviewers -d "PR reviewers" -r
|
|
351
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l labels -d "PR labels" -r
|
|
352
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l no-github -d "Disable GitHub integration"
|
|
353
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l no-github-label -d "Don't modify issue labels"
|
|
354
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l ci -d "CI mode (non-interactive)"
|
|
355
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l ignore-budget -d "Skip budget enforcement"
|
|
356
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l worktree -d "Run in isolated worktree"
|
|
357
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l dry-run -d "Show what would happen"
|
|
358
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l slack-webhook -d "Slack webhook URL" -r
|
|
359
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l self-heal -d "Build retry cycles" -r
|
|
360
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l max-iterations -d "Max build loop iterations" -r
|
|
361
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l max-restarts -d "Max session restarts" -r
|
|
362
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l fast-test-cmd -d "Fast/subset test command" -r
|
|
363
|
+
complete -c $cmd -n "__fish_seen_subcommand_from pipeline" -l completed-stages -d "Skip these stages" -r
|
|
121
364
|
|
|
122
365
|
# loop flags
|
|
123
366
|
complete -c $cmd -n "__fish_seen_subcommand_from loop" -l repo -d "Change to directory before running" -r
|
|
@@ -143,6 +386,22 @@ for cmd in shipwright sw cct
|
|
|
143
386
|
complete -c $cmd -n "__fish_seen_subcommand_from loop" -l skip-permissions -d "Skip permission prompts"
|
|
144
387
|
complete -c $cmd -n "__fish_seen_subcommand_from loop" -l verbose -d "Show full Claude output"
|
|
145
388
|
|
|
389
|
+
# cost flags
|
|
390
|
+
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l period -d "Number of days to report" -r
|
|
391
|
+
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l json -d "JSON output"
|
|
392
|
+
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l by-stage -d "Breakdown by pipeline stage"
|
|
393
|
+
complete -c $cmd -n "__fish_seen_subcommand_from cost" -l by-issue -d "Breakdown by issue"
|
|
394
|
+
|
|
395
|
+
# prep flags
|
|
396
|
+
complete -c $cmd -n "__fish_seen_subcommand_from prep" -l check -d "Audit existing prep quality"
|
|
397
|
+
complete -c $cmd -n "__fish_seen_subcommand_from prep" -l with-claude -d "Deep analysis using Claude Code"
|
|
398
|
+
complete -c $cmd -n "__fish_seen_subcommand_from prep" -l verbose -d "Verbose output"
|
|
399
|
+
|
|
400
|
+
# fix flags
|
|
401
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fix" -l repos -d "Repository paths" -r
|
|
402
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fix" -l worktree -d "Use git worktrees"
|
|
403
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fix" -l test-cmd -d "Test command" -r
|
|
404
|
+
|
|
146
405
|
# logs flags
|
|
147
406
|
complete -c $cmd -n "__fish_seen_subcommand_from logs" -l follow -d "Tail logs in real time"
|
|
148
407
|
complete -c $cmd -n "__fish_seen_subcommand_from logs" -l lines -d "Number of lines to show" -r
|
|
@@ -156,30 +415,39 @@ for cmd in shipwright sw cct
|
|
|
156
415
|
# reaper flags
|
|
157
416
|
complete -c $cmd -n "__fish_seen_subcommand_from reaper" -l watch -d "Continuous watch mode"
|
|
158
417
|
|
|
159
|
-
#
|
|
160
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
167
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
168
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
169
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
173
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
174
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
175
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
179
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
180
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
181
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
complete -c $cmd -n "__fish_seen_subcommand_from
|
|
418
|
+
# status flags
|
|
419
|
+
complete -c $cmd -n "__fish_seen_subcommand_from status" -l json -d "JSON output"
|
|
420
|
+
|
|
421
|
+
# doctor flags
|
|
422
|
+
complete -c $cmd -n "__fish_seen_subcommand_from doctor" -l json -d "JSON output"
|
|
423
|
+
|
|
424
|
+
# daemon flags
|
|
425
|
+
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -l detach -d "Run in background tmux session"
|
|
426
|
+
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -l no-github -d "Local mode"
|
|
427
|
+
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -l max-parallel -d "Max parallel workers" -r
|
|
428
|
+
complete -c $cmd -n "__fish_seen_subcommand_from daemon" -l auto-scale -d "Enable auto-scaling"
|
|
429
|
+
|
|
430
|
+
# session flags
|
|
431
|
+
complete -c $cmd -n "__fish_seen_subcommand_from session" -l template -d "Team template" -r
|
|
432
|
+
complete -c $cmd -n "__fish_seen_subcommand_from session" -s t -d "Team template" -r
|
|
433
|
+
complete -c $cmd -n "__fish_seen_subcommand_from session" -l agents -d "Number of agents" -r
|
|
434
|
+
complete -c $cmd -n "__fish_seen_subcommand_from session" -l roles -d "Agent roles" -r
|
|
435
|
+
|
|
436
|
+
# remote flags
|
|
437
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -l host -d "Hostname" -r
|
|
438
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -l port -d "SSH port" -r
|
|
439
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -l key -d "SSH key" -rF
|
|
440
|
+
complete -c $cmd -n "__fish_seen_subcommand_from remote" -l user -d "SSH user" -r
|
|
441
|
+
|
|
442
|
+
# connect flags
|
|
443
|
+
complete -c $cmd -n "__fish_seen_subcommand_from connect" -l token -d "Invite token" -r
|
|
444
|
+
|
|
445
|
+
# fleet flags
|
|
446
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -l org -d "GitHub organization" -r
|
|
447
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -l language -d "Filter by language" -r
|
|
448
|
+
complete -c $cmd -n "__fish_seen_subcommand_from fleet" -l config -d "Fleet config file" -rF
|
|
449
|
+
|
|
450
|
+
# help flags
|
|
451
|
+
complete -c $cmd -n "__fish_seen_subcommand_from help" -l all -d "Show all commands"
|
|
452
|
+
complete -c $cmd -n "__fish_seen_subcommand_from help" -s a -d "Show all commands"
|
|
185
453
|
end
|