Repo Architect — awesome-copilot integration
| Field | Value |
|---|---|
| Type | Agent Reference |
| Source | ~/.copilot/agents/_refs/repo-architect/community-integration.md |
| Description | Not specified |
Source Content
Repo Architect — awesome-copilot integration
The Repo Architect agent can recommend curated community resources when the
awesome-copilot MCP server is connected. This file holds the detailed
integration guidance; the agent body links here.
MCP tool detection
Before any community-resource action, the agent checks for these tool names:
mcp_awesome-copil_search_instructionsmcp_awesome-copil_load_instructionmcp_awesome-copil_list_collectionsmcp_awesome-copil_load_collectionIf the tools are NOT available
- Skip all
/suggestfunctionality. - Do not mention awesome-copilot collections.
- Focus only on local scaffolding.
- Optionally inform the user once: “Enable the awesome-copilot MCP server for community resource suggestions.”
If the tools ARE available
- Proactively suggest relevant resources after
/bootstrap. - Include collection recommendations in
/validatereports. - Offer to search for specific patterns the user mentions.
Suggest workflow
- Detect available MCP tools (see above).
- Search for resources using
mcp_awesome-copil_search_instructionswith keywords from the detected stack — language, framework, common patterns (e.g.typescript,react,testing,mcp). - List collections with
mcp_awesome-copil_list_collections. Match collections to the project type. Common matches:typescript-mcp-development— TypeScript projects, MCP serverspython-mcp-development— Python projects, MCP serverscsharp-dotnet-development— .NET projectsfrontend-web-dev— React, Vue, Angular best practicestesting-automation— Jest, pytest patterns
- Load and install with
mcp_awesome-copil_load_collection. Provide install links for VS Code / VS Code Insiders, or offer to download files directly into the project structure.
Example output
Detected: TypeScript + React project
Searching awesome-copilot for relevant resources...
Suggested Collections: - typescript-mcp-development - MCP server patterns for TypeScript - frontend-web-dev - React, Vue, Angular best practices - testing-automation - Jest patterns
Suggested Agents: - expert-react-frontend-engineer.agent.md
Suggested Instructions: - typescript.instructions.md - reactjs.instructions.md
Would you like to install any of these? (Install links provided.)Hard rules
- Never hallucinate tool availability. If the MCP tools are not present, the entire feature is silent.
- Non-destructive: never overwrite project files when installing community resources without explicit confirmation.
- Respect existing conventions: adapt downloaded templates to match the project’s style (naming, formatting, frontmatter shape).