circleci-skill

Manage CircleCI v2 pipelines, workflows, jobs, and project configurations via API.

16|2|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/kubiyabot/skill --skill circleci-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: circleci-skill
Source: https://github.com/kubiyabot/skill/tree/main/examples/wasm-skills/circleci-skill
Command: npx skills add https://github.com/kubiyabot/skill --skill circleci-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CircleCI-skill provides programmatic access to CircleCI API v2 for managing pipelines, workflows, jobs, and project configuration from an automation context or agent, enabling CI/CD tasks to be automated without manual API calls.

Core Features & Use Cases

  • Manage pipelines: list, get, and trigger pipelines for a project, including branch and tag support.
  • Inspect workflows and jobs: retrieve details, cancel, rerun, and fetch job artifacts and insights.
  • Contexts and environment variables: list and manage organization contexts and project env vars.
  • Use case: Automatically trigger a deployment pipeline after a successful code merge and surface run status to a monitoring dashboard.

Quick Start

Use the circleci-skill to list pipelines for a project: Tool: pipeline-list Args: { "project_slug": "gh/myorg/myrepo", "branch": "main" }

Frequently Asked Questions about circleci-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I trigger CircleCI pipelines from an automated agent?

You can trigger CircleCI pipelines from an automated agent by using a bearer-authenticated HTTP client to send requests to the CircleCI v2 API, which supports branch and tag-specific pipeline execution.

Can I manage CircleCI contexts and environment variables via API?

Yes, you can manage CircleCI contexts and environment variables via API by performing project-scoped operations to list and modify organization contexts and project environment variables.

How do I retrieve job artifacts and insights for CircleCI workflows?

To retrieve job artifacts and insights for CircleCI workflows, you inspect workflows and jobs through the CircleCI v2 API, which allows you to fetch details, cancel runs, and rerun jobs.

Do I need a CircleCI API token to manage workflows from the terminal?

Yes, you need a CircleCI API token to manage workflows from the terminal, as the Skill uses a bearer-authenticated HTTP client to authorize requests against the CircleCI v2 API.

What is the best way to automate CI/CD orchestration for CircleCI projects?

The best way to automate CI/CD orchestration for CircleCI projects is programmatically accessing the CircleCI API v2 to manage pipelines, workflows, jobs, and project configurations without manual API calls.

How do I list pipelines for a specific CircleCI project branch?

You list pipelines for a specific CircleCI project branch by querying the CircleCI v2 API with the project slug and branch parameters to retrieve scoped pipeline records.