用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill creator-fix-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field
Context management — pre-compact persistence, threshold alignment, microcompact/circuit breaker detection
Hook enhancements — updatedInput for bash safety prefixes, suppressOutput for verbose blocks, denial-based routing feedback
正在显示 SKILL.md
基于 SOC 职业分类
| name | creator-fix-worker |
| description | Fixes the skill-creator and agent-creator systems (SKILL.md refactoring, hook fixes, template fixes) |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features that fix the skill-creator and agent-creator systems: refactoring SKILL.md files, fixing the creator guard TTL, eliminating dual creation paths, breaking circular dependencies, fixing templates, and improving post-creation quality validation.
Read the feature description — it specifies which creator system issue to fix.
Read the analysis reports — The detailed failure analysis is at:
.claude/context/reports/skill-agent-system-analysis.md.claude/context/reports/backend/skill-creation-failure-analysis-20260327.mdRead the target files — Use Grep to find the exact code. Key files:
.claude/skills/skill-creator/SKILL.md (2,161 lines — do NOT read entirely, use grep).claude/skills/agent-creator/SKILL.md (1,811 lines — do NOT read entirely, use grep).claude/hooks/routing/unified-creator-guard.cjs (TTL logic).claude/skills/skill-creator/scripts/create-actions.cjs (enterprise default).claude/skills/skill-creator/scripts/create-templates.cjs (template fields).claude/hooks/workflow/post-creation-integration.cjs (registration)Write tests FIRST (red) — Test the expected behavior:
Implement the fix (green) — Make targeted changes:
For SKILL.md refactoring (VAL-CRT-001/002):
docs/ subfolder within the skill directoryFor TTL fix (VAL-CRT-003):
For template fixes (VAL-CRT-006):
Run tests — node --test tests/ for relevant test files.
Run validation — pnpm validate:full:parallel to catch reference integrity issues.
{
"salientSummary": "Refactored skill-creator/SKILL.md from 2,161 lines to 487 lines by extracting reference content to docs/ subfolder. Created 4 reference docs: research-gate.md, security-scan-checklist.md, enterprise-bundle-details.md, typed-search-dorks.md. Core procedure preserved with relative links. All existing tests pass.",
"whatWasImplemented": "Split SKILL.md into core procedure (487 lines) + 4 reference documents in .claude/skills/skill-creator/docs/. Added relative links for on-demand loading. Preserved all creation steps, frontmatter, and template references. No content deleted, only relocated.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{
"command": "wc -l .claude/skills/skill-creator/SKILL.md",
"exitCode": 0,
"observation": "487 lines"
},
{
"command": "ls .claude/skills/skill-creator/docs/",
"exitCode": 0,
"observation": "4 files: research-gate.md, security-scan-checklist.md, enterprise-bundle-details.md, typed-search-dorks.md"