用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill framework-context命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | framework-context |
| description | Load and synthesize framework architecture context for reflection and planning tasks. |
| version | 1.1.0 |
| model | sonnet |
| invoked_by | both |
| user_invocable | true |
| tools | ["Read","Skill"] |
| error_handling | graceful |
| streaming | supported |
| verified | true |
| lastVerifiedAt | "2026-02-22T00:00:00.000Z" |
| source | builtin |
| trust_score | 100 |
| provenance_sha | 2d1d97ef8eef4f7e |
Provide a consistent, source-anchored model of this framework so agents can reason about system-level behavior without guessing.
memory, agents, workflows, hooks, or all) — loading all sources for a narrow task wastes tokens and buries relevant signals.missing source: <path> rather than silently omitting a section — silent omissions cause downstream agents to make decisions on incomplete context.| Anti-Pattern | Why It Fails | Correct Approach |
|---|---|---|
| Skipping context load before reflection | Reflection uses stale or hallucinated routing/memory assumptions | Always invoke framework-context first; never reflect from memory alone |
Loading full all scope for a narrow task | Token budget consumed by irrelevant sections; key signal buried | Pass --scope memory or --scope agents to limit output to what's needed |
| Inferring file paths from naming conventions | Paths change; inferred paths break agent pipelines | Always read canonical sources and report actual paths found |
| Writing to framework files inside this skill | Bypasses creator workflow and post-creation integration steps | Use appropriate creator/updater skill for any write operations |
| Silently omitting sections when source is missing | Consumer assumes context is complete; makes decisions on gaps | Report missing source: <path> explicitly for every unresolvable section |
scope argument: memory | agents | workflows | hooks | allallRead only what is required by scope:
.claude/docs/MEMORY_SYSTEM.md.claude/context/agent-registry.json, .claude/lib/routing/routing-table.cjs.claude/hooks/reflection/reflection-queue-processor.cjs, .claude/hooks/reflection/reflection-step0-guard.cjs.claude/docs/@ENTERPRISE_WORKFLOWS.md.claude/CLAUDE.mdOutput sections in this exact order:
Each section must include:
scope != all, return only relevant section(s)missing source: <path>Return markdown only; do not write framework files from this skill.
</execution_process>
// Full framework model
Skill({ skill: 'framework-context' });
// Memory-only context for reflection prep
Skill({ skill: 'framework-context', args: '--scope memory' });
// Workflow/hook-only context for integration analysis
Skill({ skill: 'framework-context', args: '--scope workflows' });
</usage_example>
Before starting:
Get-Content .claude/context/memory/learnings.md -TotalCount 120
After completing:
.claude/context/memory/learnings.md.claude/context/memory/issues.md.claude/context/memory/decisions.mdASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.