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.
- 🎯 Specialized Agents: Pre-built personas like "Azure Architect", "React Expert", and more
- 📦 Curated Collections: Download complete suites for domains like Web Development, DevOps, or AI Engineering
- ⚡ Zero Installation: Use directly with
npx- no global installation needed - 🪶 Lightweight: Simple Markdown files, no heavy dependencies or complex servers
- 🔄 Algorithmic Curation: TF-IDF/Cosine Similarity engine ensures collections stay relevant
- 🌍 Universal: Works with any project structure
No installation required! Use directly with npx:
npx workspace-architect list
# or use the shorter alias
npx wsa listOr install globally if you prefer:
npm install -g workspace-architectList all available assets:
npx workspace-architect list
# or use the shorter alias
npx wsa listDownload a collection for web development:
npx workspace-architect download collections web-frontend-development
# or
npx wsa download collections web-frontend-developmentDownload a specific agent:
npx workspace-architect download agents azure-architect
# or
npx wsa download agents azure-architectView 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 collectionsDownload 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 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 directory
Workspace Architect provides five 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/ |
| 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:
- SKILL.md: Main instructions with metadata
- Templates: Document or code templates
- Scripts: Automation scripts (downloaded but not executed)
- Resources: Reference materials and examples
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 skillsFor more information, see Skills User Guide and Skills vs Agents.
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-agent
Note: 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- Generateassets-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 Similaritynpm run analyze -- --add- Auto-add high-confidence matchesnpm run analyze -- --remove- Remove low-confidence items
- Sync scripts for upstream resources:
npm run sync-agents- Sync agents from github/awesome-copilotnpm run sync-instructions- Sync instructions from github/awesome-copilotnpm run sync-prompts- Sync prompts from github/awesome-copilotnpm run sync-collections- Sync collections from github/awesome-copilotnpm run sync-skills- Sync skills from anthropics/skills
npm run validate-skills- Validate all synced skills
Sync 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 listworkspace-architect/
├── assets/
│ ├── agents/ # Agent definitions (.agent.md)
│ ├── collections/ # Collection definitions (.json)
│ ├── instructions/ # Copilot instructions (.md)
│ └── prompts/ # Reusable prompts (.md)
├── bin/
│ └── cli.js # CLI entry point
└── scripts/ # Maintenance utilities
Note: This guide is for users migrating from the deprecated .chatmode.md format to the current .agent.md format.
If you have legacy .chatmode.md files, run:
mkdir -p assets/agents
find . -name '*.chatmode.md' -exec bash -c 'mv "$1" "assets/agents/$(basename \"$1\" .chatmode.md).agent.md"' -- {} \;ISC
- npm Package
- GitHub Repository
- Issue Tracker
- Roadmap
- Release Workflows - Documentation for maintainers on release and deployment