multi-agents-cli 1.1.8 → 1.1.10

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/README.md +18 -2
  2. package/core/templates/.agents/backend/API.md +270 -0
  3. package/core/templates/.agents/backend/AUTH.md +257 -0
  4. package/core/templates/.agents/backend/DB.md +268 -0
  5. package/core/templates/.agents/backend/EVENTS.md +264 -0
  6. package/core/templates/.agents/backend/INIT.md +250 -0
  7. package/core/templates/.agents/backend/JOBS.md +267 -0
  8. package/core/templates/.agents/backend/LOGIC.md +302 -0
  9. package/core/templates/.agents/backend/TESTING.md +277 -0
  10. package/core/templates/.agents/client/ACCESSIBILITY.md +277 -0
  11. package/core/templates/.agents/client/FORMS.md +245 -0
  12. package/core/templates/.agents/client/LOGIC.md +288 -0
  13. package/core/templates/.agents/client/ROUTING.md +246 -0
  14. package/core/templates/.agents/client/TESTING.md +252 -0
  15. package/core/templates/.agents/client/UI.md +237 -0
  16. package/core/templates/.agents/shared/CLOUD.md +229 -0
  17. package/core/templates/.agents/shared/CLOUD_TEARDOWN.md +158 -0
  18. package/core/templates/.agents/shared/SECURITY.md +297 -0
  19. package/core/templates/.frameworks/backend/django.md +55 -0
  20. package/core/templates/.frameworks/backend/express.md +74 -0
  21. package/core/templates/.frameworks/backend/fastapi.md +107 -0
  22. package/core/templates/.frameworks/backend/fastify.md +74 -0
  23. package/core/templates/.frameworks/backend/laravel.md +79 -0
  24. package/core/templates/.frameworks/backend/nestjs.md +75 -0
  25. package/core/templates/.frameworks/backend/rails.md +84 -0
  26. package/core/templates/.frameworks/client/angular.md +80 -0
  27. package/core/templates/.frameworks/client/nextjs.md +47 -0
  28. package/core/templates/.frameworks/client/nuxt.md +45 -0
  29. package/core/templates/.frameworks/client/remix.md +44 -0
  30. package/core/templates/.frameworks/client/sveltekit.md +44 -0
  31. package/core/templates/.frameworks/client/vite-react.md +45 -0
  32. package/core/templates/CLAUDE.md +562 -0
  33. package/core/templates/CONTRACTS.md +16 -0
  34. package/core/templates/backend/CLAUDE.md +207 -0
  35. package/core/templates/client/CLAUDE.md +213 -0
  36. package/core/workflow/agent.js +285 -6
  37. package/core/workflow/complete.js +141 -5
  38. package/core/workflow/reset.js +28 -21
  39. package/core/workflow/run.js +3 -0
  40. package/init.js +2 -2
  41. package/lib/questions-flow.js +14 -7
  42. package/lib/steps.js +13 -1
  43. package/lib/ui.js +8 -0
  44. package/package.json +1 -1
@@ -0,0 +1,45 @@
1
+ # Nuxt — Scaffold Instructions
2
+
3
+ ## Scaffold Location
4
+
5
+ Scaffold directly into `client/` from the repo root:
6
+
7
+ ```bash
8
+ npx nuxi@latest init client --no-install --no-gitInit
9
+ cd client && npm install
10
+ ```
11
+
12
+ ## Expected Structure After Scaffold
13
+
14
+ ```
15
+ client/
16
+ assets/
17
+ components/
18
+ composables/
19
+ layouts/
20
+ pages/
21
+ index.vue
22
+ plugins/
23
+ public/
24
+ server/
25
+ app.vue
26
+ nuxt.config.ts
27
+ package.json
28
+ tsconfig.json
29
+ ```
30
+
31
+ ## Update .scaffold/.paths.json
32
+
33
+ ```json
34
+ {
35
+ "client": {
36
+ "typesDir": {
37
+ "expected": "client/types",
38
+ "current": "client/types",
39
+ "status": "verified"
40
+ }
41
+ }
42
+ }
43
+ ```
44
+
45
+ Create `client/types/` — this is where shared types live.
@@ -0,0 +1,44 @@
1
+ # Remix — Scaffold Instructions
2
+
3
+ ## Scaffold Location
4
+
5
+ Scaffold directly into `client/` from the repo root:
6
+
7
+ ```bash
8
+ npx create-remix@latest client --no-install --no-git-init --template remix
9
+ cd client && npm install
10
+ ```
11
+
12
+ ## Expected Structure After Scaffold
13
+
14
+ ```
15
+ client/
16
+ app/
17
+ routes/
18
+ _index.tsx
19
+ root.tsx
20
+ entry.client.tsx
21
+ entry.server.tsx
22
+ tailwind.css
23
+ public/
24
+ package.json
25
+ tsconfig.json
26
+ vite.config.ts
27
+ remix.config.js
28
+ ```
29
+
30
+ ## Update .scaffold/.paths.json
31
+
32
+ ```json
33
+ {
34
+ "client": {
35
+ "typesDir": {
36
+ "expected": "client/app/types",
37
+ "current": "client/app/types",
38
+ "status": "verified"
39
+ }
40
+ }
41
+ }
42
+ ```
43
+
44
+ Create `client/app/types/` — this is where shared types live.
@@ -0,0 +1,44 @@
1
+ # SvelteKit — Scaffold Instructions
2
+
3
+ ## Scaffold Location
4
+
5
+ Scaffold directly into `client/` from the repo root:
6
+
7
+ ```bash
8
+ npx sv create client --template minimal --types ts --no-add-ons --no-install
9
+ cd client && npm install
10
+ ```
11
+
12
+ ## Expected Structure After Scaffold
13
+
14
+ ```
15
+ client/
16
+ src/
17
+ lib/
18
+ index.ts
19
+ routes/
20
+ +page.svelte
21
+ app.html
22
+ app.d.ts
23
+ static/
24
+ svelte.config.js
25
+ vite.config.ts
26
+ package.json
27
+ tsconfig.json
28
+ ```
29
+
30
+ ## Update .scaffold/.paths.json
31
+
32
+ ```json
33
+ {
34
+ "client": {
35
+ "typesDir": {
36
+ "expected": "client/src/lib/types",
37
+ "current": "client/src/lib/types",
38
+ "status": "verified"
39
+ }
40
+ }
41
+ }
42
+ ```
43
+
44
+ Create `client/src/lib/types/` — this is where shared types live.
@@ -0,0 +1,45 @@
1
+ # Vite + React — Scaffold Instructions
2
+
3
+ ## Scaffold Location
4
+
5
+ Scaffold directly into `client/` from the repo root:
6
+
7
+ ```bash
8
+ npm create vite@latest client -- --template react-ts
9
+ cd client && npm install
10
+ ```
11
+
12
+ ## Expected Structure After Scaffold
13
+
14
+ ```
15
+ client/
16
+ src/
17
+ assets/
18
+ App.tsx
19
+ App.css
20
+ main.tsx
21
+ index.css
22
+ vite-env.d.ts
23
+ public/
24
+ index.html
25
+ package.json
26
+ tsconfig.json
27
+ tsconfig.node.json
28
+ vite.config.ts
29
+ ```
30
+
31
+ ## Update .scaffold/.paths.json
32
+
33
+ ```json
34
+ {
35
+ "client": {
36
+ "typesDir": {
37
+ "expected": "client/src/types",
38
+ "current": "client/src/types",
39
+ "status": "verified"
40
+ }
41
+ }
42
+ }
43
+ ```
44
+
45
+ Create `client/src/types/` — this is where shared types live.