@rasensio/aidlc-content 1.20.0 → 1.21.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/04-roadmap.md +12 -0
package/package.json
CHANGED
package/skills/04-roadmap.md
CHANGED
|
@@ -136,3 +136,15 @@ When the instance completes, the `roadmap-done` lifecycle action moves the item
|
|
|
136
136
|
## Drop
|
|
137
137
|
|
|
138
138
|
Move the item to `hold/` and append the `history` entry. Dropping is an explicit act — never delete or overwrite an item to get rid of it.
|
|
139
|
+
|
|
140
|
+
## Projecting to GitHub Issues
|
|
141
|
+
|
|
142
|
+
Optional, opt-in, and inert until a `roadmap.sync` section exists in `.aidlc/config.yaml`. When a user asks how the roadmap can be visible to people who will not clone the repo, or how it can appear where their team already triages, the answer is `aidlc roadmap sync` — see `docs/roadmap.md`.
|
|
143
|
+
|
|
144
|
+
Three things to know before you offer it:
|
|
145
|
+
|
|
146
|
+
- It is a **projection, not sync**. Disk stays the source of truth; nothing is written back to disk, so no item gains a `remote:` field and no flow above changes. The link lives on the issue as a marker carrying the item `id`.
|
|
147
|
+
- **`inbox/` and `hold/` are not projected by default**, because an untriaged idea and a parked one are not decisions anybody has published. Do not widen that list on a user's behalf.
|
|
148
|
+
- **Every write needs consent.** Suggest `aidlc roadmap sync --dry-run` first, always. It prints the plan, names the target repository, and touches nothing.
|
|
149
|
+
|
|
150
|
+
`aidlc roadmap import <issue-url>` is the opposite direction, and it is one-shot: it writes one `inbox/` item with the issue linked and its executive summary left as `Not yet decided.`, which is then a normal triage. Nothing reconciles afterwards.
|