workspace-architect 1.7.0 → 1.8.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 +7 -2
- package/assets-manifest.json +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -204,8 +204,13 @@ Create a JSON file in `assets/collections/`:
|
|
|
204
204
|
- `npm run analyze` - Analyze collections with TF-IDF/Cosine Similarity
|
|
205
205
|
- `npm run analyze -- --add` - Auto-add high-confidence matches
|
|
206
206
|
- `npm run analyze -- --remove` - Remove low-confidence items
|
|
207
|
-
-
|
|
208
|
-
- `npm run sync-
|
|
207
|
+
- Sync scripts for upstream resources:
|
|
208
|
+
- `npm run sync-agents` - Sync agents from github/awesome-copilot
|
|
209
|
+
- `npm run sync-instructions` - Sync instructions from github/awesome-copilot
|
|
210
|
+
- `npm run sync-prompts` - Sync prompts from github/awesome-copilot
|
|
211
|
+
- `npm run sync-collections` - Sync collections from github/awesome-copilot
|
|
212
|
+
- `npm run sync-skills` - Sync skills from anthropics/skills
|
|
213
|
+
- `npm run fetch-upstream` - (Deprecated) Wrapper to run all awesome-copilot sync scripts
|
|
209
214
|
- `npm run validate-skills` - Validate all synced skills
|
|
210
215
|
|
|
211
216
|
### Local Testing
|
package/assets-manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workspace-architect",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "A comprehensive library of specialized AI agents and personas for GitHub Copilot, ranging from architectural planning and specific tech stacks to advanced cognitive reasoning models.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"workspace-architect": "./bin/cli.js",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"generate-manifest": "node scripts/generate-manifest.js",
|
|
14
14
|
"prepublishOnly": "npm run generate-manifest",
|
|
15
15
|
"fetch-upstream": "node scripts/fetch-upstream-assets.js",
|
|
16
|
+
"sync-agents": "node scripts/sync-agents.js",
|
|
17
|
+
"sync-instructions": "node scripts/sync-instructions.js",
|
|
18
|
+
"sync-prompts": "node scripts/sync-prompts.js",
|
|
19
|
+
"sync-collections": "node scripts/sync-collections.js",
|
|
16
20
|
"sync-skills": "node scripts/sync-anthropic-skills.js",
|
|
17
21
|
"validate-skills": "node scripts/validate-skills.js",
|
|
18
22
|
"release": "release-it",
|