3.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
| name | circleci |
| description | Manage CircleCI pipelines, jobs, and workflows via API. Trigger and monitor builds. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/circleci |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/circleci |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
826 BSKILL.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"}'
Get Workflow
curl "https://circleci.com/api/v2/workflow/{workflowId}" -H "Circle-Token: $CIRCLECI_TOKEN"
Links
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.
