workspace-architect 2.1.5 → 2.1.6
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 -1
- package/assets-manifest.json +14 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -228,7 +228,6 @@ Create a JSON file in `assets/collections/`:
|
|
|
228
228
|
- `npm run sync-prompts` - Sync prompts from github/awesome-copilot
|
|
229
229
|
- `npm run sync-collections` - Sync collections from github/awesome-copilot
|
|
230
230
|
- `npm run sync-skills` - Sync skills from anthropics/skills
|
|
231
|
-
- `npm run fetch-upstream` - (Deprecated) Wrapper to run all awesome-copilot sync scripts
|
|
232
231
|
- `npm run validate-skills` - Validate all synced skills
|
|
233
232
|
|
|
234
233
|
### Local Testing
|
package/assets-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2.0.0",
|
|
3
|
-
"generatedAt": "2026-01-
|
|
3
|
+
"generatedAt": "2026-01-15T05:12:31.227Z",
|
|
4
4
|
"assets": {
|
|
5
5
|
"agents": {
|
|
6
6
|
"4.1-Beast": {
|
|
@@ -2577,6 +2577,13 @@
|
|
|
2577
2577
|
}
|
|
2578
2578
|
},
|
|
2579
2579
|
"collections": {
|
|
2580
|
+
".upstream-sync": {
|
|
2581
|
+
"path": "assets/collections/.upstream-sync.json",
|
|
2582
|
+
"description": "",
|
|
2583
|
+
"title": ".upstream-sync",
|
|
2584
|
+
"type": "collections",
|
|
2585
|
+
"items": []
|
|
2586
|
+
},
|
|
2580
2587
|
"ai-prompt-engineering": {
|
|
2581
2588
|
"path": "assets/collections/ai-prompt-engineering.json",
|
|
2582
2589
|
"description": "Resources for LLM prompts, Copilot instructions, and AI agent development.",
|
|
@@ -4066,6 +4073,12 @@
|
|
|
4066
4073
|
}
|
|
4067
4074
|
},
|
|
4068
4075
|
"skills": {
|
|
4076
|
+
".upstream-sync": {
|
|
4077
|
+
"path": "assets/skills/.upstream-sync.json",
|
|
4078
|
+
"description": "",
|
|
4079
|
+
"title": "",
|
|
4080
|
+
"type": "skills"
|
|
4081
|
+
},
|
|
4069
4082
|
"algorithmic-art": {
|
|
4070
4083
|
"path": "assets/skills/algorithmic-art",
|
|
4071
4084
|
"description": "Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workspace-architect",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
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,7 +13,6 @@
|
|
|
13
13
|
"generate-manifest": "node scripts/generate-manifest.js",
|
|
14
14
|
"migrate-collections": "node scripts/migrate-collections-format.js",
|
|
15
15
|
"prepublishOnly": "npm run generate-manifest",
|
|
16
|
-
"fetch-upstream": "node scripts/fetch-upstream-assets.js",
|
|
17
16
|
"sync-agents": "node scripts/sync-agents.js",
|
|
18
17
|
"sync-instructions": "node scripts/sync-instructions.js",
|
|
19
18
|
"sync-prompts": "node scripts/sync-prompts.js",
|