{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bolt-skill",
    "name": "Bolt Sprint",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ndhill84/bolt-skill",
    "canonicalUrl": "https://clawhub.ai/ndhill84/bolt-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bolt-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bolt-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api-reference.md",
      "references/workflows.md",
      "scripts/bolt.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/bolt-skill"
    },
    "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/bolt-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/bolt-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bolt-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bolt-skill/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Bolt Sprint Management Skill",
        "body": "Bolt is a collaborative software development platform built for human-AI teamwork. This skill lets you manage projects, sprints, and stories through Bolt's REST API."
      },
      {
        "title": "Configuration",
        "body": "Set these environment variables before using this skill:\n\nexport BOLT_BASE_URL=\"http://localhost:4000\"   # Your Bolt API base URL\nexport BOLT_API_TOKEN=\"your-token-here\"         # Optional: only needed if server was started with BOLT_API_TOKEN\n\nThe base curl pattern for authenticated requests:\n\ncurl -s \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/...\"\n\nCheck connectivity before starting:\n\ncurl -s \"$BOLT_BASE_URL/health\"\n# → {\"ok\":true}"
      },
      {
        "title": "List Projects",
        "body": "curl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/projects\""
      },
      {
        "title": "List Sprints for a Project",
        "body": "curl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/projects/$PROJECT_ID/sprints\""
      },
      {
        "title": "Get Sprint Digest (blockers, story counts, assignee breakdown)",
        "body": "curl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/digests/sprint/$SPRINT_ID\""
      },
      {
        "title": "List Stories",
        "body": "# All stories in a sprint\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&limit=100\"\n\n# Only blocked stories\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&blocked=true\"\n\n# Delta sync — only stories changed since a timestamp\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?updated_since=2024-01-01T00:00:00Z\"\n\n# Request only specific fields to reduce token usage\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&fields=id,title,status,blocked,priority\""
      },
      {
        "title": "Create a Story",
        "body": "curl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\n    \"title\": \"Story title\",\n    \"projectId\": \"'\"$PROJECT_ID\"'\",\n    \"sprintId\": \"'\"$SPRINT_ID\"'\",\n    \"description\": \"What needs to be done\",\n    \"acceptanceCriteria\": \"Definition of done\",\n    \"priority\": \"high\",\n    \"status\": \"waiting\",\n    \"points\": 3\n  }' \\\n  \"$BOLT_BASE_URL/api/v1/stories\""
      },
      {
        "title": "Update a Story",
        "body": "curl -s -X PATCH \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"blocked\": true, \"priority\": \"urgent\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID\""
      },
      {
        "title": "Move a Story (Kanban transition)",
        "body": "# Single story\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"status\": \"in_progress\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID/move\"\n\n# Batch move multiple stories at once\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\n    \"items\": [\n      {\"id\": \"story-1\", \"status\": \"completed\"},\n      {\"id\": \"story-2\", \"status\": \"completed\"}\n    ],\n    \"all_or_nothing\": true\n  }' \\\n  \"$BOLT_BASE_URL/api/v1/stories/batch/move\""
      },
      {
        "title": "Add a Note to a Story",
        "body": "curl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"body\": \"Note content here\", \"author\": \"AI\", \"kind\": \"note\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID/notes\""
      },
      {
        "title": "Log AI Activity",
        "body": "# Post an event to the agent session (creates session if it doesn't exist)\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"message\": \"Analyzing codebase to implement story\", \"type\": \"action\"}' \\\n  \"$BOLT_BASE_URL/api/v1/agent/sessions/$SESSION_ID/events\""
      },
      {
        "title": "Story Status Values",
        "body": "StatusMeaningwaitingNot started — in the backlog/queuein_progressActively being worked oncompletedDone"
      },
      {
        "title": "Priority Values",
        "body": "low · med · high · urgent"
      },
      {
        "title": "Key API Behaviors",
        "body": "Idempotency: Include Idempotency-Key: <uuid> header on POST/PATCH to safely retry without duplicates (48-hour TTL).\nPagination: Responses include page.nextCursor and page.hasMore. Pass cursor=<value> to fetch the next page. Default limit 50, max 200.\nField projection: Use ?fields=id,title,status to request only the fields you need — reduces payload size and token cost.\nDelta sync: Use ?updated_since=<ISO8601> to fetch only items changed since a timestamp — efficient for polling.\nError format: All errors return { \"error\": { \"code\": \"...\", \"message\": \"...\" } }.\nRate limits: Write methods capped at 120 requests/minute per IP."
      },
      {
        "title": "References",
        "body": "Full API endpoint reference: references/api-reference.md\nWorkflow patterns and recipes: references/workflows.md"
      }
    ],
    "body": "Bolt Sprint Management Skill\n\nBolt is a collaborative software development platform built for human-AI teamwork. This skill lets you manage projects, sprints, and stories through Bolt's REST API.\n\nConfiguration\n\nSet these environment variables before using this skill:\n\nexport BOLT_BASE_URL=\"http://localhost:4000\"   # Your Bolt API base URL\nexport BOLT_API_TOKEN=\"your-token-here\"         # Optional: only needed if server was started with BOLT_API_TOKEN\n\n\nThe base curl pattern for authenticated requests:\n\ncurl -s \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/...\"\n\n\nCheck connectivity before starting:\n\ncurl -s \"$BOLT_BASE_URL/health\"\n# → {\"ok\":true}\n\nCommon Operations\nList Projects\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/projects\"\n\nList Sprints for a Project\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/projects/$PROJECT_ID/sprints\"\n\nGet Sprint Digest (blockers, story counts, assignee breakdown)\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/digests/sprint/$SPRINT_ID\"\n\nList Stories\n# All stories in a sprint\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&limit=100\"\n\n# Only blocked stories\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&blocked=true\"\n\n# Delta sync — only stories changed since a timestamp\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?updated_since=2024-01-01T00:00:00Z\"\n\n# Request only specific fields to reduce token usage\ncurl -s \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  \"$BOLT_BASE_URL/api/v1/stories?sprintId=$SPRINT_ID&fields=id,title,status,blocked,priority\"\n\nCreate a Story\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\n    \"title\": \"Story title\",\n    \"projectId\": \"'\"$PROJECT_ID\"'\",\n    \"sprintId\": \"'\"$SPRINT_ID\"'\",\n    \"description\": \"What needs to be done\",\n    \"acceptanceCriteria\": \"Definition of done\",\n    \"priority\": \"high\",\n    \"status\": \"waiting\",\n    \"points\": 3\n  }' \\\n  \"$BOLT_BASE_URL/api/v1/stories\"\n\nUpdate a Story\ncurl -s -X PATCH \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"blocked\": true, \"priority\": \"urgent\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID\"\n\nMove a Story (Kanban transition)\n# Single story\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"status\": \"in_progress\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID/move\"\n\n# Batch move multiple stories at once\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\n    \"items\": [\n      {\"id\": \"story-1\", \"status\": \"completed\"},\n      {\"id\": \"story-2\", \"status\": \"completed\"}\n    ],\n    \"all_or_nothing\": true\n  }' \\\n  \"$BOLT_BASE_URL/api/v1/stories/batch/move\"\n\nAdd a Note to a Story\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"body\": \"Note content here\", \"author\": \"AI\", \"kind\": \"note\"}' \\\n  \"$BOLT_BASE_URL/api/v1/stories/$STORY_ID/notes\"\n\nLog AI Activity\n# Post an event to the agent session (creates session if it doesn't exist)\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  ${BOLT_API_TOKEN:+-H \"x-bolt-token: $BOLT_API_TOKEN\"} \\\n  -d '{\"message\": \"Analyzing codebase to implement story\", \"type\": \"action\"}' \\\n  \"$BOLT_BASE_URL/api/v1/agent/sessions/$SESSION_ID/events\"\n\nStory Status Values\nStatus\tMeaning\nwaiting\tNot started — in the backlog/queue\nin_progress\tActively being worked on\ncompleted\tDone\nPriority Values\n\nlow · med · high · urgent\n\nKey API Behaviors\nIdempotency: Include Idempotency-Key: <uuid> header on POST/PATCH to safely retry without duplicates (48-hour TTL).\nPagination: Responses include page.nextCursor and page.hasMore. Pass cursor=<value> to fetch the next page. Default limit 50, max 200.\nField projection: Use ?fields=id,title,status to request only the fields you need — reduces payload size and token cost.\nDelta sync: Use ?updated_since=<ISO8601> to fetch only items changed since a timestamp — efficient for polling.\nError format: All errors return { \"error\": { \"code\": \"...\", \"message\": \"...\" } }.\nRate limits: Write methods capped at 120 requests/minute per IP.\nReferences\nFull API endpoint reference: references/api-reference.md\nWorkflow patterns and recipes: references/workflows.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ndhill84/bolt-skill",
    "publisherUrl": "https://clawhub.ai/ndhill84/bolt-skill",
    "owner": "ndhill84",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bolt-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/bolt-skill",
    "agentUrl": "https://openagent3.xyz/skills/bolt-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bolt-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bolt-skill/agent.md"
  }
}