Stats
Actions
Tags
From mission-spec
Synthesizes Mission Spec assets into a project context prompt for AI agents. Triggered by requests like "give me context", "project summary", "new agent briefing".
How this skill is triggered — by the user, by Claude, or both
Slash command
/mission-spec:ms-contextThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
[English](SKILL.md) | [한국어](SKILL.ko.md) | [中文](SKILL.zh.md)
mission.yaml and extracts goal, constraints, and completion criteria.design_refs if available.mission-history.yaml..mission/decisions/MDR-*.md..mission/architecture/ARCHITECTURE_CURRENT.yaml..mission/interfaces/API_REGISTRY.yaml.node -e "
import { generateContext } from '${CLAUDE_PLUGIN_ROOT}/dist/commands/context.js';
const c = generateContext('.');
console.log(c.markdown);
"
# Project Context
## Mission: Mission Title
**Goal:** Mission goal
**Version:** 1.7.0
### Constraints
- Constraint 1
### Done When
- Completion criterion 1
## Design References
- **architecture:** `docs/internal/ARCHITECTURE.md`
## Evolution Summary
**Current Phase:** architecture-assetization — Architecture knowledge assetization
**Total Revisions:** 7
## Key Decisions (MDR)
- **MDR-001-task-contract-only.md:** MDR-001: Task Contract Only
## Architecture
| Module | Path | Responsibility | Depends On |
| ------ | -------------------- | --------------------- | ---------- |
| parser | `src/core/parser.ts` | YAML parse + validate | validator |
## Public API
- `generateContext(projectDir: string) => ContextResult`
mission.yaml is missing.sections array in the return value indicates which sections were included.npx claudepluginhub chquandogong/mission-spec --plugin mission-specGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.