allagents 0.26.5 → 0.29.0
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 +0 -3
- package/dist/index.js +1099 -1075
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -343,10 +343,8 @@ Marketplaces contain multiple plugins:
|
|
|
343
343
|
my-marketplace/
|
|
344
344
|
├── plugins/
|
|
345
345
|
│ ├── code-review/
|
|
346
|
-
│ │ ├── plugin.json
|
|
347
346
|
│ │ └── skills/
|
|
348
347
|
│ └── debugging/
|
|
349
|
-
│ ├── plugin.json
|
|
350
348
|
│ └── skills/
|
|
351
349
|
└── README.md
|
|
352
350
|
```
|
|
@@ -357,7 +355,6 @@ Each plugin follows this structure:
|
|
|
357
355
|
|
|
358
356
|
```
|
|
359
357
|
my-plugin/
|
|
360
|
-
├── plugin.json # Plugin metadata
|
|
361
358
|
├── skills/ # Skill directories with SKILL.md (all clients)
|
|
362
359
|
│ └── debugging/
|
|
363
360
|
│ └── SKILL.md
|