Agent skill
skill-to-agent-transpiler
Compile a skill entry into a provisioned agent request with strict guardrails (approval, quotas, TTL). Use when translating skills into runnable agents or when you need a controlled Skill→Agent path.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/skill-to-agent-transpiler-majiayu000-claude-skill-regist
SKILL.md
Skill → Agent Transpiler
Transforms a skill entry from skills/INDEX.json into a provisionable agent request.
This path is strictly guarded and defaults to compile-only unless approved.
Capabilities
compile(default): Return a guarded agent request (no provisioning)provision: Provision the agent via the Creator Manager (requiresapproved=true)
Inputs
Required:
skill_id
Optional:
agent_namemodel_idmax_stepsoutput_pathapproved(bool, required forprovision)approval_noterequester_idparent_agent_id
Guardrails are enforced by config/agent_creator_guardrails.json under the transpiler scope.
Example (compile)
{
"skill_id": "automation/dynamic-budget-orchestrator",
"agent_name": "Budget-Orchestrator-Agent",
"model_id": "qwen3:latest"
}
Example (provision)
{
"capability": "provision",
"skill_id": "automation/dynamic-budget-orchestrator",
"approved": true,
"approval_note": "Reviewed by operator"
}
Script
python skills/automation/skill-to-agent-transpiler/scripts/transpile_skill.py --skill-id automation/dynamic-budget-orchestrator
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?