workspace-architect 1.7.0 → 2.0.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/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ ISC License
2
+
3
+ Copyright (c) 2025 Adam Chubbuck
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,25 @@
1
1
  # Workspace Architect
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/workspace-architect.svg)](https://www.npmjs.com/package/workspace-architect)
4
+ [![npm downloads](https://img.shields.io/npm/dm/workspace-architect.svg)](https://www.npmjs.com/package/workspace-architect)
4
5
  [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
6
+ [![GitHub stars](https://img.shields.io/github/stars/archubbuck/workspace-architect.svg)](https://github.com/archubbuck/workspace-architect/stargazers)
7
+ [![GitHub issues](https://img.shields.io/github/issues/archubbuck/workspace-architect.svg)](https://github.com/archubbuck/workspace-architect/issues)
5
8
 
6
9
  > 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.
7
10
 
8
11
  Workspace Architect is a zero-friction CLI tool that provides curated collections of specialized agents, instructions, and prompts to supercharge your GitHub Copilot experience.
9
12
 
13
+ ## Why Workspace Architect?
14
+
15
+ **Maximize GitHub Copilot's Potential** - GitHub Copilot is powerful, but it's even better with context. Workspace Architect provides 400+ expert-crafted agents, instructions, and prompts that give Copilot the specialized knowledge it needs for your specific tech stack and domain.
16
+
17
+ **Save Time, Start Faster** - Instead of crafting custom instructions from scratch, instantly download battle-tested configurations for React, Azure, DevOps, AI Engineering, and dozens of other domains. Get productive in seconds with `npx workspace-architect`.
18
+
19
+ **Stay Current** - Our collections are automatically synced from trusted upstream sources like GitHub's [awesome-copilot](https://github.com/github/awesome-copilot) and Anthropic's [skills repository](https://github.com/anthropics/skills), ensuring you always have access to the latest and greatest community contributions.
20
+
21
+ **Universal Compatibility** - Works with GitHub Copilot, Claude, and other AI assistants. Simple markdown files mean no vendor lock-in, no complex setup, and compatibility across your entire development workflow.
22
+
10
23
  ## Features
11
24
 
12
25
  - 🎯 **Specialized Agents**: Pre-built personas like "Azure Architect", "React Expert", and more
@@ -45,17 +58,17 @@ npx wsa list
45
58
  Download a collection for web development:
46
59
 
47
60
  ```bash
48
- npx workspace-architect download collections:web-frontend-development
61
+ npx workspace-architect download collections web-frontend-development
49
62
  # or
50
- npx wsa download collections:web-frontend-development
63
+ npx wsa download collections web-frontend-development
51
64
  ```
52
65
 
53
66
  Download a specific agent:
54
67
 
55
68
  ```bash
56
- npx workspace-architect download agents:azure-architect
69
+ npx workspace-architect download agents azure-architect
57
70
  # or
58
- npx wsa download agents:azure-architect
71
+ npx wsa download agents azure-architect
59
72
  ```
60
73
 
61
74
  ## Usage
@@ -82,22 +95,22 @@ npx wsa list collections
82
95
  Download assets to your project (default location: `.github/<type>/`):
83
96
 
84
97
  ```bash
85
- npx workspace-architect download <type>:<name>
98
+ npx workspace-architect download <type> <name>
86
99
  # or
87
- npx wsa download <type>:<name>
100
+ npx wsa download <type> <name>
88
101
  ```
89
102
 
90
103
  **Examples:**
91
104
 
92
105
  ```bash
93
106
  # Download an instruction
94
- npx wsa download instructions:reactjs
107
+ npx wsa download instructions reactjs
95
108
 
96
109
  # Download an agent
97
- npx wsa download agents:planner
110
+ npx wsa download agents planner
98
111
 
99
112
  # Download a complete collection
100
- npx wsa download collections:devops-essentials
113
+ npx wsa download collections devops-essentials
101
114
  ```
102
115
 
103
116
  ### CLI Options
@@ -132,7 +145,7 @@ Skills follow the [open Agent Skills specification](https://agentskills.io/) and
132
145
  **Example:**
133
146
  ```bash
134
147
  # Download a Skill
135
- npx workspace-architect download skills:example-planner
148
+ npx workspace-architect download skills example-planner
136
149
 
137
150
  # List all Skills
138
151
  npx workspace-architect list skills
@@ -204,8 +217,13 @@ Create a JSON file in `assets/collections/`:
204
217
  - `npm run analyze` - Analyze collections with TF-IDF/Cosine Similarity
205
218
  - `npm run analyze -- --add` - Auto-add high-confidence matches
206
219
  - `npm run analyze -- --remove` - Remove low-confidence items
207
- - `npm run fetch-upstream` - Sync agents, instructions, prompts, and collections from upstream repository
208
- - `npm run sync-skills` - Sync skills from anthropics/skills repository
220
+ - Sync scripts for upstream resources:
221
+ - `npm run sync-agents` - Sync agents from github/awesome-copilot
222
+ - `npm run sync-instructions` - Sync instructions from github/awesome-copilot
223
+ - `npm run sync-prompts` - Sync prompts from github/awesome-copilot
224
+ - `npm run sync-collections` - Sync collections from github/awesome-copilot
225
+ - `npm run sync-skills` - Sync skills from anthropics/skills
226
+ - `npm run fetch-upstream` - (Deprecated) Wrapper to run all awesome-copilot sync scripts
209
227
  - `npm run validate-skills` - Validate all synced skills
210
228
 
211
229
  ### Local Testing
@@ -255,3 +273,4 @@ ISC
255
273
  - [GitHub Repository](https://github.com/archubbuck/workspace-architect)
256
274
  - [Issue Tracker](https://github.com/archubbuck/workspace-architect/issues)
257
275
  - [Roadmap](ROADMAP.md)
276
+ - [Release Workflows](docs/release-workflows.md) - Documentation for maintainers on release and deployment
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.1.0",
3
- "generatedAt": "2026-01-08T01:49:58.572Z",
3
+ "generatedAt": "2026-01-08T20:02:41.717Z",
4
4
  "assets": {
5
5
  "agents:4.1-Beast": {
6
6
  "path": "assets/agents/4.1-Beast.agent.md",
package/bin/cli.js CHANGED
@@ -41,14 +41,33 @@ program
41
41
  });
42
42
 
43
43
  program
44
- .command('download <id>')
45
- .description('Download an asset (format: type:name)')
44
+ .command('download <type> [name]')
45
+ .description('Download an asset by type and name')
46
46
  .option('-d, --dry-run', 'Simulate the download without writing files')
47
47
  .option('-f, --force', 'Overwrite existing files without asking')
48
48
  .option('-o, --output <path>', 'Specify the output path')
49
- .action(async (id, options) => {
49
+ .action(async (type, name, options) => {
50
50
  try {
51
- await downloadAsset(id, options);
51
+ // Support both new format (type name) and legacy format (type:name)
52
+ if (!name && type.includes(':')) {
53
+ // Legacy format: type:name - warn user to use new format
54
+ const [assetType, assetName] = type.split(':');
55
+
56
+ // Detect which command was used (workspace-architect or wsa)
57
+ const scriptPath = process.argv[1] || '';
58
+ const commandName = scriptPath.includes('/wsa') || scriptPath.endsWith('wsa') ? 'wsa' : 'workspace-architect';
59
+
60
+ console.log(chalk.yellow(`⚠️ Deprecation Warning: The format '${type}' is deprecated.`));
61
+ console.log(chalk.yellow(` Please use: npx ${commandName} download ${assetType} ${assetName}`));
62
+ console.log('');
63
+ await downloadAsset(type, options);
64
+ } else if (name) {
65
+ // New format: type name
66
+ const id = `${type}:${name}`;
67
+ await downloadAsset(id, options);
68
+ } else {
69
+ throw new Error('Invalid format. Use: download <type> <name>');
70
+ }
52
71
  } catch (error) {
53
72
  console.error(chalk.red('Error downloading asset:'), error.message);
54
73
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workspace-architect",
3
- "version": "1.7.0",
3
+ "version": "2.0.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",
@@ -8,11 +8,15 @@
8
8
  },
9
9
  "scripts": {
10
10
  "start:registry": "verdaccio --config verdaccio/config.yaml",
11
- "test:local": "node bin/cli.js list && node bin/cli.js download instructions:basic-setup --dry-run",
11
+ "test:local": "node bin/cli.js list && node bin/cli.js download instructions a11y --dry-run",
12
12
  "analyze": "node scripts/analyze-collections.js",
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",
@@ -25,18 +29,31 @@
25
29
  "LICENSE"
26
30
  ],
27
31
  "keywords": [
28
- "copilot",
29
- "agents",
30
- "personas",
32
+ "github-copilot",
33
+ "copilot-agents",
34
+ "ai-agents",
35
+ "copilot-instructions",
36
+ "copilot-chat",
37
+ "chatmodes",
38
+ "ai-personas",
31
39
  "prompts",
40
+ "prompt-engineering",
41
+ "developer-tools",
42
+ "cli-tool",
43
+ "npx",
44
+ "code-assistant",
32
45
  "ai-assistant",
46
+ "agentic-workflow",
47
+ "llm",
48
+ "claude-skills",
49
+ "vscode",
33
50
  "architecture",
34
- "planning",
35
- "developer-tools",
36
- "workspace-architect",
51
+ "devops",
37
52
  "react",
38
53
  "azure",
39
- "agentic-workflow"
54
+ "typescript",
55
+ "code-generation",
56
+ "productivity"
40
57
  ],
41
58
  "repository": {
42
59
  "type": "git",
@@ -46,7 +63,7 @@
46
63
  "url": "https://github.com/archubbuck/workspace-architect/issues"
47
64
  },
48
65
  "homepage": "https://github.com/archubbuck/workspace-architect#readme",
49
- "author": "",
66
+ "author": "Adam Chubbuck <adam.chubbuck@gmail.com> (https://github.com/archubbuck)",
50
67
  "license": "ISC",
51
68
  "dependencies": {
52
69
  "chalk": "^5.3.0",