home / skills / ehtbanton / claudeskillsrepo / circleci-config-generator
This skill generates a complete CircleCI 2.1 config.yml with workflows and orbs for rapid CI/CD setup.
npx playbooks add skill ehtbanton/claudeskillsrepo --skill circleci-config-generatorReview the files below or copy the command above to add this skill to your agents.
---
name: circleci-config-generator
description: Generate CircleCI configuration files with workflows, orbs, and deployment. Triggers on "create circleci config", "generate circleci configuration", "circleci pipeline", "circle ci setup".
---
# CircleCI Config Generator
Generate CircleCI pipeline configuration files with workflows and orbs.
## Output Requirements
**File Output:** `.circleci/config.yml`
**Format:** Valid CircleCI YAML
**Standards:** CircleCI 2.1
## When Invoked
Immediately generate a complete CircleCI pipeline configuration.
## Example Invocations
**Prompt:** "Create CircleCI config for Node.js application"
**Output:** Complete `.circleci/config.yml` with test and deploy workflows.
This skill generates complete CircleCI pipeline configuration files (.circleci/config.yml) for projects. It produces valid CircleCI 2.1 YAML including jobs, workflows, orbs, and deployment steps tailored to the target stack. Use simple prompts like "create circleci config" or "generate circleci configuration" to get a ready-to-use pipeline.
On invocation the skill inspects the requested runtime and deployment targets from the prompt and composes a full CircleCI config.yml that follows CircleCI 2.1 syntax. Outputs include jobs (build, test, lint), reusable orbs or commands when appropriate, workflow definitions, and deployment steps such as Docker publish or cloud provider deploy. The file is formatted as valid YAML and intended to be written to .circleci/config.yml in the repository.
What file does this create?
It generates a .circleci/config.yml file formatted for CircleCI 2.1.
Can it include orbs and reusable commands?
Yes — the skill can include orbs, commands, and jobs based on your requested structure.