用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fabioc-aloha/ChessCoach --skill user-config-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| type | skill |
| lifecycle | stable |
| inheritance | inheritable |
| name | user-config-manager |
| description | Manage VS Code's global AI configuration — user memories, user prompts, and MCP servers |
| tier | standard |
| applyTo | **/*memory*,**/*agent*,**/*prompt*,**/*mcp*,**/*user-config* |
| currency | 2026-04-22T00:00:00.000Z |
Audit, organize, and optimize the user's global VS Code AI configuration ecosystem.
This skill manages user-level AI customization files.
VS Code user data folder:
%APPDATA%/Code/User/~/Library/Application Support/Code/User/~/.config/Code/User/| Component | Path | Purpose |
|---|---|---|
| User Memories | <USER_DATA>/globalStorage/github.copilot-chat/memory-tool/memories/ | Cross-workspace knowledge |
| User Prompts | <USER_DATA>/prompts/*.prompt.md | Reusable workflows |
| MCP Config | <USER_DATA>/mcp.json (access via MCP: Open User Configuration) | External tool servers |
Note: Workspace-level agents and instructions live in .github/agents/ and .github/instructions/. VS Code also supports user-level ~/.copilot/agents/ and ~/.copilot/instructions/ but Alex does not deploy content there — all Alex cognitive files are workspace-scoped via .github/.
Read all user config files:
# User memories
memory view /memories/
# Custom agents (list globalStorage directory)
# Check for *-agent/ directories
# User prompts
# List %APPDATA%/Code/User/prompts/
# MCP config
# Read %APPDATA%/Code/User/mcp.json
For each memory file, verify content belongs at user level:
| Content | Belongs In | Action |
|---|---|---|
| Identity (name, role) | /memories/user-info.md | Keep |
| Cross-project patterns | /memories/patterns.md | Keep |
| Project-specific facts | Workspace .github/ or /memories/repo/ | Flag for move |
| Personal non-dev info | Consider separate file or removal | Flag |
| Secrets/tokens | SecretStorage | DELETE immediately |
3-Workspace Test: Content must be useful in 3+ different workspaces.
For each user prompt in <USER_DATA>/prompts/:
.github/prompts/?For each MCP server in mcp.json:
# User Config Health Report
**Date**: [Date]
**User**: [Name from user-info.md]
## Summary
| Component | Files | Issues | Health |
|-----------|-------|--------|--------|
| Memories | N | N | 🟢/🟡/🔴 |
| Prompts | N | N | 🟢/🟡/🔴 |
| MCP Servers | N | N | 🟢/🟡/🔴 |
## Issues Found
### Critical
- [List critical issues]
### Warnings
- [List warnings]
### Recommendations
- [List optimization suggestions]
## Actions Taken
- [List any auto-fixes applied]
---
name: AgentName
description: What this agent specializes in
argument-hint: What users should provide when invoking
model: claude-sonnet-4
target: vscode
user-invocable: true
disable-model-invocation: false
tools: ['search', 'read', 'web', 'vscode/memory']
agents: []
handoffs: []
hooks: {}
---
You are [AGENT NAME], a specialized assistant that [PURPOSE].
## Core Responsibilities
- Responsibility 1
- Responsibility 2
## Rules
- Rule 1: Never do X
- Rule 2: Always do Y
Use #tool:web/fetch to reference tools inline.
## Output Format
[Describe expected output structure]
# User Memory
## Identity
- Name, role, and professional context
- Communication preferences (formality, length)
## Writing Style
- Formatting preferences (em dashes, lists)
- Terminology preferences
## Tool Preferences
- CLI tool preferences (npm vs pnpm)
- Diagram tool preferences (Mermaid settings)
## Workflow
- Git habits (commit frequency, branch naming)
- Review preferences
## Cross-Workspace Access
- MCP server usage patterns
- Authentication patterns
{
"tool-set-name": {
"tools": ["tool1", "tool2", "tool3"],
"description": "Brief description of what these tools do together",
"icon": "appropriate-icon-name"
}
}
| Skill | Integration Point |
|---|---|
memory-curation | Call for deep memory audit |
dream-state | Runs user config check in Phase 5 |
health-pulse | Reports user config metrics |
This skill does NOT manage:
.github/ brain files (that's brain-qa)