用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill agent-enhancement-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-enhancement-worker |
| description | Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Features that enhance agent definition schema and prompt assembler to support new frontmatter fields (disallowedTools, mcpServers, fork_eligible).
Read the feature description carefully. Understand which schema fields to add and how they affect prompt assembly.
Read source files. Before modifying:
.claude/schemas/agent-definition.schema.json for current schema.claude/lib/spawn/prompt-assembler-data.cjs for how agent fields are consumed.claude/lib/spawn/prompt-assembler.cjs for assembly pipelineWrite tests first (red). Create test file at tests/lib/spawn/<descriptive-name>.test.cjs. Tests must cover:
Implement changes.
Run tests (green). All tests pass.
Run lint.
pnpm lint
npx prettier --check <modified-files>
{
"salientSummary": "Added disallowedTools, mcpServers, fork_eligible to agent schema. Prompt assembler excludes disallowed tools and scopes MCP servers. 30 tests.",
"whatWasImplemented": "Schema updated with 3 new fields. filterAndDescribeTools() filters disallowedTools. buildMcpSection() scopes to agent's mcpServers. Conflict logging for tools/disallowedTools overlap.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{ "command": "node --test tests/lib/spawn/agent-enhancements.test.cjs", "exitCode": 0, "observation": "30 tests passing" },
{ "command": "pnpm lint", "exitCode": 0, "observation": "0 errors" }
]
}
}