workspace-architect 2.1.4 → 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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "2.0.0",
3
- "generatedAt": "2026-01-13T23:08:05.712Z",
3
+ "generatedAt": "2026-01-15T05:12:31.227Z",
4
4
  "assets": {
5
5
  "agents": {
6
6
  "4.1-Beast": {
@@ -1187,6 +1187,12 @@
1187
1187
  "title": "go",
1188
1188
  "type": "instructions"
1189
1189
  },
1190
+ "html-css-style-color-guide": {
1191
+ "path": "assets/instructions/html-css-style-color-guide.instructions.md",
1192
+ "description": "Color usage guidelines and styling rules for HTML elements to ensure accessible, professional designs.",
1193
+ "title": "html-css-style-color-guide",
1194
+ "type": "instructions"
1195
+ },
1190
1196
  "instructions": {
1191
1197
  "path": "assets/instructions/instructions.instructions.md",
1192
1198
  "description": "Guidelines for creating high-quality custom instruction files for GitHub Copilot",
@@ -2457,7 +2463,7 @@
2457
2463
  },
2458
2464
  "suggest-awesome-github-copilot-agents": {
2459
2465
  "path": "assets/prompts/suggest-awesome-github-copilot-agents.prompt.md",
2460
- "description": "Suggest relevant GitHub Copilot Custom Agents files from the awesome-copilot repository based on current repository context and chat history, avoiding duplicates with existing custom agents in this repository.",
2466
+ "description": "Suggest relevant GitHub Copilot Custom Agents files from the awesome-copilot repository based on current repository context and chat history, avoiding duplicates with existing custom agents in this repository, and identifying outdated agents that need updates.",
2461
2467
  "title": "suggest-awesome-github-copilot-agents",
2462
2468
  "type": "prompts"
2463
2469
  },
@@ -2571,6 +2577,13 @@
2571
2577
  }
2572
2578
  },
2573
2579
  "collections": {
2580
+ ".upstream-sync": {
2581
+ "path": "assets/collections/.upstream-sync.json",
2582
+ "description": "",
2583
+ "title": ".upstream-sync",
2584
+ "type": "collections",
2585
+ "items": []
2586
+ },
2574
2587
  "ai-prompt-engineering": {
2575
2588
  "path": "assets/collections/ai-prompt-engineering.json",
2576
2589
  "description": "Resources for LLM prompts, Copilot instructions, and AI agent development.",
@@ -4060,6 +4073,12 @@
4060
4073
  }
4061
4074
  },
4062
4075
  "skills": {
4076
+ ".upstream-sync": {
4077
+ "path": "assets/skills/.upstream-sync.json",
4078
+ "description": "",
4079
+ "title": "",
4080
+ "type": "skills"
4081
+ },
4063
4082
  "algorithmic-art": {
4064
4083
  "path": "assets/skills/algorithmic-art",
4065
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.4",
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",