shipwright-cli 1.9.0 → 2.0.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/.claude/hooks/post-tool-use.sh +12 -5
- package/README.md +114 -36
- package/completions/_shipwright +212 -32
- package/completions/shipwright.bash +97 -25
- package/docs/strategy/01-market-research.md +619 -0
- package/docs/strategy/02-mission-and-brand.md +587 -0
- package/docs/strategy/03-gtm-and-roadmap.md +759 -0
- package/docs/strategy/QUICK-START.txt +289 -0
- package/docs/strategy/README.md +172 -0
- package/package.json +4 -2
- package/scripts/sw +217 -2
- package/scripts/sw-activity.sh +500 -0
- package/scripts/sw-adaptive.sh +925 -0
- package/scripts/sw-adversarial.sh +1 -1
- package/scripts/sw-architecture-enforcer.sh +1 -1
- package/scripts/sw-auth.sh +613 -0
- package/scripts/sw-autonomous.sh +664 -0
- package/scripts/sw-changelog.sh +704 -0
- package/scripts/sw-checkpoint.sh +79 -1
- package/scripts/sw-ci.sh +602 -0
- package/scripts/sw-cleanup.sh +192 -7
- package/scripts/sw-code-review.sh +637 -0
- package/scripts/sw-connect.sh +1 -1
- package/scripts/sw-context.sh +605 -0
- package/scripts/sw-cost.sh +1 -1
- package/scripts/sw-daemon.sh +812 -138
- package/scripts/sw-dashboard.sh +1 -1
- package/scripts/sw-db.sh +540 -0
- package/scripts/sw-decompose.sh +539 -0
- package/scripts/sw-deps.sh +551 -0
- package/scripts/sw-developer-simulation.sh +1 -1
- package/scripts/sw-discovery.sh +412 -0
- package/scripts/sw-docs-agent.sh +539 -0
- package/scripts/sw-docs.sh +1 -1
- package/scripts/sw-doctor.sh +59 -1
- package/scripts/sw-dora.sh +615 -0
- package/scripts/sw-durable.sh +710 -0
- package/scripts/sw-e2e-orchestrator.sh +535 -0
- package/scripts/sw-eventbus.sh +393 -0
- package/scripts/sw-feedback.sh +471 -0
- package/scripts/sw-fix.sh +1 -1
- package/scripts/sw-fleet-discover.sh +567 -0
- package/scripts/sw-fleet-viz.sh +404 -0
- package/scripts/sw-fleet.sh +8 -1
- package/scripts/sw-github-app.sh +596 -0
- package/scripts/sw-github-checks.sh +1 -1
- package/scripts/sw-github-deploy.sh +1 -1
- package/scripts/sw-github-graphql.sh +1 -1
- package/scripts/sw-guild.sh +569 -0
- package/scripts/sw-heartbeat.sh +1 -1
- package/scripts/sw-hygiene.sh +559 -0
- package/scripts/sw-incident.sh +617 -0
- package/scripts/sw-init.sh +88 -1
- package/scripts/sw-instrument.sh +699 -0
- package/scripts/sw-intelligence.sh +1 -1
- package/scripts/sw-jira.sh +1 -1
- package/scripts/sw-launchd.sh +366 -31
- package/scripts/sw-linear.sh +1 -1
- package/scripts/sw-logs.sh +1 -1
- package/scripts/sw-loop.sh +507 -51
- package/scripts/sw-memory.sh +198 -3
- package/scripts/sw-mission-control.sh +487 -0
- package/scripts/sw-model-router.sh +545 -0
- package/scripts/sw-otel.sh +596 -0
- package/scripts/sw-oversight.sh +689 -0
- package/scripts/sw-pipeline-composer.sh +8 -8
- package/scripts/sw-pipeline-vitals.sh +1096 -0
- package/scripts/sw-pipeline.sh +2451 -180
- package/scripts/sw-pm.sh +693 -0
- package/scripts/sw-pr-lifecycle.sh +522 -0
- package/scripts/sw-predictive.sh +1 -1
- package/scripts/sw-prep.sh +1 -1
- package/scripts/sw-ps.sh +4 -3
- package/scripts/sw-public-dashboard.sh +798 -0
- package/scripts/sw-quality.sh +595 -0
- package/scripts/sw-reaper.sh +5 -3
- package/scripts/sw-recruit.sh +573 -0
- package/scripts/sw-regression.sh +642 -0
- package/scripts/sw-release-manager.sh +736 -0
- package/scripts/sw-release.sh +706 -0
- package/scripts/sw-remote.sh +1 -1
- package/scripts/sw-replay.sh +520 -0
- package/scripts/sw-retro.sh +691 -0
- package/scripts/sw-scale.sh +444 -0
- package/scripts/sw-security-audit.sh +505 -0
- package/scripts/sw-self-optimize.sh +109 -8
- package/scripts/sw-session.sh +31 -9
- package/scripts/sw-setup.sh +1 -1
- package/scripts/sw-standup.sh +712 -0
- package/scripts/sw-status.sh +192 -1
- package/scripts/sw-strategic.sh +658 -0
- package/scripts/sw-stream.sh +450 -0
- package/scripts/sw-swarm.sh +583 -0
- package/scripts/sw-team-stages.sh +511 -0
- package/scripts/sw-templates.sh +1 -1
- package/scripts/sw-testgen.sh +515 -0
- package/scripts/sw-tmux-pipeline.sh +554 -0
- package/scripts/sw-tmux.sh +1 -1
- package/scripts/sw-trace.sh +485 -0
- package/scripts/sw-tracker-github.sh +188 -0
- package/scripts/sw-tracker-jira.sh +172 -0
- package/scripts/sw-tracker-linear.sh +251 -0
- package/scripts/sw-tracker.sh +117 -2
- package/scripts/sw-triage.sh +603 -0
- package/scripts/sw-upgrade.sh +1 -1
- package/scripts/sw-ux.sh +677 -0
- package/scripts/sw-webhook.sh +627 -0
- package/scripts/sw-widgets.sh +530 -0
- package/scripts/sw-worktree.sh +1 -1
- package/templates/pipelines/autonomous.json +8 -1
- package/templates/pipelines/cost-aware.json +21 -0
- package/templates/pipelines/deployed.json +40 -6
- package/templates/pipelines/enterprise.json +16 -2
- package/templates/pipelines/fast.json +19 -0
- package/templates/pipelines/full.json +16 -2
- package/templates/pipelines/hotfix.json +19 -0
- package/templates/pipelines/standard.json +19 -0
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
"model": "opus",
|
|
7
7
|
"agents": 1
|
|
8
8
|
},
|
|
9
|
+
"intelligence": {
|
|
10
|
+
"adversarial_enabled": true,
|
|
11
|
+
"architecture_enabled": true,
|
|
12
|
+
"simulation_enabled": true
|
|
13
|
+
},
|
|
9
14
|
"stages": [
|
|
10
15
|
{
|
|
11
16
|
"id": "intake",
|
|
@@ -57,7 +62,9 @@
|
|
|
57
62
|
"e2e": true,
|
|
58
63
|
"dod_audit": true,
|
|
59
64
|
"max_cycles": 5,
|
|
60
|
-
"strict_quality": true
|
|
65
|
+
"strict_quality": true,
|
|
66
|
+
"audit_intensity": "auto",
|
|
67
|
+
"compound_quality_blocking": true
|
|
61
68
|
}
|
|
62
69
|
},
|
|
63
70
|
{
|
|
@@ -83,7 +90,14 @@
|
|
|
83
90
|
"config": {
|
|
84
91
|
"staging_cmd": "",
|
|
85
92
|
"production_cmd": "",
|
|
86
|
-
"rollback_cmd": ""
|
|
93
|
+
"rollback_cmd": "",
|
|
94
|
+
"deploy_strategy": "direct",
|
|
95
|
+
"canary_cmd": "__CANARY_CMD__",
|
|
96
|
+
"promote_cmd": "__PROMOTE_CMD__",
|
|
97
|
+
"switch_cmd": "__SWITCH_CMD__",
|
|
98
|
+
"health_url": "__HEALTH_URL__",
|
|
99
|
+
"pre_deploy_ci_status": true,
|
|
100
|
+
"pre_deploy_min_coverage": 80
|
|
87
101
|
}
|
|
88
102
|
},
|
|
89
103
|
{
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
"model": "sonnet",
|
|
7
7
|
"agents": 1
|
|
8
8
|
},
|
|
9
|
+
"intelligence": {
|
|
10
|
+
"adversarial_enabled": true,
|
|
11
|
+
"architecture_enabled": true,
|
|
12
|
+
"simulation_enabled": true
|
|
13
|
+
},
|
|
9
14
|
"stages": [
|
|
10
15
|
{
|
|
11
16
|
"id": "intake",
|
|
@@ -41,6 +46,20 @@
|
|
|
41
46
|
"gate": "auto",
|
|
42
47
|
"config": {}
|
|
43
48
|
},
|
|
49
|
+
{
|
|
50
|
+
"id": "compound_quality",
|
|
51
|
+
"enabled": true,
|
|
52
|
+
"gate": "auto",
|
|
53
|
+
"config": {
|
|
54
|
+
"adversarial": true,
|
|
55
|
+
"negative": true,
|
|
56
|
+
"e2e": false,
|
|
57
|
+
"dod_audit": true,
|
|
58
|
+
"max_cycles": 1,
|
|
59
|
+
"audit_intensity": "auto",
|
|
60
|
+
"compound_quality_blocking": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
44
63
|
{
|
|
45
64
|
"id": "pr",
|
|
46
65
|
"enabled": true,
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
"model": "opus",
|
|
7
7
|
"agents": 1
|
|
8
8
|
},
|
|
9
|
+
"intelligence": {
|
|
10
|
+
"adversarial_enabled": true,
|
|
11
|
+
"architecture_enabled": true,
|
|
12
|
+
"simulation_enabled": true
|
|
13
|
+
},
|
|
9
14
|
"stages": [
|
|
10
15
|
{
|
|
11
16
|
"id": "intake",
|
|
@@ -57,7 +62,9 @@
|
|
|
57
62
|
"e2e": true,
|
|
58
63
|
"dod_audit": true,
|
|
59
64
|
"max_cycles": 3,
|
|
60
|
-
"strict_quality": true
|
|
65
|
+
"strict_quality": true,
|
|
66
|
+
"audit_intensity": "auto",
|
|
67
|
+
"compound_quality_blocking": true
|
|
61
68
|
}
|
|
62
69
|
},
|
|
63
70
|
{
|
|
@@ -85,7 +92,14 @@
|
|
|
85
92
|
"config": {
|
|
86
93
|
"staging_cmd": "",
|
|
87
94
|
"production_cmd": "",
|
|
88
|
-
"rollback_cmd": ""
|
|
95
|
+
"rollback_cmd": "",
|
|
96
|
+
"deploy_strategy": "direct",
|
|
97
|
+
"canary_cmd": "__CANARY_CMD__",
|
|
98
|
+
"promote_cmd": "__PROMOTE_CMD__",
|
|
99
|
+
"switch_cmd": "__SWITCH_CMD__",
|
|
100
|
+
"health_url": "__HEALTH_URL__",
|
|
101
|
+
"pre_deploy_ci_status": true,
|
|
102
|
+
"pre_deploy_min_coverage": 80
|
|
89
103
|
}
|
|
90
104
|
},
|
|
91
105
|
{
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
"model": "opus",
|
|
7
7
|
"agents": 1
|
|
8
8
|
},
|
|
9
|
+
"intelligence": {
|
|
10
|
+
"adversarial_enabled": true,
|
|
11
|
+
"architecture_enabled": true,
|
|
12
|
+
"simulation_enabled": true
|
|
13
|
+
},
|
|
9
14
|
"stages": [
|
|
10
15
|
{
|
|
11
16
|
"id": "intake",
|
|
@@ -41,6 +46,20 @@
|
|
|
41
46
|
"gate": "auto",
|
|
42
47
|
"config": {}
|
|
43
48
|
},
|
|
49
|
+
{
|
|
50
|
+
"id": "compound_quality",
|
|
51
|
+
"enabled": true,
|
|
52
|
+
"gate": "auto",
|
|
53
|
+
"config": {
|
|
54
|
+
"adversarial": true,
|
|
55
|
+
"negative": true,
|
|
56
|
+
"e2e": false,
|
|
57
|
+
"dod_audit": true,
|
|
58
|
+
"max_cycles": 1,
|
|
59
|
+
"audit_intensity": "auto",
|
|
60
|
+
"compound_quality_blocking": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
44
63
|
{
|
|
45
64
|
"id": "pr",
|
|
46
65
|
"enabled": true,
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
"model": "opus",
|
|
7
7
|
"agents": 1
|
|
8
8
|
},
|
|
9
|
+
"intelligence": {
|
|
10
|
+
"adversarial_enabled": true,
|
|
11
|
+
"architecture_enabled": true,
|
|
12
|
+
"simulation_enabled": true
|
|
13
|
+
},
|
|
9
14
|
"stages": [
|
|
10
15
|
{
|
|
11
16
|
"id": "intake",
|
|
@@ -47,6 +52,20 @@
|
|
|
47
52
|
"gate": "approve",
|
|
48
53
|
"config": {}
|
|
49
54
|
},
|
|
55
|
+
{
|
|
56
|
+
"id": "compound_quality",
|
|
57
|
+
"enabled": true,
|
|
58
|
+
"gate": "auto",
|
|
59
|
+
"config": {
|
|
60
|
+
"adversarial": true,
|
|
61
|
+
"negative": true,
|
|
62
|
+
"e2e": true,
|
|
63
|
+
"dod_audit": true,
|
|
64
|
+
"max_cycles": 3,
|
|
65
|
+
"audit_intensity": "auto",
|
|
66
|
+
"compound_quality_blocking": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
50
69
|
{
|
|
51
70
|
"id": "pr",
|
|
52
71
|
"enabled": true,
|