You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+69Lines changed: 69 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,75 @@ plugins/spec/
106
106
└── release.json
107
107
```
108
108
109
+
### Generate Agents (Simplified)
110
+
111
+
Generate platform-specific agents from a multi-agent-spec format directory:
112
+
113
+
```bash
114
+
assistantkit generate agents
115
+
```
116
+
117
+
This is a simplified command that reads from `specs/agents/*.md` (YAML frontmatter + markdown body) and uses `specs/deployments/<target>.json` to determine output locations.
118
+
119
+
#### Flags
120
+
121
+
| Flag | Default | Description |
122
+
|------|---------|-------------|
123
+
|`--specs`|`specs`| Path to specs directory containing agents/ and deployments/ |
124
+
|`--target`|`local`| Deployment target (looks for `specs/deployments/<target>.json`) |
125
+
|`--output`|`.`| Output base directory (repo root) for relative paths |
126
+
127
+
#### Example
128
+
129
+
```bash
130
+
# Generate using defaults (target=local, output=current directory)
0 commit comments