{
  "schemaVersion": "1.0",
  "item": {
    "slug": "circleci",
    "name": "Circleci",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/circleci",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/circleci",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/circleci",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=circleci",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/circleci.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/circleci"
    },
    "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/circleci",
    "agentPageUrl": "https://openagent3.xyz/skills/circleci/agent",
    "manifestUrl": "https://openagent3.xyz/skills/circleci/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/circleci/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": "🔄 CircleCI",
        "body": "CircleCI CI/CD — manage pipelines, workflows, jobs, and insights via REST API"
      },
      {
        "title": "Requirements",
        "body": "VariableRequiredDescriptionCIRCLECI_TOKEN✅Personal API token from circleci.com"
      },
      {
        "title": "Quick Start",
        "body": "# Get current user\npython3 {{baseDir}}/scripts/circleci.py me\n\n# List pipelines\npython3 {{baseDir}}/scripts/circleci.py pipelines slug <value> --branch <value>\n\n# Get pipeline\npython3 {{baseDir}}/scripts/circleci.py pipeline-get id <value>\n\n# Trigger pipeline\npython3 {{baseDir}}/scripts/circleci.py pipeline-trigger slug <value> --branch <value> --parameters <value>\n\n# Get pipeline config\npython3 {{baseDir}}/scripts/circleci.py pipeline-config id <value>\n\n# List workflows\npython3 {{baseDir}}/scripts/circleci.py workflows id <value>\n\n# Get workflow\npython3 {{baseDir}}/scripts/circleci.py workflow-get id <value>\n\n# Cancel workflow\npython3 {{baseDir}}/scripts/circleci.py workflow-cancel id <value>"
      },
      {
        "title": "All Commands",
        "body": "CommandDescriptionmeGet current userpipelinesList pipelinespipeline-getGet pipelinepipeline-triggerTrigger pipelinepipeline-configGet pipeline configworkflowsList workflowsworkflow-getGet workflowworkflow-cancelCancel workflowworkflow-rerunRerun workflowjobsList workflow jobsjob-getGet job detailsjob-cancelCancel jobjob-artifactsList job artifactsinsights-workflowsWorkflow insightscontextsList contextsenvvarsList project env varsenvvar-setSet env var"
      },
      {
        "title": "Output Format",
        "body": "All commands output JSON by default. Add --human for readable formatted output.\n\npython3 {{baseDir}}/scripts/circleci.py <command> --human"
      },
      {
        "title": "Script Reference",
        "body": "ScriptDescription{{baseDir}}/scripts/circleci.pyMain CLI — all commands in one tool"
      },
      {
        "title": "Credits",
        "body": "Built by M. Abidi | agxntsix.ai\nYouTube | GitHub\nPart of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
      }
    ],
    "body": "🔄 CircleCI\n\nCircleCI CI/CD — manage pipelines, workflows, jobs, and insights via REST API\n\nRequirements\nVariable\tRequired\tDescription\nCIRCLECI_TOKEN\t✅\tPersonal API token from circleci.com\nQuick Start\n# Get current user\npython3 {{baseDir}}/scripts/circleci.py me\n\n# List pipelines\npython3 {{baseDir}}/scripts/circleci.py pipelines slug <value> --branch <value>\n\n# Get pipeline\npython3 {{baseDir}}/scripts/circleci.py pipeline-get id <value>\n\n# Trigger pipeline\npython3 {{baseDir}}/scripts/circleci.py pipeline-trigger slug <value> --branch <value> --parameters <value>\n\n# Get pipeline config\npython3 {{baseDir}}/scripts/circleci.py pipeline-config id <value>\n\n# List workflows\npython3 {{baseDir}}/scripts/circleci.py workflows id <value>\n\n# Get workflow\npython3 {{baseDir}}/scripts/circleci.py workflow-get id <value>\n\n# Cancel workflow\npython3 {{baseDir}}/scripts/circleci.py workflow-cancel id <value>\n\nAll Commands\nCommand\tDescription\nme\tGet current user\npipelines\tList pipelines\npipeline-get\tGet pipeline\npipeline-trigger\tTrigger pipeline\npipeline-config\tGet pipeline config\nworkflows\tList workflows\nworkflow-get\tGet workflow\nworkflow-cancel\tCancel workflow\nworkflow-rerun\tRerun workflow\njobs\tList workflow jobs\njob-get\tGet job details\njob-cancel\tCancel job\njob-artifacts\tList job artifacts\ninsights-workflows\tWorkflow insights\ncontexts\tList contexts\nenvvars\tList project env vars\nenvvar-set\tSet env var\nOutput Format\n\nAll commands output JSON by default. Add --human for readable formatted output.\n\npython3 {{baseDir}}/scripts/circleci.py <command> --human\n\nScript Reference\nScript\tDescription\n{{baseDir}}/scripts/circleci.py\tMain CLI — all commands in one tool\nCredits\n\nBuilt by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aiwithabidi/circleci",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/circleci",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/circleci",
    "downloadUrl": "https://openagent3.xyz/downloads/circleci",
    "agentUrl": "https://openagent3.xyz/skills/circleci/agent",
    "manifestUrl": "https://openagent3.xyz/skills/circleci/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/circleci/agent.md"
  }
}