Synaptic SkillsSynapticSkills
MarketplaceSkill GraphCriar SkillMCP ServerPlataformaEnterprise
v0.1.0-beta
Voltar ao Marketplace
DevelopmentMédio

Copilot Spaces

porgithub·github· v1.0.0 · atualizado em 2026-04-10
82
Score

Use Copilot Spaces to provide project-specific context to conversations. Use this skill when users mention a "Copilot space", want to load context from a shared knowledge base, discover available spaces, or ask questions grounded in curated project documentation, code, and instructions.

copilot-spacesproject-contextknowledge-basegithubdocumentationworkflowteam-collaboration
0Stars
0Forks
0Usos
Fork

Documento do Skill

SKILL.mdcopilot-spaces/workflow
### 1. Discover Spaces
When a user asks what spaces are available or you need to find the right space:
```
Call mcp__github__list_copilot_spaces
```
This returns all spaces the user can access, each with a `name` and `owner_login`. Present relevant matches to the user.
To filter for a specific user's spaces, match `owner_login` against the username (e.g., "show me my spaces").
### 2. Load a Space
When a user names a specific space or you've identified the right one:
```
Call mcp__github__get_copilot_space with:
owner: "org-or-user" (the owner_login from the list)
name: "Space Name" (exact space name, case-sensitive)
```
This returns the space's full content: attached documentation, code context, custom instructions, and any other curated materials. Use this context to inform your responses.
### 3. Follow the Breadcrumbs
Space content often references external resources: GitHub issues, dashboards, repos, discussions, or other tools. Proactively fetch these using other MCP tools to gather complete context. For example:
A space references an initiative tracking issue. Use `issue_read` to get the latest comments.
A space links to a project board. Use project tools to check current status.
A space mentions a repo's masterplan. Use `get_file_contents` to read it.
### 4. Answer or Execute
Once loaded, use the space content based on what it contains:
**If the space contains reference material** (docs, code, standards):
Answer questions about the project's architecture, patterns, or standards
Generate code that follows the team's conventions
Debug issues using project-specific knowledge
**If the space contains workflow instructions** (templates, step-by-step processes):
Follow the workflow as defined, step by step
Gather data from the sources the workflow specifies
Produce output in the format the workflow defines
Show progress after each step so the user can steer
### 5. Manage Spaces (via `gh api`)
When a user wants to create, update, or delete a space, use `gh api`. First, find the space number from the list endpoint.
**Update a space's instructions:**
```bash
gh api users/{username}/copilot-spaces/{number} \
-X PUT \
-f general_instructions="New instructions here"
```
**Update name, description, or instructions together:**
```bash
gh api users/{username}/copilot-spaces/{number} \
-X PUT \
-f name="Updated Name" \
-f description="Updated description" \
-f general_instructions="Updated instructions"
```
**Create a new space:**
```bash
gh api users/{username}/copilot-spaces \
-X POST \
-f name="My New Space" \
-f general_instructions="Help me with..." \
-f visibility="private"
```
**Attach resources (replaces entire resource list):**
```json
{
"resources_attributes": [
{ "resource_type": "free_text", "metadata": { "name": "Notes", "text": "Content here" } },
{ "resource_type": "github_issue", "metadata": { "repository_id": 12345, "number": 42 } },
{ "resource_type": "github_file", "metadata": { "repository_id": 12345, "file_path": "docs/guide.md" } }
]
}
```
**Delete a space:**
```bash
gh api users/{username}/copilot-spaces/{number} -X DELETE
```
**Updatable fields:** `name`, `description`, `general_instructions`, `icon_type`, `icon_color`, `visibility` ("private"/"public"), `base_role` ("no_access"/"reader"), `resources_attributes`

Telemetria de Agentes

Execuções
0
total
Taxa de Sucesso
0%
últimos 30d
Latência Média
0.0s
p50
Alucinação
0.0%
detecção
Tokens Entrada
0
avg 0/exec
Tokens Saída
0
avg 0/exec

Uso por Plataforma

Skills Relacionados

Compõe com🚀 Copilot CLI Quick Start — Your Friendly Terminal Tutor
80%
Hebbian Synapse
Composite0.800
w = 0.3·α + 0.5·β + 0.2·γ
82
Compõe comCopilot Usage Metrics
80%
Hebbian Synapse
Composite0.800
w = 0.3·α + 0.5·β + 0.2·γ
82
Compõe com ←GitHub Copilot SDK
80%
Hebbian Synapse
Composite0.800
w = 0.3·α + 0.5·β + 0.2·γ
81
Similar aComprehensive Project Architecture Blueprint Generator
40%
Hebbian Synapse
Composite0.400
w = 0.3·α + 0.5·β + 0.2·γ
82
Similar aEpic Product Requirements Document (PRD) Prompt
40%
Hebbian Synapse
Composite0.400
w = 0.3·α + 0.5·β + 0.2·γ
78
Similar aCode Exemplars Blueprint Generator
40%
Hebbian Synapse
Composite0.400
w = 0.3·α + 0.5·β + 0.2·γ
83
Similar a ←Memory Keeper
40%
Hebbian Synapse
Composite0.400
w = 0.3·α + 0.5·β + 0.2·γ
78
Co-executedCopilot Usage Metrics
50%
Hebbian Synapse
Composite0.496
w = 0.3·α + 0.5·β + 0.2·γ
82
Co-executed ←GitHub Copilot SDK
50%
Hebbian Synapse
Composite0.496
w = 0.3·α + 0.5·β + 0.2·γ
81

Árvore do Skill

Copilot Spaces
copilot-spaces
Fases Cognitivas5
1.SENSE
2.CONTEXTUALIZE
3.RECOMMEND
4.ACT
5.REFLECT
Triggers10
load a copilot spacewhat copilot spaces are available?find a space for Xaccess project documentationuse a shared knowledge baseget context from a copilot spacemanage copilot spacescreate a new copilot spaceupdate a copilot spacedelete a copilot space

Avaliar este Skill

Score Breakdown

⭐Avaliação Humana0%
🤖Sucesso de Agentes0%
🕐Atualidade100%
🔗Saúde de Dependências100%
🕸️Centralidade no Grafo0%
🛡️Segurança49%
CompositeScore = α·Humano + β·Agente + γ·Recência + δ·Deps + ε·Centralidade + ζ·Segurança

Instalação

$ synaptic mcp download copilot-spaces
$ synaptic skills detail copilot-spaces
$ synaptic skills live copilot-spaces

Links

GitHub Repository