← Back to registry

TOOL · create_skill

No description provided.

Canonical Definition

{
  "function": {
    "description": "Formally create a new Hera Skill Playbook to persist orchestrated workflows and cognitive loops. Hera will automatically detect it and inject it into progressive disclosure.",
    "name": "create_skill",
    "parameters": {
      "properties": {
        "description": {
          "description": "A very concise 1-sentence description. This will be shown to Hera as the tool description, explaining WHEN it should use this skill.",
          "type": "string"
        },
        "name": {
          "description": "Short, lowercase dir name for the skill (e.g. 'rust_architect')",
          "type": "string"
        },
        "playbook": {
          "description": "The actual detailed markdown rules, instructions, and orchestration steps. (e.g. 'Use spawn_parallel_agents to audit X, then do Y...')",
          "type": "string"
        }
      },
      "required": [
        "name",
        "description",
        "playbook"
      ],
      "type": "object"
    }
  },
  "type": "function"
}