workspace-architect 2.1.5 → 2.1.7

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-14T22:08:17.864Z",
3
+ "generatedAt": "2026-01-15T06:11:54.332Z",
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.",
@@ -4094,6 +4107,24 @@
4094
4107
  "license": "Complete terms in LICENSE.txt"
4095
4108
  }
4096
4109
  },
4110
+ "browser-automation": {
4111
+ "path": "assets/skills/browser-automation",
4112
+ "description": "Local Python-based browser automation toolkit using Playwright. Provides command-line tools for navigating, interacting with, and testing web applications. Supports clicking, typing, hovering, screenshots, content extraction, and JavaScript execution. Use this skill when you need to automate browser interactions, test web applications, or extract data from web pages.",
4113
+ "title": "browser-automation",
4114
+ "type": "skills",
4115
+ "files": [
4116
+ "LICENSE.txt",
4117
+ "SKILL.md",
4118
+ "examples/README.md",
4119
+ "examples/content_extraction.py",
4120
+ "examples/form_automation.py",
4121
+ "examples/interactive_testing.py",
4122
+ "scripts/browser_tools.py"
4123
+ ],
4124
+ "metadata": {
4125
+ "license": "ISC"
4126
+ }
4127
+ },
4097
4128
  "canvas-design": {
4098
4129
  "path": "assets/skills/canvas-design",
4099
4130
  "description": "Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never 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.5",
3
+ "version": "2.1.7",
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",