workspace-architect 2.0.4 → 2.0.5
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 +9 -3
- package/assets-manifest.json +4510 -4482
- package/bin/cli.js +8 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -192,8 +192,10 @@ description: A guide for setting up X.
|
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
**Naming Convention**: Filenames become IDs (extensions are stripped)
|
|
195
|
-
- `assets/instructions/my-guide.md` → `instructions:my-guide`
|
|
196
|
-
- `assets/agents/my-agent.agent.md` → `agents:my-agent`
|
|
195
|
+
- `assets/instructions/my-guide.md` → ID: `instructions:my-guide`
|
|
196
|
+
- `assets/agents/my-agent.agent.md` → ID: `agents:my-agent`
|
|
197
|
+
|
|
198
|
+
**Note**: The colon format (`type:name`) is used for internal IDs in collections and manifests. When using the CLI, use the space-separated format: `npx wsa download instructions my-guide`
|
|
197
199
|
|
|
198
200
|
### Creating Collections
|
|
199
201
|
|
|
@@ -256,7 +258,11 @@ workspace-architect/
|
|
|
256
258
|
|
|
257
259
|
## Migration Guide
|
|
258
260
|
|
|
259
|
-
Migrating from `.chatmode.md` to `.agent.md
|
|
261
|
+
### Migrating from `.chatmode.md` to `.agent.md`
|
|
262
|
+
|
|
263
|
+
**Note:** This guide is for users migrating from the deprecated `.chatmode.md` format to the current `.agent.md` format.
|
|
264
|
+
|
|
265
|
+
If you have legacy `.chatmode.md` files, run:
|
|
260
266
|
|
|
261
267
|
```bash
|
|
262
268
|
mkdir -p assets/agents
|