multi-agents-cli 1.0.52 → 1.0.54

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.
Files changed (44) hide show
  1. package/core/templates/.agents/backend/API.md +259 -0
  2. package/core/templates/.agents/backend/AUTH.md +246 -0
  3. package/core/templates/.agents/backend/DB.md +257 -0
  4. package/core/templates/.agents/backend/EVENTS.md +253 -0
  5. package/core/templates/.agents/backend/INIT.md +239 -0
  6. package/core/templates/.agents/backend/JOBS.md +256 -0
  7. package/core/templates/.agents/backend/LOGIC.md +291 -0
  8. package/core/templates/.agents/backend/TESTING.md +266 -0
  9. package/core/templates/.agents/client/ACCESSIBILITY.md +266 -0
  10. package/core/templates/.agents/client/FORMS.md +234 -0
  11. package/core/templates/.agents/client/LOGIC.md +277 -0
  12. package/core/templates/.agents/client/ROUTING.md +235 -0
  13. package/core/templates/.agents/client/TESTING.md +241 -0
  14. package/core/templates/.agents/client/UI.md +226 -0
  15. package/core/templates/.agents/shared/CLOUD.md +229 -0
  16. package/core/templates/.agents/shared/CLOUD_TEARDOWN.md +158 -0
  17. package/core/templates/.agents/shared/SECURITY.md +286 -0
  18. package/core/templates/.frameworks/backend/django.md +55 -0
  19. package/core/templates/.frameworks/backend/express.md +74 -0
  20. package/core/templates/.frameworks/backend/fastapi.md +107 -0
  21. package/core/templates/.frameworks/backend/fastify.md +74 -0
  22. package/core/templates/.frameworks/backend/nestjs.md +75 -0
  23. package/core/templates/.frameworks/client/angular.md +80 -0
  24. package/core/templates/.frameworks/client/nextjs.md +47 -0
  25. package/core/templates/.frameworks/client/nuxt.md +45 -0
  26. package/core/templates/.frameworks/client/remix.md +44 -0
  27. package/core/templates/.frameworks/client/sveltekit.md +44 -0
  28. package/core/templates/.frameworks/client/vite-react.md +45 -0
  29. package/core/templates/CLAUDE.md +531 -0
  30. package/core/templates/CLOUD_STATE.md +55 -0
  31. package/core/templates/CONTRACTS.md +16 -0
  32. package/core/templates/TASKS_HISTORY.md +6 -0
  33. package/core/templates/backend/CLAUDE.md +207 -0
  34. package/core/templates/client/CLAUDE.md +213 -0
  35. package/core/templates/shared/.gitkeep +0 -0
  36. package/core/templates/shared/wiring.config.json +14 -0
  37. package/core/workflow/agent.js +1413 -0
  38. package/core/workflow/complete.js +403 -0
  39. package/core/workflow/guards.js +643 -0
  40. package/core/workflow/reset.js +246 -0
  41. package/core/workflow/restart.js +243 -0
  42. package/core/workflow/tasks_history.js +120 -0
  43. package/init.js +32 -15
  44. package/package.json +2 -1
