skills$openclaw/circleci
mrgoodb3.9k

by mrgoodb

circleci – OpenClaw Skill

circleci is an OpenClaw Skills integration for devops workflows. Manage CircleCI pipelines, jobs, and workflows via API. Trigger and monitor builds.

3.9k stars1.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026devops

Skill Snapshot

namecircleci
descriptionManage CircleCI pipelines, jobs, and workflows via API. Trigger and monitor builds. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/circleci
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/circleci
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains circleci in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
826 B
SKILL.md

name: circleci description: Manage CircleCI pipelines, jobs, and workflows via API. Trigger and monitor builds. metadata: {"clawdbot":{"emoji":"⭕","requires":{"env":["CIRCLECI_TOKEN"]}}}

CircleCI

Continuous integration platform.

Environment

export CIRCLECI_TOKEN="xxxxxxxxxx"

List Pipelines

curl "https://circleci.com/api/v2/project/gh/{org}/{repo}/pipeline" \
  -H "Circle-Token: $CIRCLECI_TOKEN"

Trigger Pipeline

curl -X POST "https://circleci.com/api/v2/project/gh/{org}/{repo}/pipeline" \
  -H "Circle-Token: $CIRCLECI_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"branch": "main"}'
curl "https://circleci.com/api/v2/workflow/{workflowId}" -H "Circle-Token: $CIRCLECI_TOKEN"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install circleci?

Run openclaw add @mrgoodb/circleci in your terminal. This installs circleci into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/circleci. Review commits and README documentation before installing.