multi-agents-cli 1.1.88 → 1.1.90
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/core/templates/.agents/backend/API.md +17 -5
- package/core/templates/.agents/backend/AUTH.md +17 -5
- package/core/templates/.agents/backend/DB.md +17 -5
- package/core/templates/.agents/backend/EVENTS.md +17 -5
- package/core/templates/.agents/backend/INIT.md +17 -5
- package/core/templates/.agents/backend/JOBS.md +17 -5
- package/core/templates/.agents/backend/LOGIC.md +17 -5
- package/core/templates/.agents/backend/TESTING.md +17 -5
- package/core/templates/.agents/client/ACCESSIBILITY.md +17 -5
- package/core/templates/.agents/client/FORMS.md +17 -5
- package/core/templates/.agents/client/LOGIC.md +17 -5
- package/core/templates/.agents/client/ROUTING.md +17 -5
- package/core/templates/.agents/client/TESTING.md +17 -5
- package/core/templates/.agents/client/UI.md +17 -5
- package/core/templates/.agents/shared/SECURITY.md +17 -5
- package/package.json +1 -1
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Implement all API endpoint handlers, request/response shaping, DTO design,
|
|
@@ -198,11 +211,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
198
211
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
199
212
|
|
|
200
213
|
- `full` — no restrictions, behave normally
|
|
201
|
-
- `insights` — three permitted
|
|
202
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
203
|
-
2. `\033[1;32m✔\033[0m [result
|
|
204
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
205
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
214
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
215
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
216
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
217
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
206
218
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
207
219
|
|
|
208
220
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all authentication and authorization implementations for the backend
|
|
@@ -190,11 +203,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
190
203
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
191
204
|
|
|
192
205
|
- `full` — no restrictions, behave normally
|
|
193
|
-
- `insights` — three permitted
|
|
194
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
195
|
-
2. `\033[1;32m✔\033[0m [result
|
|
196
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
197
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
206
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
207
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
208
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
209
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
198
210
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
199
211
|
|
|
200
212
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all database schema design, entity or model definitions, query
|
|
@@ -197,11 +210,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
197
210
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
198
211
|
|
|
199
212
|
- `full` — no restrictions, behave normally
|
|
200
|
-
- `insights` — three permitted
|
|
201
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
202
|
-
2. `\033[1;32m✔\033[0m [result
|
|
203
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
204
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
213
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
214
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
215
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
216
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
205
217
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
206
218
|
|
|
207
219
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all event-driven patterns for the backend project - event emission,
|
|
@@ -196,11 +209,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
196
209
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
197
210
|
|
|
198
211
|
- `full` — no restrictions, behave normally
|
|
199
|
-
- `insights` — three permitted
|
|
200
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
201
|
-
2. `\033[1;32m✔\033[0m [result
|
|
202
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
203
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
212
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
213
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
214
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
215
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
204
216
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
205
217
|
|
|
206
218
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Scaffold the entire backend architecture for this project. This agent owns
|
|
@@ -180,11 +193,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
180
193
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
181
194
|
|
|
182
195
|
- `full` — no restrictions, behave normally
|
|
183
|
-
- `insights` — three permitted
|
|
184
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
185
|
-
2. `\033[1;32m✔\033[0m [result
|
|
186
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
187
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
196
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
197
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
198
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
199
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
188
200
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
189
201
|
|
|
190
202
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all background job definitions, scheduled task implementations, retry
|
|
@@ -196,11 +209,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
196
209
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
197
210
|
|
|
198
211
|
- `full` — no restrictions, behave normally
|
|
199
|
-
- `insights` — three permitted
|
|
200
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
201
|
-
2. `\033[1;32m✔\033[0m [result
|
|
202
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
203
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
212
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
213
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
214
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
215
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
204
216
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
205
217
|
|
|
206
218
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all business logic, domain rules, and service layer implementations
|
|
@@ -222,11 +235,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
222
235
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
223
236
|
|
|
224
237
|
- `full` — no restrictions, behave normally
|
|
225
|
-
- `insights` — three permitted
|
|
226
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
227
|
-
2. `\033[1;32m✔\033[0m [result
|
|
228
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
229
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
238
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
239
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
240
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
241
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
230
242
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
231
243
|
|
|
232
244
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all backend test authoring - unit tests, integration tests, and
|
|
@@ -204,11 +217,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
204
217
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
205
218
|
|
|
206
219
|
- `full` — no restrictions, behave normally
|
|
207
|
-
- `insights` — three permitted
|
|
208
|
-
1. `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
209
|
-
2. `\033[1;32m✔\033[0m [result
|
|
210
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
211
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
220
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
221
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;33m▶\033[0m [phase] — [what and why, one line]`
|
|
222
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
223
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
212
224
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
213
225
|
|
|
214
226
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all accessibility compliance across the client project - semantic markup,
|
|
@@ -199,11 +212,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
199
212
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
200
213
|
|
|
201
214
|
- `full` — no restrictions, behave normally
|
|
202
|
-
- `insights` — three permitted
|
|
203
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
204
|
-
2. `\033[1;32m✔\033[0m [result
|
|
205
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
206
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
215
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
216
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
217
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
218
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
207
219
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
208
220
|
|
|
209
221
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all form architecture, field definitions, validation logic, and submission
|
|
@@ -184,11 +197,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
184
197
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
185
198
|
|
|
186
199
|
- `full` — no restrictions, behave normally
|
|
187
|
-
- `insights` — three permitted
|
|
188
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
189
|
-
2. `\033[1;32m✔\033[0m [result
|
|
190
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
191
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
200
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
201
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
202
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
203
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
192
204
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
193
205
|
|
|
194
206
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all client-side logic that is not visual - state management, data fetching,
|
|
@@ -216,11 +229,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
216
229
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
217
230
|
|
|
218
231
|
- `full` — no restrictions, behave normally
|
|
219
|
-
- `insights` — three permitted
|
|
220
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
221
|
-
2. `\033[1;32m✔\033[0m [result
|
|
222
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
223
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
232
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
233
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
234
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
235
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
224
236
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
225
237
|
|
|
226
238
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all route definitions, navigation structure, route guards, lazy loading
|
|
@@ -185,11 +198,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
185
198
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
186
199
|
|
|
187
200
|
- `full` — no restrictions, behave normally
|
|
188
|
-
- `insights` — three permitted
|
|
189
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
190
|
-
2. `\033[1;32m✔\033[0m [result
|
|
191
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
192
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
201
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
202
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
203
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
204
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
193
205
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
194
206
|
|
|
195
207
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all client-side test authoring - unit tests, integration tests, and
|
|
@@ -186,11 +199,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
186
199
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
187
200
|
|
|
188
201
|
- `full` — no restrictions, behave normally
|
|
189
|
-
- `insights` — three permitted
|
|
190
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
191
|
-
2. `\033[1;32m✔\033[0m [result
|
|
192
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
193
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
202
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
203
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
204
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
205
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
194
206
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
195
207
|
|
|
196
208
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Build, modify, and maintain all UI components, layouts, and visual patterns
|
|
@@ -177,11 +190,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
177
190
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
178
191
|
|
|
179
192
|
- `full` — no restrictions, behave normally
|
|
180
|
-
- `insights` — three permitted
|
|
181
|
-
1. `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
182
|
-
2. `\033[1;32m✔\033[0m [result
|
|
183
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
184
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
193
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
194
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;36m▶\033[0m [phase] — [what and why, one line]`
|
|
195
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
196
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
185
197
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
186
198
|
|
|
187
199
|
---
|
|
@@ -5,6 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## Output Mode Contract
|
|
9
|
+
|
|
10
|
+
Before doing anything else, read `output_mode` from `.claude-scope` and store it as OUTPUT_MODE. This is a hard contract for the entire session — violation of it is an error:
|
|
11
|
+
|
|
12
|
+
- `full` — no restrictions, behave normally
|
|
13
|
+
- `insights` — exactly three output types are permitted. Any text outside these must not be emitted:
|
|
14
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;31m▶\033[0m [phase] — [what and why, one line]`
|
|
15
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
16
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
17
|
+
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
18
|
+
|
|
19
|
+
Confirm OUTPUT_MODE by emitting exactly: `Output mode: [OUTPUT_MODE]` — then proceed.
|
|
20
|
+
|
|
8
21
|
## Mission
|
|
9
22
|
|
|
10
23
|
Own all security auditing, vulnerability assessment, and security-hardening
|
|
@@ -199,11 +212,10 @@ the agent is working. Keep it specific and honest — not generic filler.
|
|
|
199
212
|
Read `output_mode` from `.claude-scope` at session start. Honor it for the entire session:
|
|
200
213
|
|
|
201
214
|
- `full` — no restrictions, behave normally
|
|
202
|
-
- `insights` — three permitted
|
|
203
|
-
1. `\033[1;31m▶\033[0m [phase] — [what and why, one line]`
|
|
204
|
-
2. `\033[1;32m✔\033[0m [result
|
|
205
|
-
3. `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
206
|
-
No other text. No transitions. No reasoning. No read/write acknowledgements.
|
|
215
|
+
- `insights` — exactly three output types are permitted. Any text outside these is a violation of the output mode contract and must not be emitted:
|
|
216
|
+
1. Before each phase, output this exact string (replace placeholders): `\033[1;31m▶\033[0m [phase] — [what and why, one line]`
|
|
217
|
+
2. After each phase completes, output this exact string (replace placeholder): `\033[1;32m✔\033[0m [result — outcome in 10 words or fewer, stated as fact, no first-person narration]`
|
|
218
|
+
3. When action is blocked or a decision is required, output this exact string (replace placeholder): `\033[38;5;208m\033[1m⚠\033[0m [blocker or decision]`
|
|
207
219
|
- `silent` — show `✢ working...` between phases; emit only `\033[1;32m✔\033[0m` git operations, errors, and verification results; no other output
|
|
208
220
|
|
|
209
221
|
---
|
package/package.json
CHANGED