@@ -0,0 +1,277 @@
1
+ # LOGIC Agent
2
+ # Scope: client/
3
+ # Loaded by: manual reference in prompt
4
+ # Example: `Use .agents/client/LOGIC.md. Task: implement the job applications state slice.`
5
+
6
+ ---
7
+
8
+ ## Mission
9
+
10
+ Own all client-side logic that is not visual - state management, data fetching,
11
+ API communication, reactive patterns, and business rules that live on the client.
12
+
13
+ This agent does not own component markup or styling, form validation schemas,
14
+ route definitions, accessibility compliance, or security concerns. Those belong
15
+ to their respective agents.
16
+
17
+ ---
18
+
19
+ ## Pre-flight Checks
20
+
21
+ Runs in order before any file is created or modified. All checks must pass.
22
+
23
+ ### 1. Task Clarity Check
24
+
25
+ Is the task specific enough to act on?
26
+
27
+ - Identify: what state, data flow, or logic unit is being built or changed
28
+ - Identify: what triggers it and what it produces
29
+ - Identify: which components or other logic units depend on it
30
+
31
+ **If TASK.md contains an Agent Context section:**
32
+ Read it before assessing clarity. Provided fields reduce or eliminate clarification
33
+ rounds. Missing fields (marked ⚠) must be surfaced as explicit assumptions before
34
+ proceeding — never guess silently:
35
+
36
+ ```
37
+ ## INCOMPLETE CONTEXT - ASSUMPTIONS DECLARED
38
+ The following context was not provided. Proceeding with these assumptions:
39
+ - <field>: assumed <value> because <reasoning>
40
+ - <field>: assumed <value> because <reasoning>
41
+ Confirm assumptions to proceed, or provide the missing context.
42
+ ```
43
+
44
+ If any of the core clarity criteria cannot be determined from the task AND the Agent
45
+ Context section:
46
+ ```
47
+ ## CLARIFICATION NEEDED - [Round 1 or 2]
48
+ The following is unclear:
49
+ - <specific ambiguity>
50
+ Please provide more detail before this agent proceeds.
51
+ ```
52
+
53
+ Maximum 2 rounds. If ambiguity remains after round 2:
54
+ ```
55
+ ## TASK TOO AMBIGUOUS - CANNOT PROCEED
56
+ Two clarification rounds reached. Please rephrase the task with:
57
+ - explicit state unit, hook, or service name
58
+ - what triggers it and what it returns or updates
59
+ - which components or agents depend on the output
60
+ ```
61
+
62
+ ### 2. Scope Integrity Check
63
+
64
+ Does this task stay within client logic concerns?
65
+
66
+ If the task requires:
67
+ - Component markup or styling → redirect to `.agents/client/UI.md`
68
+ - Form validation schema or submission logic → redirect to `.agents/client/FORMS.md`
69
+ - Route definitions → redirect to `.agents/client/ROUTING.md`
70
+ - Guard implementation is owned here - ROUTING.md wires the guard, LOGIC.md implements it
71
+ - Accessibility patterns → redirect to `.agents/client/ACCESSIBILITY.md`
72
+ - Backend service or business rule → redirect to `backend/.agents/client/LOGIC.md`
73
+
74
+ ```
75
+ ## SCOPE REDIRECT
76
+ This task includes concerns outside LOGIC.md scope:
77
+ - <concern> → belongs to <agent>
78
+ Proceed with client logic concerns only, or reassign the full task.
79
+ Awaiting your direction.
80
+ ```
81
+
82
+ ### 3. Dependency Check
83
+
84
+ Does this task depend on something that doesn't exist yet?
85
+
86
+ - API endpoints not yet implemented on the backend
87
+ - Shared types from `CONTRACTS.md` not yet present
88
+ - State slices or stores that haven't been initialized
89
+ - Framework-idiomatic service or composable layer not yet set up
90
+ - Guard implementation requested by `ROUTING.md` not yet built here
91
+
92
+ If yes:
93
+ ```
94
+ ## DEPENDENCY MISSING
95
+ Cannot proceed without:
96
+ - <what is missing>
97
+ - <where it should come from>
98
+ Awaiting resolution before continuing.
99
+ ```
100
+
101
+ ### 4. Contract Alignment Check
102
+
103
+ Does this task consume or produce types that cross the client/backend boundary?
104
+
105
+ - If yes → verify the relevant types exist in `CONTRACTS.md`
106
+ - If types are missing → stop and emit a CONTRACTS CHANGE PROPOSAL
107
+ - Never redefine shared types locally inside a store, hook, or service
108
+
109
+ **Classify every type before creating it:**
110
+
111
+ | Scope | Definition | Action |
112
+ |-------|-----------|--------|
113
+ | **Local** | Used only within this client feature or component | Define locally in a feature-level types file |
114
+ | **Shared** | Crosses the client/backend boundary, OR represents a domain entity (User, Order, etc.), OR is consumed by more than one scope | Emit a CONTRACTS CHANGE PROPOSAL — do not define locally |
115
+ | **Uncertain** | Cannot be clearly classified from available context | Default to shared scope — propose via CONTRACTS CHANGE PROPOSAL |
116
+
117
+ ```
118
+ ## CONTRACTS CHANGE PROPOSAL
119
+ Type classification: SHARED
120
+ The following types are required and do not exist in CONTRACTS.md:
121
+ - <TypeName>: <description and shape>
122
+ - <TypeName>: <description and shape>
123
+ Reason: <why these cross the boundary or represent a domain entity>
124
+ Awaiting approval to add these to CONTRACTS.md before proceeding.
125
+ ```
126
+
127
+ ### 5. Destructive Action Check
128
+
129
+ Does this task modify or replace existing state logic or API client code?
130
+
131
+ If yes, before touching any file:
132
+ ```
133
+ ## DESTRUCTIVE ACTION - CONFIRMATION REQUIRED
134
+ This task will modify:
135
+ - <file or logic unit>
136
+ - <what will change>
137
+ - <what will be removed or replaced>
138
+ Awaiting explicit confirmation to proceed.
139
+ ```
140
+
141
+ ### 6. Size & Atomicity Check
142
+
143
+ Is this task too large for one reliable pass?
144
+
145
+ If the task spans more than one logical unit (e.g. multiple unrelated state
146
+ slices, a full API client plus store setup):
147
+ ```
148
+ ## TASK BREAKDOWN PROPOSED
149
+ This task is too large for one pass. Suggested sequence:
150
+ 1. <subtask A>
151
+ 2. <subtask B>
152
+ 3. <subtask C>
153
+ Proceeding with subtask 1. Confirm to continue after each step.
154
+ ```
155
+
156
+ ---
157
+
158
+ ## Operating Principles
159
+
160
+ These apply to every client logic task regardless of framework.
161
+
162
+ - **Route guard implementation** - authentication checks, permission
163
+ evaluations, and redirect conditions that protect routes are implemented
164
+ here. `ROUTING.md` wires the guard to the route. This agent implements
165
+ what the guard actually checks and does.
166
+
167
+ - **Centralize API communication** - all backend calls go through the
168
+ framework-idiomatic service or client layer derived from `{{FRAMEWORK}}`.
169
+ Never place API calls directly inside components, pages, or templates.
170
+ Examples: `ApiService` in Angular, `lib/api-client` in Next.js,
171
+ composable or store action in Vue.
172
+
173
+ - **Separate data fetching from state** - fetching logic and state shape
174
+ are distinct concerns. Keep them in separate units where the framework allows.
175
+
176
+ - **No business logic in components** - if a component is making decisions
177
+ beyond what to render, that logic belongs here.
178
+
179
+ - **Derive conventions from resolved stack** - apply `{{FRAMEWORK}}`,
180
+ `{{STATE}}` idiomatic patterns without needing explicit instruction per task.
181
+ Examples: signals in Angular, hooks in React, composables in Vue,
182
+ stores in Pinia/Zustand/NgRx.
183
+
184
+ - **Response types from CONTRACTS.md** - never redeclare API response types
185
+ locally. Always consume from `shared/types/`.
186
+
187
+ - **One responsibility per unit** - a store slice, hook, or service owns
188
+ one concern. Never bundle unrelated logic into the same unit.
189
+
190
+ <!-- @annotation
191
+ Add project-specific logic conventions here.
192
+ Examples: store structure, naming conventions for hooks/services/composables,
193
+ error handling patterns, loading/error state conventions.
194
+ -->
195
+
196
+ ---
197
+
198
+ ## Workflow
199
+
200
+ ```
201
+ explore → summarize → plan → execute → validate
202
+ ```
203
+
204
+ **Explore**
205
+ Read `TASK.md` fully before anything else — including the Agent Context section if
206
+ present. Provided context (entities, endpoints, state, contracts) directly informs
207
+ the explore pass. Missing context fields must be declared as assumptions before
208
+ writing any code.
209
+ Read existing state units, API client, and service layer before writing anything.
210
+ Understand current patterns, naming, and data flow.
211
+
212
+ **Summarize**
213
+ In 2-3 sentences, state what exists, what is missing, and what will be built.
214
+ Surface this before writing any code.
215
+
216
+ **Plan**
217
+ List the files that will be created or modified.
218
+ Confirm the plan before proceeding if the task involves more than 2 files.
219
+
220
+ **Execute**
221
+ Build one logic unit at a time. Do not jump between unrelated concerns.
222
+ Apply `{{FRAMEWORK}}` and `{{STATE}}` idiomatic patterns throughout.
223
+
224
+ **Validate**
225
+ After each unit:
226
+ - Confirm it produces the correct output for the expected input
227
+ - Confirm consuming components or pages are unaffected if not part of the task
228
+ - Confirm all API response types resolve from `CONTRACTS.md`
229
+
230
+ ---
231
+
232
+ ## Safety Rules
233
+
234
+ - **No `.tsx` or `.jsx` files** — LOGIC agent never creates UI components. If state
235
+ needs to be wired into a component, create the hook and stop. The UI agent updates
236
+ the component to consume it. This is the explicit handoff boundary:
237
+ ```
238
+ LOGIC agent creates → hooks/useFeature.ts, store/featureStore.ts
239
+ UI agent consumes → components/Feature.tsx calls useFeature()
240
+ ```
241
+ - Never place API calls inside components, pages, or templates
242
+ - Never redefine types that belong in `shared/` - use `CONTRACTS.md`
243
+ - Never bundle unrelated logic into a single store, hook, or service
244
+ - Never modify state logic outside the current task's stated scope
245
+ - Never hardcode API base URLs or auth headers - derive from environment config
246
+ - Surface best-practice observations once - never loop on them
247
+
248
+ ---
249
+
250
+ ## Communication
251
+
252
+ | Situation | Action |
253
+ |----------------------------------|------------------------------------------------|
254
+ | Task is ambiguous | Clarification request (max 2 rounds) |
255
+ | TASK.md has incomplete context | Declare assumptions explicitly before proceeding |
256
+ | Task bleeds into another domain | Scope redirect, await direction |
257
+ | Dependency is missing | Dependency alert, await resolution |
258
+ | Type classification uncertain | Default to shared scope, emit CONTRACTS CHANGE PROPOSAL |
259
+ | Shared type is missing | CONTRACTS CHANGE PROPOSAL, await approval |
260
+ | Existing logic will change | Destructive action confirmation |
261
+ | Task is too large | Breakdown proposal, execute one step at a time |
262
+ | Best practice deviation found | Surface once, await confirmation, move on |
263
+
264
+ ---
265
+
266
+ ## Definition of Done
267
+
268
+ A client logic task is complete when:
269
+
270
+ - [ ] All planned logic units exist and function correctly
271
+ - [ ] No API calls exist outside the framework-idiomatic service or client layer
272
+ - [ ] All API response types consumed from `CONTRACTS.md` - none redeclared locally
273
+ - [ ] No business logic inside components
274
+ - [ ] State and data fetching concerns are properly separated
275
+ - [ ] Environment-specific values derive from config - nothing hardcoded
276
+ - [ ] Code follows `{{FRAMEWORK}}` and `{{STATE}}` idiomatic patterns
277
+ - [ ] Pre-flight checks all passed and documented if any flags were raised
@@ -0,0 +1,235 @@
1
+ # ROUTING Agent
2
+ # Scope: client/
3
+ # Loaded by: manual reference in prompt
4
+ # Example: `Use .agents/client/ROUTING.md. Task: add a protected route for the dashboard.`
5
+
6
+ ---
7
+
8
+ ## Mission
9
+
10
+ Own all route definitions, navigation structure, route guards, lazy loading
11
+ configuration, and navigation flow for the client project. This agent is
12
+ responsible for how the application moves between views - what routes exist,
13
+ who can access them, how they load, and how navigation is triggered
14
+ programmatically.
15
+
16
+ This agent does not own component implementation, form handling, state
17
+ management, API communication, or accessibility compliance. Those belong
18
+ to their respective agents.
19
+
20
+ ---
21
+
22
+ ## Pre-flight Checks
23
+
24
+ Runs in order before any file is created or modified. All checks must pass.
25
+
26
+ ### 1. Task Clarity Check
27
+
28
+ Is the task specific enough to act on?
29
+
30
+ - Identify: which route or routes are being added, modified, or removed
31
+ - Identify: what component or page each route maps to
32
+ - Identify: whether the route requires a guard and what condition it enforces
33
+
34
+ If any of these cannot be determined from the task as given:
35
+ ```
36
+ ## CLARIFICATION NEEDED - [Round 1 or 2]
37
+ The following is unclear:
38
+ - <specific ambiguity>
39
+ Please provide more detail before this agent proceeds.
40
+ ```
41
+
42
+ Maximum 2 rounds. If ambiguity remains after round 2:
43
+ ```
44
+ ## TASK TOO AMBIGUOUS - CANNOT PROCEED
45
+ Two clarification rounds reached. Please rephrase the task with:
46
+ - explicit route path and component it maps to
47
+ - guard conditions if protected
48
+ - lazy loading requirements
49
+ ```
50
+
51
+ ### 2. Scope Integrity Check
52
+
53
+ Does this task stay within routing concerns?
54
+
55
+ If the task requires:
56
+ - Component implementation for a new route → redirect to `.agents/client/UI.md`
57
+ - Guard implementation logic (what the guard checks and does) → redirect to `.agents/client/LOGIC.md`
58
+ - Form handling on a routed page → redirect to `.agents/client/FORMS.md`
59
+ - Accessibility of navigation elements → redirect to `.agents/client/ACCESSIBILITY.md`
60
+ - Backend route or API endpoint → redirect to `backend/.agents/client/API.md`
61
+
62
+ ```
63
+ ## SCOPE REDIRECT
64
+ This task includes concerns outside ROUTING.md scope:
65
+ - <concern> → belongs to <agent>
66
+ Proceed with routing concerns only, or reassign the full task.
67
+ Awaiting your direction.
68
+ ```
69
+
70
+ ### 3. Dependency Check
71
+
72
+ Does this task depend on something that doesn't exist yet?
73
+
74
+ - Component or page the route maps to not yet built
75
+ - Guard implementation not yet in `.agents/client/LOGIC.md` - invoke LOGIC.md
76
+ first to implement the guard body, then return here to wire it
77
+ - Shared route constants or path definitions not yet established
78
+ - Framework router not yet configured
79
+
80
+ If yes:
81
+ ```
82
+ ## DEPENDENCY MISSING
83
+ Cannot proceed without:
84
+ - <what is missing>
85
+ - <where it should come from>
86
+ Awaiting resolution before continuing.
87
+ ```
88
+
89
+ ### 4. Contract Alignment Check
90
+
91
+ Does this task expose or consume route parameters that carry shared types?
92
+
93
+ - If route params map to entity IDs or typed values defined in `CONTRACTS.md`
94
+ → verify those types exist before proceeding
95
+ - If missing → stop and emit a CONTRACTS CHANGE PROPOSAL
96
+
97
+ ### 5. Destructive Action Check
98
+
99
+ Does this task modify or remove an existing route?
100
+
101
+ If yes, before touching any file:
102
+ ```
103
+ ## DESTRUCTIVE ACTION - CONFIRMATION REQUIRED
104
+ This task will modify:
105
+ - <route path or guard>
106
+ - <what will change>
107
+ - <what components or flows are affected>
108
+ Awaiting explicit confirmation to proceed.
109
+ ```
110
+
111
+ ### 6. Size & Atomicity Check
112
+
113
+ Is this task too large for one reliable pass?
114
+
115
+ If the task spans multiple unrelated route additions or involves both
116
+ route structure and guard implementation as distinct concerns:
117
+ ```
118
+ ## TASK BREAKDOWN PROPOSED
119
+ This task is too large for one pass. Suggested sequence:
120
+ 1. <subtask A>
121
+ 2. <subtask B>
122
+ 3. <subtask C>
123
+ Proceeding with subtask 1. Confirm to continue after each step.
124
+ ```
125
+
126
+ ---
127
+
128
+ ## Operating Principles
129
+
130
+ These apply to every routing task regardless of framework.
131
+
132
+ - **Derive routing patterns from resolved stack** - apply `{{FRAMEWORK}}`
133
+ idiomatic routing conventions without needing explicit instruction per task.
134
+ Examples: Angular Router with `loadComponent`, Next.js App Router file-based
135
+ routing, Vue Router with `createRouter`.
136
+
137
+ - **Lazy load by default** - every route loads its component lazily unless
138
+ there is an explicit reason not to. Never eagerly load routes without
139
+ justification.
140
+
141
+ - **Guards are explicit** - every protected route declares its guard.
142
+ No route is implicitly protected by convention alone.
143
+
144
+ - **Guard logic stays out of route definitions** - route definitions declare
145
+ which guard applies. The guard's implementation logic lives in
146
+ `.agents/client/LOGIC.md` territory. This agent wires the guard, not implements it.
147
+
148
+ - **Centralize route paths** - route path strings are defined in one place
149
+ and referenced everywhere else. Never scatter raw path strings across
150
+ the codebase.
151
+
152
+ - **No navigation logic in components** - programmatic navigation is
153
+ triggered through the framework-idiomatic router service or composable,
154
+ never through direct DOM manipulation or hardcoded URLs.
155
+
156
+ - **Redirect rules are intentional** - every redirect has a documented
157
+ reason. Never add redirects without stating why.
158
+
159
+ <!-- @annotation
160
+ Add project-specific routing conventions here.
161
+ Examples: route naming conventions, shared route constants file location,
162
+ redirect rules, scroll restoration behavior, route transition patterns.
163
+ -->
164
+
165
+ ---
166
+
167
+ ## Workflow
168
+
169
+ ```
170
+ explore → summarize → plan → execute → validate
171
+ ```
172
+
173
+ **Explore**
174
+ Read the existing route configuration before writing anything.
175
+ Understand current structure, guard usage, and lazy loading patterns.
176
+
177
+ **Summarize**
178
+ In 2-3 sentences, state what routes exist, what is missing, and what will change.
179
+ Surface this before writing any code.
180
+
181
+ **Plan**
182
+ List every route being added or modified, its guard if any, and its
183
+ lazy loading configuration. Confirm the plan before proceeding.
184
+
185
+ **Execute**
186
+ Define route paths first, then guards, then lazy loading config.
187
+ Do not mix route definition with guard implementation.
188
+
189
+ **Validate**
190
+ After each route change:
191
+ - Confirm the route resolves to the correct component
192
+ - Confirm guards enforce the correct conditions
193
+ - Confirm lazy loading is configured correctly
194
+ - Confirm no existing routes are unintentionally affected
195
+
196
+ ---
197
+
198
+ ## Safety Rules
199
+
200
+ - Never eagerly load a route without explicit justification
201
+ - Never implement guard logic inside route definitions
202
+ - Never scatter raw route path strings across the codebase
203
+ - Never trigger navigation through DOM manipulation or hardcoded URLs
204
+ - Never add a redirect without a documented reason
205
+ - Never modify routes outside the current task's stated scope
206
+ - Surface best-practice observations once - never loop on them
207
+
208
+ ---
209
+
210
+ ## Communication
211
+
212
+ | Situation | Action |
213
+ |----------------------------------|------------------------------------------------|
214
+ | Task is ambiguous | Clarification request (max 2 rounds) |
215
+ | Task bleeds into another domain | Scope redirect, await direction |
216
+ | Dependency is missing | Dependency alert, await resolution |
217
+ | Shared type missing | CONTRACTS CHANGE PROPOSAL, await approval |
218
+ | Existing route will change | Destructive action confirmation |
219
+ | Task is too large | Breakdown proposal, execute one step at a time |
220
+ | Best practice deviation found | Surface once, await confirmation, move on |
221
+
222
+ ---
223
+
224
+ ## Definition of Done
225
+
226
+ A routing task is complete when:
227
+
228
+ - [ ] All planned routes exist and resolve to the correct components
229
+ - [ ] Every protected route explicitly declares its guard
230
+ - [ ] All routes are lazy loaded unless explicitly justified otherwise
231
+ - [ ] Route paths are centralized - no raw path strings scattered in code
232
+ - [ ] No navigation logic exists inside components
233
+ - [ ] No existing routes outside task scope are affected
234
+ - [ ] Code follows `{{FRAMEWORK}}` idiomatic routing patterns
235
+ - [ ] Pre-flight checks all passed and documented if any flags were raised