{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-exporter",
    "name": "Skill Exporter",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MacStenk/skill-exporter",
    "canonicalUrl": "https://clawhub.ai/MacStenk/skill-exporter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skill-exporter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-exporter",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/export.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/skill-exporter"
    },
    "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/skill-exporter",
    "agentPageUrl": "https://openagent3.xyz/skills/skill-exporter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-exporter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-exporter/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": "Skill Exporter",
        "body": "Transform Clawdbot skills into standalone, deployable microservices."
      },
      {
        "title": "Workflow",
        "body": "Clawdbot Skill (tested & working)\n         ↓\n    skill-exporter\n         ↓\nStandalone Microservice\n         ↓\nRailway / Fly.io / Docker"
      },
      {
        "title": "Export a skill",
        "body": "python3 {baseDir}/scripts/export.py \\\n  --skill ~/.clawdbot/skills/instagram \\\n  --target railway \\\n  --llm anthropic \\\n  --output ~/projects/instagram-service"
      },
      {
        "title": "Options",
        "body": "FlagDescriptionDefault--skillPath to skill directoryrequired--targetDeployment target: railway, fly, dockerdocker--llmLLM provider: anthropic, openai, nonenone--outputOutput directory./<skill-name>-service--portAPI port8000"
      },
      {
        "title": "Targets",
        "body": "railway — Generates railway.json, optimized Dockerfile, health checks\nfly — Generates fly.toml, multi-region ready\ndocker — Generic Dockerfile, docker-compose.yml"
      },
      {
        "title": "LLM Integration",
        "body": "When --llm is set, generates llm_client.py with:\n\nCaption/prompt generation\nDecision making helpers\nRate limiting and error handling"
      },
      {
        "title": "What Gets Generated",
        "body": "<skill>-service/\n├── Dockerfile\n├── docker-compose.yml\n├── api.py              # FastAPI wrapper\n├── llm_client.py       # If --llm specified\n├── requirements.txt\n├── .env.example\n├── railway.json        # If --target railway\n├── fly.toml            # If --target fly\n└── scripts/            # Copied from original skill\n    └── *.py"
      },
      {
        "title": "Requirements",
        "body": "The source skill must have:\n\nSKILL.md with valid frontmatter\nAt least one script in scripts/\nScripts should be callable (functions, not just inline code)"
      },
      {
        "title": "Post-Export",
        "body": "Copy .env.example to .env and fill in secrets\nTest locally: docker-compose up\nDeploy: railway up or fly deploy"
      }
    ],
    "body": "Skill Exporter\n\nTransform Clawdbot skills into standalone, deployable microservices.\n\nWorkflow\nClawdbot Skill (tested & working)\n         ↓\n    skill-exporter\n         ↓\nStandalone Microservice\n         ↓\nRailway / Fly.io / Docker\n\nUsage\nExport a skill\npython3 {baseDir}/scripts/export.py \\\n  --skill ~/.clawdbot/skills/instagram \\\n  --target railway \\\n  --llm anthropic \\\n  --output ~/projects/instagram-service\n\nOptions\nFlag\tDescription\tDefault\n--skill\tPath to skill directory\trequired\n--target\tDeployment target: railway, fly, docker\tdocker\n--llm\tLLM provider: anthropic, openai, none\tnone\n--output\tOutput directory\t./<skill-name>-service\n--port\tAPI port\t8000\nTargets\n\nrailway — Generates railway.json, optimized Dockerfile, health checks fly — Generates fly.toml, multi-region ready docker — Generic Dockerfile, docker-compose.yml\n\nLLM Integration\n\nWhen --llm is set, generates llm_client.py with:\n\nCaption/prompt generation\nDecision making helpers\nRate limiting and error handling\nWhat Gets Generated\n<skill>-service/\n├── Dockerfile\n├── docker-compose.yml\n├── api.py              # FastAPI wrapper\n├── llm_client.py       # If --llm specified\n├── requirements.txt\n├── .env.example\n├── railway.json        # If --target railway\n├── fly.toml            # If --target fly\n└── scripts/            # Copied from original skill\n    └── *.py\n\nRequirements\n\nThe source skill must have:\n\nSKILL.md with valid frontmatter\nAt least one script in scripts/\nScripts should be callable (functions, not just inline code)\nPost-Export\nCopy .env.example to .env and fill in secrets\nTest locally: docker-compose up\nDeploy: railway up or fly deploy"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MacStenk/skill-exporter",
    "publisherUrl": "https://clawhub.ai/MacStenk/skill-exporter",
    "owner": "MacStenk",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-exporter",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-exporter",
    "agentUrl": "https://openagent3.xyz/skills/skill-exporter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-exporter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-exporter/agent.md"
  }
}