@rasensio/aidlc-content 1.17.0 → 1.19.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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
platform: copilot
|
|
2
|
+
capabilities:
|
|
3
|
+
plan-mode:
|
|
4
|
+
phases: [ideation, requirements, design]
|
|
5
|
+
activation: >-
|
|
6
|
+
Switch Copilot to plan mode for this phase (the agent picker in the Chat
|
|
7
|
+
view, or `agent: plan`). Produce the phase artifact as a written plan and
|
|
8
|
+
have it agreed before any file is edited — these phases decide what to
|
|
9
|
+
build, not how to type it.
|
package/package.json
CHANGED
package/skills/03-entry-point.md
CHANGED
|
@@ -9,6 +9,10 @@ native_mode_hint:
|
|
|
9
9
|
This skill is an interactive entry point, not a phase artifact. Do not
|
|
10
10
|
enter plan mode. Read lifecycle state, present the menu, and wait for
|
|
11
11
|
the user's choice before doing any work.
|
|
12
|
+
copilot: >-
|
|
13
|
+
This skill is an interactive entry point, not a phase artifact. Stay in the
|
|
14
|
+
default agent — do not switch to plan mode. Read lifecycle state, present the
|
|
15
|
+
menu, and wait for the user's choice before doing any work.
|
|
12
16
|
---
|
|
13
17
|
# AIDLC Entry Point
|
|
14
18
|
|
package/skills/04-roadmap.md
CHANGED
|
@@ -9,6 +9,10 @@ native_mode_hint:
|
|
|
9
9
|
This skill is an interactive inbox, not a phase artifact. Do not enter
|
|
10
10
|
plan mode. Capture is a single write-and-confirm; never touch instance
|
|
11
11
|
state while capturing.
|
|
12
|
+
copilot: >-
|
|
13
|
+
This skill is an interactive inbox, not a phase artifact. Stay in the default
|
|
14
|
+
agent — do not switch to plan mode. Capture is a single write-and-confirm;
|
|
15
|
+
never touch instance state while capturing.
|
|
12
16
|
---
|
|
13
17
|
# Roadmap
|
|
14
18
|
|
|
@@ -10,6 +10,11 @@ native_mode_hint:
|
|
|
10
10
|
not enter plan mode. Never rewrite an existing constitution from the vision
|
|
11
11
|
in one step — propose changes into the inbox and apply only what the user
|
|
12
12
|
accepts.
|
|
13
|
+
copilot: >-
|
|
14
|
+
This skill imports a document and drafts prose for the user to correct. Stay
|
|
15
|
+
in the default agent — do not switch to plan mode. Never rewrite an existing
|
|
16
|
+
constitution from the vision in one step — propose changes into the inbox and
|
|
17
|
+
apply only what the user accepts.
|
|
13
18
|
---
|
|
14
19
|
# Constitution
|
|
15
20
|
|
package/skills/60-deployment.md
CHANGED
|
@@ -39,12 +39,20 @@ deployment checklist.
|
|
|
39
39
|
- Deployment steps in order
|
|
40
40
|
- Rollback procedure
|
|
41
41
|
- Monitoring and verification steps post-deploy
|
|
42
|
-
4. **
|
|
42
|
+
4. **Update the affected topic page in `docs/`.** If this instance changed how a documented topic
|
|
43
|
+
behaves — its interface, its failure modes, or the reason it is built the way it is — update that
|
|
44
|
+
topic's page before releasing, and say in the deployment artifact which page you touched or that
|
|
45
|
+
none applied. The manifest at `docs/index.yaml` maps each topic to the code it documents, so
|
|
46
|
+
start there to find the page. A design reason bought with a bugfix belongs in the page's "why"
|
|
47
|
+
section: the knowledge graph records what the code looks like and cannot afford to record why, so
|
|
48
|
+
a reason that lives nowhere else is one the next agent will simplify away. This is a checklist
|
|
49
|
+
step, not a gate — no phase is blocked on it.
|
|
50
|
+
5. **Pre-deployment checks.** Verify:
|
|
43
51
|
- CI pipeline passes
|
|
44
52
|
- No critical findings open from adversarial reviews
|
|
45
53
|
- Dependencies are pinned and audited
|
|
46
|
-
|
|
47
|
-
|
|
54
|
+
6. **Execute deployment.** Follow the release plan step by step.
|
|
55
|
+
7. **Verify.** Confirm the deployment succeeded using the monitoring steps.
|
|
48
56
|
|
|
49
57
|
## Exit Criteria
|
|
50
58
|
|