AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Circleci Skill

skill-kubiyabot-skill-circleci-skill · by kubiyabot

A Claude skill from kubiyabot/skill.

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-kubiyabot-skill-circleci-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kubiyabot-skill-circleci-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Circleci Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

CircleCI Skill

CircleCI CI/CD pipeline management and monitoring.

Overview

This skill provides comprehensive access to the CircleCI API v2 for managing pipelines, workflows, jobs, and project configuration.

Requirements

  • CircleCI API Token with appropriate permissions
  • Project must be connected to CircleCI

Configuration

export SKILL_CIRCLECI_TOKEN=your_api_token

Generate a token at: https://app.circleci.com/settings/user/tokens

Tools (18)

User Tools

  • me - Get current authenticated user information

Project Tools

  • project-get - Get project information and settings

Pipeline Tools

  • pipeline-list - List pipelines for a project with optional branch filter
  • pipeline-get - Get detailed pipeline information by ID
  • pipeline-trigger - Trigger a new pipeline on a branch or tag

Workflow Tools

  • workflow-get - Get workflow details by ID
  • workflow-cancel - Cancel a running workflow
  • workflow-rerun - Rerun a workflow (optionally from failed jobs only)
  • workflow-jobs - List all jobs in a workflow

Job Tools

  • job-get - Get detailed job information
  • job-cancel - Cancel a running job
  • job-artifacts - List artifacts produced by a job

Insights Tools

  • insights-summary - Get workflow metrics summary (success rate, duration)
  • insights-jobs - Get job-level insights for a workflow

Configuration Tools

  • context-list - List contexts for an organization
  • context-get - Get context details by ID
  • env-var-list - List environment variables for a project
  • env-var-create - Create or update a project environment variable

Project Slug Format

CircleCI uses project slugs in the format: //

Examples:

  • gh/myorg/myrepo - GitHub repository
  • bb/myorg/myrepo - Bitbucket repository
  • circleci/myorg/myrepo - CircleCI standalone project

Example Usage

Trigger a Pipeline

Tool: pipeline-trigger
Args: {
  "project_slug": "gh/myorg/myrepo",
  "branch": "main"
}
Result: Pipeline triggered with ID and number

Trigger with Parameters

Tool: pipeline-trigger
Args: {
  "project_slug": "gh/myorg/myrepo",
  "branch": "main",
  "parameters": "{\"deploy_env\": \"staging\", \"run_tests\": true}"
}
Result: Pipeline triggered with custom parameters

List Recent Pipelines

Tool: pipeline-list
Args: {
  "project_slug": "gh/myorg/myrepo",
  "branch": "main"
}
Result: List of recent pipelines with status and trigger info

Get Workflow Status

Tool: workflow-get
Args: { "workflow_id": "abc-123-def-456" }
Result: Workflow status, duration, and job summary

Rerun Failed Jobs

Tool: workflow-rerun
Args: {
  "workflow_id": "abc-123-def-456",
  "from_failed": true
}
Result: Workflow rerun triggered from failed jobs

Get Job Artifacts

Tool: job-artifacts
Args: {
  "project_slug": "gh/myorg/myrepo",
  "job_number": 123
}
Result: List of artifacts with download URLs

Get Workflow Insights

Tool: insights-summary
Args: {
  "project_slug": "gh/myorg/myrepo",
  "workflow_name": "build-and-test",
  "branch": "main"
}
Result: Success rate, mean duration, throughput metrics

Manage Environment Variables

Tool: env-var-create
Args: {
  "project_slug": "gh/myorg/myrepo",
  "name": "API_KEY",
  "value": "secret-value"
}
Result: Environment variable created/updated

Response Format

Successful responses return JSON with CircleCI API data:

{
  "id": "pipeline-id",
  "state": "running",
  "number": 123,
  "created_at": "2024-01-01T00:00:00Z",
  ...
}

Error Handling

  • 401: Authentication failed - check your CIRCLECI_TOKEN
  • 404: Resource not found - verify project slug and IDs
  • 429: Rate limited - reduce request frequency

Security Notes

  • API tokens should have minimal required permissions
  • Environment variable values are write-only (cannot be read back)
  • Context access requires organization-level permissions
  • Audit logs track all API operations

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.