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.
- package/README.md +18 -2
- package/core/templates/.agents/backend/API.md +270 -0
- package/core/templates/.agents/backend/AUTH.md +257 -0
- package/core/templates/.agents/backend/DB.md +268 -0
- package/core/templates/.agents/backend/EVENTS.md +264 -0
- package/core/templates/.agents/backend/INIT.md +250 -0
- package/core/templates/.agents/backend/JOBS.md +267 -0
- package/core/templates/.agents/backend/LOGIC.md +302 -0
- package/core/templates/.agents/backend/TESTING.md +277 -0
- package/core/templates/.agents/client/ACCESSIBILITY.md +277 -0
- package/core/templates/.agents/client/FORMS.md +245 -0
- package/core/templates/.agents/client/LOGIC.md +288 -0
- package/core/templates/.agents/client/ROUTING.md +246 -0
- package/core/templates/.agents/client/TESTING.md +252 -0
- package/core/templates/.agents/client/UI.md +237 -0
- package/core/templates/.agents/shared/CLOUD.md +229 -0
- package/core/templates/.agents/shared/CLOUD_TEARDOWN.md +158 -0
- package/core/templates/.agents/shared/SECURITY.md +297 -0
- package/core/templates/.frameworks/backend/django.md +55 -0
- package/core/templates/.frameworks/backend/express.md +74 -0
- package/core/templates/.frameworks/backend/fastapi.md +107 -0
- package/core/templates/.frameworks/backend/fastify.md +74 -0
- package/core/templates/.frameworks/backend/laravel.md +79 -0
- package/core/templates/.frameworks/backend/nestjs.md +75 -0
- package/core/templates/.frameworks/backend/rails.md +84 -0
- package/core/templates/.frameworks/client/angular.md +80 -0
- package/core/templates/.frameworks/client/nextjs.md +47 -0
- package/core/templates/.frameworks/client/nuxt.md +45 -0
- package/core/templates/.frameworks/client/remix.md +44 -0
- package/core/templates/.frameworks/client/sveltekit.md +44 -0
- package/core/templates/.frameworks/client/vite-react.md +45 -0
- package/core/templates/CLAUDE.md +562 -0
- package/core/templates/CONTRACTS.md +16 -0
- package/core/templates/backend/CLAUDE.md +207 -0
- package/core/templates/client/CLAUDE.md +213 -0
- package/core/workflow/agent.js +285 -6
- package/core/workflow/complete.js +141 -5
- package/core/workflow/reset.js +28 -21
- package/core/workflow/run.js +3 -0
- package/init.js +2 -2
- package/lib/questions-flow.js +14 -7
- package/lib/steps.js +13 -1
- package/lib/ui.js +8 -0
- 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.
|