rollout-cli 0.2.1__tar.gz → 0.3.0__tar.gz
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.
- rollout_cli-0.3.0/.devague/frames/rollout-cli-ships-rollout-define-an-org-wide-chang.json +302 -0
- rollout_cli-0.3.0/.devague/plans/rollout-cli-ships-rollout-define-an-org-wide-chang.json +390 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.gitignore +9 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.markdownlint-cli2.yaml +6 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/CHANGELOG.md +32 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/PKG-INFO +44 -1
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/README.md +43 -0
- rollout_cli-0.3.0/docs/plans/2026-06-06-rollout-cli-ships-rollout-define-an-org-wide-chang.md +109 -0
- rollout_cli-0.3.0/docs/specs/2026-06-06-rollout-cli-ships-rollout-define-an-org-wide-chang.md +63 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/pyproject.toml +2 -2
- rollout_cli-0.3.0/recipes/apache-relicense/apply.sh +25 -0
- rollout_cli-0.3.0/recipes/apache-relicense/check.sh +32 -0
- rollout_cli-0.3.0/recipes/apache-relicense/files/LICENSE +201 -0
- rollout_cli-0.3.0/recipes/apache-relicense/manifest.toml +11 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/__init__.py +4 -0
- rollout_cli-0.3.0/rollout/cli/_commands/apply.py +88 -0
- rollout_cli-0.3.0/rollout/cli/_commands/plan.py +70 -0
- rollout_cli-0.3.0/rollout/core/__init__.py +1 -0
- rollout_cli-0.3.0/rollout/core/bump.py +118 -0
- rollout_cli-0.3.0/rollout/core/devex_pr.py +133 -0
- rollout_cli-0.3.0/rollout/core/gitops.py +93 -0
- rollout_cli-0.3.0/rollout/core/orchestrate.py +114 -0
- rollout_cli-0.3.0/rollout/core/preflight.py +65 -0
- rollout_cli-0.3.0/rollout/core/recipe.py +84 -0
- rollout_cli-0.3.0/rollout/core/report.py +86 -0
- rollout_cli-0.3.0/rollout/core/targets.py +139 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/explain/catalog.py +64 -0
- rollout_cli-0.3.0/tests/test_apache_relicense.py +228 -0
- rollout_cli-0.3.0/tests/test_apply_cmd.py +260 -0
- rollout_cli-0.3.0/tests/test_bump.py +209 -0
- rollout_cli-0.3.0/tests/test_cli_wiring.py +49 -0
- rollout_cli-0.3.0/tests/test_devex_pr.py +242 -0
- rollout_cli-0.3.0/tests/test_e2e_apache_relicense.py +278 -0
- rollout_cli-0.3.0/tests/test_explain_catalog.py +20 -0
- rollout_cli-0.3.0/tests/test_gitops.py +186 -0
- rollout_cli-0.3.0/tests/test_orchestrate.py +363 -0
- rollout_cli-0.3.0/tests/test_plan_cmd.py +233 -0
- rollout_cli-0.3.0/tests/test_preflight.py +165 -0
- rollout_cli-0.3.0/tests/test_recipe.py +140 -0
- rollout_cli-0.3.0/tests/test_report.py +182 -0
- rollout_cli-0.3.0/tests/test_targets.py +114 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/uv.lock +1 -1
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/agent-config/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/agent-config/data/backend-fingerprints.yaml +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/agent-config/scripts/show.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/ask-colleague/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/ask-colleague/prompts/explore.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/ask-colleague/prompts/review.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/ask-colleague/prompts/write.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/ask-colleague/scripts/ask-colleague.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/assign-to-workforce/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/assign-to-workforce/scripts/assign-to-workforce.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/scripts/_resolve-nick.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/scripts/portability-lint.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/scripts/pr-reply.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/scripts/pr-status.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/cicd/scripts/workflow.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/fetch-issues.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/mesh-message.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/post-comment.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/post-issue.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/templates/skill-new-brief.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/communicate/scripts/templates/skill-update-brief.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/doc-test-alignment/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/doc-test-alignment/scripts/check.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/pypi-maintainer/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/pypi-maintainer/scripts/switch-source.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/run-tests/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/run-tests/scripts/test.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/sonarclaude/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/sonarclaude/scripts/sonar.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/spec-to-plan/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/spec-to-plan/scripts/spec-to-plan.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/think/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/think/scripts/think.sh +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/version-bump/SKILL.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills/version-bump/scripts/bump.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.claude/skills.local.yaml.example +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.flake8 +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.github/workflows/publish.yml +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/.github/workflows/tests.yml +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/CLAUDE.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/LICENSE +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/culture.yaml +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/docs/skill-sources.md +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/__init__.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/__main__.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/__init__.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/cli.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/doctor.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/explain.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/learn.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/overview.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_commands/whoami.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_errors.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/cli/_output.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/rollout/explain/__init__.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/sonar-project.properties +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/tests/__init__.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/tests/test_cli.py +0 -0
- {rollout_cli-0.2.1 → rollout_cli-0.3.0}/tests/test_cli_introspection.py +0 -0
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "rollout-cli-ships-rollout-define-an-org-wide-chang",
|
|
3
|
+
"title": "rollout-cli ships 'rollout': define an org-wide change once as a deterministic recipe, and it propagates across every target agent repo \u2014 branch, apply via scripts (not an agent hand-editing files), bump version, commit, push, and open one PR per repo with CI running, ready for a human squash-merge. The first recipe, apache-relicense, carries the exact MIT->Apache-2.0 change shape from rollout-cli's own #1 across the mesh.",
|
|
4
|
+
"schema_version": 1,
|
|
5
|
+
"status": "exported",
|
|
6
|
+
"created": "2026-06-06T14:17:27Z",
|
|
7
|
+
"updated": "2026-06-06T14:30:37Z",
|
|
8
|
+
"claims": [
|
|
9
|
+
{
|
|
10
|
+
"id": "c1",
|
|
11
|
+
"kind": "announcement",
|
|
12
|
+
"text": "rollout-cli ships 'rollout': define an org-wide change once as a deterministic recipe, and it propagates across every target agent repo \u2014 branch, apply via scripts (not an agent hand-editing files), bump version, commit, push, and open one PR per repo with CI running, ready for a human squash-merge. The first recipe, apache-relicense, carries the exact MIT->Apache-2.0 change shape from rollout-cli's own #1 across the mesh.",
|
|
13
|
+
"origin": "user",
|
|
14
|
+
"status": "confirmed",
|
|
15
|
+
"honesty_conditions": [
|
|
16
|
+
{
|
|
17
|
+
"id": "h7",
|
|
18
|
+
"text": "The first recipe, apache-relicense, run across the confirmed target set, produces one PR per repo whose diff matches d27519f's shape, with CI running and no repo merged automatically.",
|
|
19
|
+
"status": "confirmed"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"hard_questions": [],
|
|
23
|
+
"links": []
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "c2",
|
|
27
|
+
"kind": "audience",
|
|
28
|
+
"text": "The org maintainer (Ori) who decides what change to roll out and does the squash-merges, plus the rollout-cli agent that authors/validates the recipe once and drives the per-repo loop.",
|
|
29
|
+
"origin": "llm",
|
|
30
|
+
"status": "confirmed",
|
|
31
|
+
"honesty_conditions": [
|
|
32
|
+
{
|
|
33
|
+
"id": "h9",
|
|
34
|
+
"text": "The two roles are real and distinct: the maintainer makes the go/no-go and does the squash-merges; the agent authors the recipe once and runs the deterministic loop \u2014 neither hand-edits files per repo.",
|
|
35
|
+
"status": "confirmed"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"hard_questions": [],
|
|
39
|
+
"links": []
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "c3",
|
|
43
|
+
"kind": "after_state",
|
|
44
|
+
"text": "One declarative recipe is applied across an explicit set of target repos, producing one branch + one PR per repo, each with the same reviewable diff shape, CI running, awaiting human squash-merge. Deterministic scripts make the edits; the agent never hand-edits files across repos.",
|
|
45
|
+
"origin": "llm",
|
|
46
|
+
"status": "confirmed",
|
|
47
|
+
"honesty_conditions": [
|
|
48
|
+
{
|
|
49
|
+
"id": "h10",
|
|
50
|
+
"text": "After a run, each clean target has exactly one new branch and one open PR with the same diff shape, and no target's working files were edited by an agent.",
|
|
51
|
+
"status": "confirmed"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"hard_questions": [],
|
|
55
|
+
"links": []
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "c4",
|
|
59
|
+
"kind": "before_state",
|
|
60
|
+
"text": "An org-wide change (e.g. relicensing) means either manually editing each of ~40 repos or having an agent open each repo and hand-edit files \u2014 slow, inconsistent, unreviewable, and error-prone.",
|
|
61
|
+
"origin": "llm",
|
|
62
|
+
"status": "confirmed",
|
|
63
|
+
"honesty_conditions": [
|
|
64
|
+
{
|
|
65
|
+
"id": "h11",
|
|
66
|
+
"text": "Today there is no single command that applies one change across the org; doing it means N manual or agent-driven edits.",
|
|
67
|
+
"status": "confirmed"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"hard_questions": [],
|
|
71
|
+
"links": []
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "c5",
|
|
75
|
+
"kind": "why_it_matters",
|
|
76
|
+
"text": "A deterministic recipe is reviewable once, repeatable, idempotent, and auditable; the agent orchestrates rather than touching every file, so a 40-repo change is as trustworthy as a 1-repo change.",
|
|
77
|
+
"origin": "llm",
|
|
78
|
+
"status": "confirmed",
|
|
79
|
+
"honesty_conditions": [
|
|
80
|
+
{
|
|
81
|
+
"id": "h12",
|
|
82
|
+
"text": "Because the change is a reviewed-once deterministic recipe, a 40-repo run produces diffs a human can audit identically to a 1-repo run.",
|
|
83
|
+
"status": "confirmed"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"hard_questions": [],
|
|
87
|
+
"links": []
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "c6",
|
|
91
|
+
"kind": "boundary",
|
|
92
|
+
"text": "rollout-cli does NOT merge (human squash-merges), does not invent semantic refactors (deterministic recipes/refactor-cli actions only), is not a CI system (it relies on each repo's existing CI), and does not own the target repos' release policy beyond what the recipe declares.",
|
|
93
|
+
"origin": "llm",
|
|
94
|
+
"status": "confirmed",
|
|
95
|
+
"honesty_conditions": [
|
|
96
|
+
{
|
|
97
|
+
"id": "h13",
|
|
98
|
+
"text": "rollout never merges a PR and never performs an edit not declared by a recipe; CI is each target repo's own.",
|
|
99
|
+
"status": "confirmed"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"hard_questions": [],
|
|
103
|
+
"links": []
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "c7",
|
|
107
|
+
"kind": "success_signal",
|
|
108
|
+
"text": "Running 'rollout apply apache-relicense --targets <set>' yields one branch+PR per target whose diff matches d27519f's shape (LICENSE, pyproject license+classifier, README license line, CHANGELOG entry, version bump), with CI triggered, and a single summary table of PR URLs + statuses.",
|
|
109
|
+
"origin": "llm",
|
|
110
|
+
"status": "confirmed",
|
|
111
|
+
"honesty_conditions": [
|
|
112
|
+
{
|
|
113
|
+
"id": "h14",
|
|
114
|
+
"text": "The apache-relicense run emits a summary table of one PR URL per target, and each PR's diff equals d27519f's shape.",
|
|
115
|
+
"status": "confirmed"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"hard_questions": [],
|
|
119
|
+
"links": []
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "c8",
|
|
123
|
+
"kind": "requirement",
|
|
124
|
+
"text": "A 'recipe' is the unit of change: a self-contained, version-controlled directory (deterministic apply script + manifest declaring touched files, version-bump level, and CHANGELOG text). Authored/reviewed ONCE; the same recipe runs unchanged against every target.",
|
|
125
|
+
"origin": "llm",
|
|
126
|
+
"status": "confirmed",
|
|
127
|
+
"honesty_conditions": [
|
|
128
|
+
{
|
|
129
|
+
"id": "h1",
|
|
130
|
+
"text": "A recipe applies with zero recipe-specific args beyond the target path; the apache-relicense recipe reproduces d27519f's diff shape exactly on a clean MIT repo.",
|
|
131
|
+
"status": "confirmed"
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"hard_questions": [],
|
|
135
|
+
"links": []
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "c9",
|
|
139
|
+
"kind": "requirement",
|
|
140
|
+
"text": "The per-repo loop is pure orchestration: locate/refresh repo -> create branch -> run recipe's apply script -> bump version + prepend CHANGELOG -> commit -> push -> open PR via devex. No LLM file edits in the loop.",
|
|
141
|
+
"origin": "llm",
|
|
142
|
+
"status": "confirmed",
|
|
143
|
+
"honesty_conditions": [
|
|
144
|
+
{
|
|
145
|
+
"id": "h2",
|
|
146
|
+
"text": "The apply loop contains no agent/LLM file-editing step \u2014 every file mutation originates in the recipe script or the deterministic version/CHANGELOG bumper.",
|
|
147
|
+
"status": "confirmed"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"hard_questions": [],
|
|
151
|
+
"links": []
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "c10",
|
|
155
|
+
"kind": "requirement",
|
|
156
|
+
"text": "Targets are explicit and declared (a repo-list / filter over the org), never implicit. The set is shown and confirmed before any push.",
|
|
157
|
+
"origin": "llm",
|
|
158
|
+
"status": "confirmed",
|
|
159
|
+
"honesty_conditions": [
|
|
160
|
+
{
|
|
161
|
+
"id": "h3",
|
|
162
|
+
"text": "No branch/push/PR happens until the resolved target list has been printed and confirmed by the maintainer.",
|
|
163
|
+
"status": "confirmed"
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"hard_questions": [],
|
|
167
|
+
"links": []
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"id": "c11",
|
|
171
|
+
"kind": "requirement",
|
|
172
|
+
"text": "Two-phase execution: 'rollout plan' is a dry-run that produces per-repo diffs locally and a preflight report (applies cleanly? already done? conflicts?) with zero side effects; 'rollout apply' performs branch/commit/push/PR only on repos the plan marked clean.",
|
|
173
|
+
"origin": "llm",
|
|
174
|
+
"status": "confirmed",
|
|
175
|
+
"honesty_conditions": [
|
|
176
|
+
{
|
|
177
|
+
"id": "h4",
|
|
178
|
+
"text": "'rollout plan' creates no branches and writes to no remote; 'rollout apply' only acts on repos the plan marked clean.",
|
|
179
|
+
"status": "confirmed"
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"hard_questions": [],
|
|
183
|
+
"links": []
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "c12",
|
|
187
|
+
"kind": "requirement",
|
|
188
|
+
"text": "Idempotent + resumable: a recipe re-run on an already-changed repo is a no-op (detects done-state, skips); a partial run can be resumed; each repo's outcome is independent (one failure does not abort the batch).",
|
|
189
|
+
"origin": "llm",
|
|
190
|
+
"status": "confirmed",
|
|
191
|
+
"honesty_conditions": [
|
|
192
|
+
{
|
|
193
|
+
"id": "h5",
|
|
194
|
+
"text": "Re-running apply on a repo whose change already landed makes no new commit and opens no duplicate PR (done-state detected).",
|
|
195
|
+
"status": "confirmed"
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"hard_questions": [],
|
|
199
|
+
"links": []
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"id": "c13",
|
|
203
|
+
"kind": "requirement",
|
|
204
|
+
"text": "Recipes that don't apply cleanly to a repo are surfaced as a per-repo 'needs attention' item (skipped, reported), NOT silently force-edited \u2014 that is the one place a human/agent steps in.",
|
|
205
|
+
"origin": "llm",
|
|
206
|
+
"status": "confirmed",
|
|
207
|
+
"honesty_conditions": [
|
|
208
|
+
{
|
|
209
|
+
"id": "h6",
|
|
210
|
+
"text": "A repo whose recipe preconditions fail is reported as needs-attention and skipped, never force-applied.",
|
|
211
|
+
"status": "confirmed"
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"hard_questions": [],
|
|
215
|
+
"links": []
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "c14",
|
|
219
|
+
"kind": "decision",
|
|
220
|
+
"text": "Layering: refactor-cli owns the in-repo deterministic edit primitives (the apply script calls them); rollout-cli owns cross-repo orchestration (targets, branch, PR via devex, reporting). devex provides the PR lane; agtag/communicate the issue I/O.",
|
|
221
|
+
"origin": "llm",
|
|
222
|
+
"status": "confirmed",
|
|
223
|
+
"honesty_conditions": [],
|
|
224
|
+
"hard_questions": [],
|
|
225
|
+
"links": []
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "c15",
|
|
229
|
+
"kind": "decision",
|
|
230
|
+
"text": "Local-checkout model: each target repo lives as a sibling checkout under /home/spark/git; rollout operates on these working copies and leaves each on its new branch (matching the user's 'each local repo will be on that new branch').",
|
|
231
|
+
"origin": "llm",
|
|
232
|
+
"status": "confirmed",
|
|
233
|
+
"honesty_conditions": [],
|
|
234
|
+
"hard_questions": [],
|
|
235
|
+
"links": []
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"id": "c16",
|
|
239
|
+
"kind": "assumption",
|
|
240
|
+
"text": "Every target repo follows the shared agent baseline (pyproject + CHANGELOG + version-check CI + devex PR lane), so one recipe's file-shape assumptions hold across the set.",
|
|
241
|
+
"origin": "llm",
|
|
242
|
+
"status": "confirmed",
|
|
243
|
+
"honesty_conditions": [],
|
|
244
|
+
"hard_questions": [],
|
|
245
|
+
"links": []
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "c17",
|
|
249
|
+
"kind": "requirement",
|
|
250
|
+
"text": "Branching is always cut from a freshly-fetched default branch (origin/main); a repo with a dirty working tree or unpushed local commits on the wrong branch is aborted and reported, never branched over or clobbered.",
|
|
251
|
+
"origin": "llm",
|
|
252
|
+
"status": "confirmed",
|
|
253
|
+
"honesty_conditions": [
|
|
254
|
+
{
|
|
255
|
+
"id": "h8",
|
|
256
|
+
"text": "On a repo with a dirty tree or local-only commits, 'rollout apply' aborts that one repo with a clear report and makes no branch/commit/push; clean repos in the same batch still proceed.",
|
|
257
|
+
"status": "confirmed"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"hard_questions": [],
|
|
261
|
+
"links": []
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"id": "c18",
|
|
265
|
+
"kind": "decision",
|
|
266
|
+
"text": "Target resolution is a CLI input: an org/user plus a selector (all | explicit repo list), e.g. 'rollout apply <recipe> --org agentculture --all' or '--repos a,b,c'. agentculture-owned (excluding upstream forks) is the documented default. The resolved set is always printed for confirmation before any apply.",
|
|
267
|
+
"origin": "llm",
|
|
268
|
+
"status": "confirmed",
|
|
269
|
+
"honesty_conditions": [],
|
|
270
|
+
"hard_questions": [],
|
|
271
|
+
"links": []
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "c19",
|
|
275
|
+
"kind": "decision",
|
|
276
|
+
"text": "A run stops at 'PR opened' and prints a summary table (repo, PR URL, status); the maintainer watches CI and squash-merges. A poll-CI summary mode is a deferred follow-up, not v1.",
|
|
277
|
+
"origin": "llm",
|
|
278
|
+
"status": "confirmed",
|
|
279
|
+
"honesty_conditions": [],
|
|
280
|
+
"hard_questions": [],
|
|
281
|
+
"links": []
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "c20",
|
|
285
|
+
"kind": "decision",
|
|
286
|
+
"text": "The needs-attention seam delegates genuine agent work to the ask-colleague skill (a different backend, isolated git worktree, read-only by default) \u2014 the orchestrator never hand-edits files in place, preserving 'scripts, not an agent editing files all over'.",
|
|
287
|
+
"origin": "llm",
|
|
288
|
+
"status": "confirmed",
|
|
289
|
+
"honesty_conditions": [],
|
|
290
|
+
"hard_questions": [],
|
|
291
|
+
"links": []
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
"open_vagueness": [
|
|
295
|
+
{
|
|
296
|
+
"id": "v1",
|
|
297
|
+
"text": "How a recipe's preflight detects target repos that drift from the shared baseline (missing CHANGELOG, different pyproject license-field format) and routes them to needs-attention.",
|
|
298
|
+
"kind": "unknown_nonblocking",
|
|
299
|
+
"claim_id": null
|
|
300
|
+
}
|
|
301
|
+
]
|
|
302
|
+
}
|