@mutmutco/kilo-plugin 3.89.0 → 3.91.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/package.json +1 -1
- package/skills/bootstrap/SKILL.md +25 -7
package/package.json
CHANGED
|
@@ -250,12 +250,20 @@ gh project list --owner "$PROJECT_OWNER" --format json # existing boards to ch
|
|
|
250
250
|
```bash
|
|
251
251
|
gh project link "$PROJECT_NUMBER" --owner "$PROJECT_OWNER" --repo "$OWNER/$REPO"
|
|
252
252
|
```
|
|
253
|
-
- **Create** the chosen board if it doesn't exist yet — clone
|
|
254
|
-
(`Todo · In Progress · In Review · Done`)
|
|
253
|
+
- **Create** the chosen board if it doesn't exist yet — clone the **named template board**, never an
|
|
254
|
+
arbitrary existing one, so the 4-lane `Status` field (`Todo · In Progress · In Review · Done`), the
|
|
255
|
+
built-in workflows, **and** the org's view/card-field shape (#4093) all carry over instead of whatever
|
|
256
|
+
the previous copy-of-a-copy happened to drift to:
|
|
255
257
|
```bash
|
|
256
|
-
gh project copy
|
|
258
|
+
gh project copy 4 --source-owner "$PROJECT_OWNER" \
|
|
257
259
|
--target-owner "$PROJECT_OWNER" --title "<Project>"
|
|
258
260
|
```
|
|
261
|
+
**Project 4 (MMI-Hub's own board) is the template** (#4093) — it already carries the org-standard view
|
|
262
|
+
triple (`List`/`Board`/`Roadmap`), Board grouping (columns=Status, swimlanes=Repository), and the
|
|
263
|
+
canonical Board card-field set (`Title, Assignees, Status, Labels, Linked pull requests, Parent issue,
|
|
264
|
+
Sub-issues progress, Priority`). `bootstrap verify` asserts all three against every board (next note); a
|
|
265
|
+
freshly copied project starts green on them instead of inheriting a stale source's drift. Copying from
|
|
266
|
+
anything else re-introduces the "5 card-field variants across 16 boards" problem #4093 was filed to end.
|
|
259
267
|
Then **interview the master** for the seed short description + README (what it tracks, member repos, links
|
|
260
268
|
to the repos' `README.md`/`architecture.md`); set them via the `updateProjectV2` mutation
|
|
261
269
|
(`shortDescription`, `readme`). If cloning, verify the built-in workflows survived (next note).
|
|
@@ -265,6 +273,14 @@ gh project list --owner "$PROJECT_OWNER" --format json # existing boards to ch
|
|
|
265
273
|
on merge. GitHub's public GraphQL schema exposes delete/read surfaces for Project workflows but no
|
|
266
274
|
create/update/enable mutation; if any required workflow is missing or disabled, repair it in the project's
|
|
267
275
|
**Workflows** settings before calling the repo ready for developers.
|
|
276
|
+
- **Board shape (#4093):** `mmi-cli bootstrap verify` also checks the view triple (`List`/`Board`/`Roadmap`
|
|
277
|
+
by name **and** layout), the Board view's grouping, and its card fields against the standard the template
|
|
278
|
+
board (project 4) carries. Grouping (columns=`Status`, swimlanes=`Repository`) has **no** GraphQL create/
|
|
279
|
+
update mutation (`ProjectV2ViewConfigurationInput` carries only `visibleFieldIds`) — a drifted swimlane or
|
|
280
|
+
column can only be fixed in the UI: Board view → ⚙ (top-right) → Group by / Swimlanes → Save view. The
|
|
281
|
+
view triple and the card fields (`Title, Assignees, Status, Labels, Linked pull requests, Parent issue,
|
|
282
|
+
Sub-issues progress, Priority`) ARE API-writable (`createProjectV2View`/`updateProjectV2View`), so a
|
|
283
|
+
drifted one can be fixed live instead of only reported.
|
|
268
284
|
|
|
269
285
|
Record the chosen `projectNumber`/`projectId` plus Status/Priority field ids in the Hub registry META
|
|
270
286
|
(`PROJECT#<slug>`) by re-running `mmi-cli bootstrap apply --execute` **after** `gh project link`. Apply reads
|
|
@@ -362,10 +378,12 @@ collaborator list + the per-branch allowlist are the record — no separate rost
|
|
|
362
378
|
gh label create feature --color a2eeef --description "New capability or enhancement" -R $OWNER/$REPO
|
|
363
379
|
gh label create task --color 0052cc --description "Task, chore, or improvement" -R $OWNER/$REPO
|
|
364
380
|
```
|
|
365
|
-
- **Board view (
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
381
|
+
- **Board view (card fields, #4093)** — the Project's Board view must show the org-standard card set:
|
|
382
|
+
`Title, Assignees, Status, Labels, Linked pull requests, Parent issue, Sub-issues progress, Priority`.
|
|
383
|
+
Cloning from the template board (project 4, Step 3) already produces this; `bootstrap verify` asserts it
|
|
384
|
+
(`Board view card fields match the org standard`) on every subsequent run, so drift shows up there rather
|
|
385
|
+
than only at bootstrap time. Fix via Board view → **Fields**, or `updateProjectV2View(configuration:
|
|
386
|
+
{visibleFieldIds:[...]})`. Strip any legacy `priority:*` / taxonomy labels with `mmi-cli board doctor --fix`.
|
|
369
387
|
- **Org App credentials** — nothing to register per repo (#494). Board moves are central (the Hub webhook
|
|
370
388
|
moves Todo/In Progress/In Review for every repo) and the org App token is minted inside the Hub's own
|
|
371
389
|
central workflows, so `MMI_APP_ID` / `MMI_APP_PRIVATE_KEY` live only on the Hub — a product repo seeds no
|