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.
$ npx -y skills add archubbuck/workspace-architect --agent claude-code
Repo: archubbuck/workspace-architect
What's inside
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.
Workspace Architect is a zero-friction CLI tool that provides curated collections of specialized agents, instructions, and prompts to supercharge your GitHub Copilot experience.
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.
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.
Stay Current - Our collections are automatically synced from trusted upstream sources like GitHub's awesome-copilot and Anthropic's skills repository, ensuring you always have access to the latest and greatest community contributions.
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.
npx - no global installation neededNo installation required! Use directly with npx:
npx workspace-architect list
# or use the shorter alias
npx wsa list
Or install globally if you prefer:
npm install -g workspace-architect
List all available assets:
npx workspace-architect list
# or use the shorter alias
npx wsa list
Download a collection for web development:
npx workspace-architect download collections web-frontend-development
# or
npx wsa download collections web-frontend-development
Download a specific agent:
npx workspace-architect download agents azure-architect
# or
npx wsa download agents azure-architect
View all available assets or filter by type:
# List all assets
npx workspace-architect list
# or
npx wsa list
# List specific types
npx workspace-architect list instructions
npx wsa list agents
npx wsa list prompts
npx wsa list skills
npx wsa list hooks
npx wsa list plugins
npx wsa list collections
Download assets to your project (default location: .github/<type>/):
npx workspace-architect download <type> <name>
# or
npx wsa download <type> <name>
Examples:
# Download an instruction
npx wsa download instructions reactjs
# Download an agent
npx wsa download agents planner
# Download a skill
npx wsa download skills example-planner
# Download a hook
npx wsa download hooks governance-audit
# Download a plugin
npx wsa download plugins awesome-copilot
# Download a complete collection
npx wsa download collections devops-essentials
-d, --dry-run - Preview what will be downloaded without writing files-f, --force - Overwrite existing files without confirmation-o, --output <path> - Specify custom output directoryWorkspace Architect provides seven types of assets:
| Type | Description | Location |
|---|---|---|
| Instructions | System-level guidelines for Copilot context | .github/copilot-instructions.md |
| Prompts | Reusable templates for specific tasks | .github/prompts/ |
| Agents | Specialized personas defining Copilot behavior | .github/agents/ |
| Skills | Claude Skills with templates, scripts, and resources | .github/skills/ |
| Hooks | Event-driven scripts that run during Copilot sessions | .github/hooks/ |
| Plugins | Bundled collections of agents, skills, and commands | .github/plugins/ |
| Collections | Bundled assets for specific domains or workflows | Multiple locations |
Skills are an emerging standard for packaging AI agent capabilities. Compatible with Claude, GitHub Copilot, and other AI platforms, Skills are folder-based assets containing:
Skills follow the open Agent Skills specification and work across multiple AI platforms.
Example:
# Download a Skill
npx workspace-architect download skills example-planner
# List all Skills
npx workspace-architect list skills
For more information, see Skills User Guide and Skills vs Agents.
Hooks are event-driven scripts that execute automatically during GitHub Copilot coding agent sessions. They enable:
Hooks are directory-based assets containing:
Example:
# Download a Hook
npx workspace-architect download hooks governance-audit
# List all Hooks
npx workspace-architect list hooks
Available Hook Events:
sessionStart - Triggered when a coding session beginssessionEnd - Triggered when a coding session endsuserPromptSubmitted - Triggered when a user submits a promptPlugins are bundled packages that extend GitHub Copilot with curated collections of agents, skills, and commands for specific domains or workflows. Each plugin provides:
Plugins are directory-based assets containing:
Example:
# Download a Plugin
npx workspace-architect download plugins awesome-copilot
# List all Plugins
npx workspace-architect list plugins
See ROADMAP.md for our development timeline, upcoming features, and current capabilities.
We welcome contributions! Whether you want to add a new agent, improve existing prompts, or curate a collection, here's how you can help.
Clone the repository:
git clone https://github.com/archubbuck/workspace-architect.git
cd workspace-architect
Install dependencies:
npm install
Test your changes:
node bin/cli.js list
Create a markdown file in the appropriate directory with optional YAML frontmatter:
---
title: My Custom Guide
description: A guide for setting up X.
---
# Content starts here...
Naming Convention: Filenames become IDs (extensions are stripped)
assets/instructions/my-guide.md → ID: instructions:my-guideassets/agents/my-agent.agent.md → ID: agents:my-agentNote: The colon format (type:name) is used for internal IDs in collections and manifests. When using the CLI, use the space-separated format: npx wsa download instructions my-guide
Create a JSON file in assets/collections/:
{
"name": "My Collection",
"description": "A collection for X development.",
"items": {
"instructions": ["reactjs"],
"prompts": ["code-review"],
"agents": ["expert-architect"]
}
}
Collection Format: Collections use a nested object structure where items are grouped by type. Each type key contains an array of asset names (without the type prefix).
npm run generate-manifest - Generate assets-manifest.json (required before PRs)npm run migrate-collections - Migrate collections from old flat array format to new nested formatnpm run analyze - Analyze collections with TF-IDF/Cosine Similarity
npm run analyze -- --add - Auto-add high-confidence matchesnpm run analyze -- --remove - Remove low-confidence itemsnpm run sync-agents - Sync agents from github/awesome-copilotnpm run sync-instructions - Sync instructions from github/awesome-copilotnpm run sync-skills - Sync skills from anthropics/skillsnpm run sync-hooks - Sync hooks from github/awesome-copilotnpm run sync-plugins - Sync plugins from github/awesome-copilotnpm run validate-skills - Validate all synced skillsSync scripts require a JSON configuration file for controlling which files are synced from upstream repositories using glob patterns. Create an upstream.config.json file in the project root:
{
"upstreamRepos": [
{
"repo": "github/awesome-copilot",
"syncPatterns": ["agents/**/*.md", "collections/**/*.yml"]
},
{
"repo": "anthropics/skills",
"syncPatterns": ["skills/**/SKILL.md"]
}
]
}
Note: The configuration file is required. Sync scripts will fail if the file doesn't exist or doesn't contain configuration for the repository being synced.
See Upstream Configuration Guide for detailed documentation, examples, and best practices.
Use Verdaccio for end-to-end testing:
# Terminal 1: Start local registry
npm run start:registry
# Terminal 2: Publish and test
npm run publish:local
npx --registry http://localhost:4873 workspace-architect list
npx --registry http://localhost:4873 wsa list
Showing a partial view of a very large repo.
FAQ
workspace-architect is a Claude Code plugin with 32 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes suggest-awesome-github-copilot-agents, suggest-awesome-github-copilot-instructions, suggest-awesome-github-copilot-prompts. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it