{
  "schemaVersion": "1.0",
  "item": {
    "slug": "create-agent",
    "name": "Create Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/RuneweaverStudios/create-agent",
    "canonicalUrl": "https://clawhub.ai/RuneweaverStudios/create-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/create-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=create-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/analyze_agent_needs.py",
      "scripts/create_agent.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/create-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/create-agent",
    "agentPageUrl": "https://openagent3.xyz/skills/create-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/create-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/create-agent/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Create Agent",
        "body": "Creates and registers new Overstory agents so Overclaw can recognize and use them. Automates the steps documented in .overstory/CREATING_AGENTS.md."
      },
      {
        "title": "When to use",
        "body": "You want to add a new agent type (e.g. troubleshooter, docs-writer) to Overclaw.\nYou want to ensure all seven integration points are updated consistently.\nYou want to suggest new agents from Overclaw logs, TROUBLESHOOTING.md, mulch, or project structure."
      },
      {
        "title": "create_agent.py",
        "body": "Main CLI for creating or validating agents.\n\nManual creation:\n\npython3 scripts/create_agent.py \\\n  --name \"troubleshooter\" \\\n  --description \"Analyzes logs and troubleshoots issues\" \\\n  --capabilities \"troubleshoot,debug,analyze\" \\\n  --model \"sonnet\" \\\n  --tools \"Read,Glob,Grep,Bash\" \\\n  --can-spawn false \\\n  --constraints \"read-only\"\n\nOptions: --dry-run (preview only), --no-regenerate (skip gateway context regeneration), --rollback-on-fail (revert changes if validation fails).\n\nAnalysis mode (suggestions only):\n\npython3 scripts/create_agent.py \\\n  --analyze-from-logs \\\n  --analyze-from-troubleshooting \\\n  --suggest-only"
      },
      {
        "title": "analyze_agent_needs.py",
        "body": "Helper for analysis mode: parses logs, TROUBLESHOOTING.md, mulch, and project tree to suggest new agent definitions. Can be run standalone or via create_agent.py --analyze-*."
      },
      {
        "title": "Integration points updated",
        "body": ".overstory/config.yaml — capability entry\n.overstory/agent-manifest.json — agent + capabilityIndex\n.overstory/agent-defs/<name>.md — agent definition\nscripts/overclaw_gateway.py — orchestrator system prompt\nskills/nanobot-overstory-bridge/scripts/task_router.py — CAPABILITY_PATTERNS\nskills/nanobot-overstory-bridge/scripts/generate_agent_context.py — CAPABILITY_PRIVILEGES\nRegeneration of gateway-context.md and skills-manifest.json"
      },
      {
        "title": "References",
        "body": "CREATING_AGENTS.md — Step-by-step explainer\n.overstory/agent-defs/blogger.md — Example agent def\n.overstory/agent-defs/supervisor.md — Example coordinator-style agent"
      }
    ],
    "body": "Create Agent\n\nCreates and registers new Overstory agents so Overclaw can recognize and use them. Automates the steps documented in .overstory/CREATING_AGENTS.md.\n\nWhen to use\nYou want to add a new agent type (e.g. troubleshooter, docs-writer) to Overclaw.\nYou want to ensure all seven integration points are updated consistently.\nYou want to suggest new agents from Overclaw logs, TROUBLESHOOTING.md, mulch, or project structure.\nScripts\ncreate_agent.py\n\nMain CLI for creating or validating agents.\n\nManual creation:\n\npython3 scripts/create_agent.py \\\n  --name \"troubleshooter\" \\\n  --description \"Analyzes logs and troubleshoots issues\" \\\n  --capabilities \"troubleshoot,debug,analyze\" \\\n  --model \"sonnet\" \\\n  --tools \"Read,Glob,Grep,Bash\" \\\n  --can-spawn false \\\n  --constraints \"read-only\"\n\n\nOptions: --dry-run (preview only), --no-regenerate (skip gateway context regeneration), --rollback-on-fail (revert changes if validation fails).\n\nAnalysis mode (suggestions only):\n\npython3 scripts/create_agent.py \\\n  --analyze-from-logs \\\n  --analyze-from-troubleshooting \\\n  --suggest-only\n\nanalyze_agent_needs.py\n\nHelper for analysis mode: parses logs, TROUBLESHOOTING.md, mulch, and project tree to suggest new agent definitions. Can be run standalone or via create_agent.py --analyze-*.\n\nIntegration points updated\n.overstory/config.yaml — capability entry\n.overstory/agent-manifest.json — agent + capabilityIndex\n.overstory/agent-defs/<name>.md — agent definition\nscripts/overclaw_gateway.py — orchestrator system prompt\nskills/nanobot-overstory-bridge/scripts/task_router.py — CAPABILITY_PATTERNS\nskills/nanobot-overstory-bridge/scripts/generate_agent_context.py — CAPABILITY_PRIVILEGES\nRegeneration of gateway-context.md and skills-manifest.json\nReferences\nCREATING_AGENTS.md — Step-by-step explainer\n.overstory/agent-defs/blogger.md — Example agent def\n.overstory/agent-defs/supervisor.md — Example coordinator-style agent"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RuneweaverStudios/create-agent",
    "publisherUrl": "https://clawhub.ai/RuneweaverStudios/create-agent",
    "owner": "RuneweaverStudios",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/create-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/create-agent",
    "agentUrl": "https://openagent3.xyz/skills/create-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/create-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/create-agent/agent.md"
  }
}