plugins marketplace
← All plugins

circleci

v1.0.4

Build, test, and deploy any application

Codex1 skill

by CircleCIMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/circleci/ inside the repository.

Layout

plugins/circleci/
├── .codex-plugin/plugin.json
└── skills/chunk/SKILL.md

Skills1

chunkskills/chunk/SKILL.md

Use CircleCI Chunk for AI-assisted CI/CD work through either the Chunk web UI or the chunk-cli. Trigger this skill when users ask to set up Chunk, troubleshoot or fix failing builds with Chunk, configure Chunk environments, schedule/proactively run Chunk tasks, or use chunk-cli commands such as init, validate, build-prompt, auth, sandbox, task, and skill install.

Manifests1

plugins/circleci/.codex-plugin/plugin.json
{
  "name": "circleci",
  "version": "1.0.4",
  "description": "Build, test, and deploy any application",
  "author": {
    "name": "CircleCI",
    "url": "https://circleci.com"
  },
  "homepage": "https://circleci.com",
  "repository": "https://github.com/circleci-public/skills",
  "license": "MIT",
  "keywords": [
    "circleci",
    "ci/cd",
    "ci"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "CircleCI",
    "shortDescription": "Build, test, and deploy any application",
    "longDescription": "Bring testing, deployment, and CI best practices into Codex",
    "developerName": "CircleCI",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://circleci.com",
    "privacyPolicyURL": "https://circleci.com/legal/privacy-policy",
    "termsOfServiceURL": "https://circleci.com/legal/terms-of-service",
    "defaultPrompt": [
      "Review the CircleCI configuration for this project and suggest improvements",
      "Diagnose and fix build failures for the current branch",
      "Setup the Chunk cli for this project"
    ],
    "brandColor": "#049B4A",
    "composerIcon": "./assets/composer-icon.svg",
    "logo": "./assets/logo.png",
    "logoDark": "./assets/logo-dark.png",
    "screenshots": []
  }
}