@devrouter/cli 0.0.1 → 0.0.23
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 +265 -19
- package/dist/dev.js +7182 -1884
- package/package.json +15 -8
- package/upgrade-prompts/0.0.10.md +27 -0
- package/upgrade-prompts/0.0.11.md +26 -0
- package/upgrade-prompts/0.0.12.md +26 -0
- package/upgrade-prompts/0.0.13.md +29 -0
- package/upgrade-prompts/0.0.14.md +27 -0
- package/upgrade-prompts/0.0.15.md +22 -0
- package/upgrade-prompts/0.0.16.md +34 -0
- package/upgrade-prompts/0.0.17.md +37 -0
- package/upgrade-prompts/0.0.18.md +47 -0
- package/upgrade-prompts/0.0.19.md +19 -0
- package/upgrade-prompts/0.0.20.md +33 -0
- package/upgrade-prompts/0.0.21.md +36 -0
- package/upgrade-prompts/0.0.22.md +51 -0
- package/upgrade-prompts/0.0.23.md +44 -0
- package/upgrade-prompts/0.0.6.md +32 -0
- package/upgrade-prompts/0.0.7.md +23 -0
- package/upgrade-prompts/0.0.8.md +26 -0
- package/upgrade-prompts/0.0.9.md +30 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
You are upgrading a repository that uses devrouter to version 0.0.9.
|
|
2
|
+
|
|
3
|
+
Task:
|
|
4
|
+
1) Refresh discoverability artifacts with the installed CLI version:
|
|
5
|
+
- `dev repo agents --repo <repo>`
|
|
6
|
+
2) If Linear workflow is enabled in this repository, re-run with guided metadata capture:
|
|
7
|
+
- `dev repo agents --repo <repo> --with-linear`
|
|
8
|
+
3) Confirm AGENTS.md contains one managed Linear metadata block between:
|
|
9
|
+
- `<!-- devrouter-linear-workflow-config:start -->`
|
|
10
|
+
- `<!-- devrouter-linear-workflow-config:end -->`
|
|
11
|
+
4) Ensure required mapping fields are set (no placeholders left):
|
|
12
|
+
- `linear.workspace.name`
|
|
13
|
+
- `linear.team.name`
|
|
14
|
+
- `linear.project.name`
|
|
15
|
+
5) If placeholders exist from non-interactive runs, re-run the command in an interactive TTY and provide workspace/team/project values.
|
|
16
|
+
6) For Linear-tracked implementation, enforce execution hygiene:
|
|
17
|
+
- set issue status at session start and each phase transition
|
|
18
|
+
- post progress comments at meaningful checkpoints during implementation
|
|
19
|
+
- post an end-of-session recap comment and re-check status/comment freshness before stopping
|
|
20
|
+
|
|
21
|
+
Validation:
|
|
22
|
+
- run `dev init --repo <repo> --with-linear` and confirm guided Linear questions appear
|
|
23
|
+
- run `dev repo agents --repo <repo> --with-linear` and confirm AGENTS metadata block is populated
|
|
24
|
+
- run `dev doctor --repo <repo>`
|
|
25
|
+
|
|
26
|
+
Report:
|
|
27
|
+
- final workspace/team/project mapping stored in AGENTS
|
|
28
|
+
- whether placeholders were replaced
|
|
29
|
+
- any unresolved mapping ambiguity
|
|
30
|
+
- confirmation that Linear status/comment cadence was followed during execution and at session end
|