用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aida-core/aida-core-plugin --skill project-context命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create, validate, version, and list AIDA-managed Claude Code subagent definition files (two-phase API). Use for CRUD on agent .md definitions, routed through /aida extension management. Do NOT use to run, dispatch, or consult a subagent — this only authors and maintains the definition files.
This skill routes /aida commands to appropriate handlers - configuration, diagnostics, feedback, extension management (agent-manager, skill-manager, plugin-manager, hook-manager, claude-md-manager, permissions), expert and panel configuration (expert-registry), agent knowledge management (knowledge-sync, knowledge-curator), and session persistence (memento). This is the single entry point for all AIDA operations - the sub-skills are not directly invocable.
Create, optimize, validate, and list CLAUDE.md memory files across project, user, and plugin scopes (two-phase API), routed through /aida. Use for structured CLAUDE.md management. Do NOT use for a one-off manual edit to a single CLAUDE.md — edit that file directly.
基于 SOC 职业分类
正在显示 SKILL.md
| type | skill |
| name | project-context |
| description | Provides current project state, architecture overview, and structured metadata |
| version | 0.1.0 |
| author | aida-core |
| tags | ["project","context","architecture","metadata"] |
This skill provides comprehensive context about the current project, including its state, architecture, recent decisions, and structured metadata for programmatic access.
This skill should be invoked when you need to:
The skill uses progressive disclosure - supporting files are only loaded when the skill is invoked, keeping token usage efficient.
Current state of the project:
Technical architecture overview:
Structured data for programmatic access:
User: "What's this project about and what are we currently working on?"
Claude: *Invokes project-context skill, reads context.md*
"This is a [project description]. We're currently focused on [current focus].
Recent decisions include [decisions]..."
User: "How is this application structured?"
Claude: *Invokes project-context skill, reads architecture.md*
"The application uses [framework] with [language]. The architecture follows [patterns]..."
User: "How do I run the tests?"
Claude: *Invokes project-context skill, reads metadata.json*
"Run: npm test"
This skill's SKILL.md is always available (small token footprint), but supporting files (context.md, architecture.md, metadata.json) are only loaded when Claude determines the skill is relevant to the current conversation.
This ensures:
Team members should update these files as the project evolves:
Files are committed to version control and shared across the team.