Emit minimal CI YAML configuration for common CI/CD platforms. Supports GitHub Actions, GitLab CI, and other CI systems with lint, test, and build stages.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill xspoonai-official-ci-pipeline-scaffold --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Xspoonai Official Ci Pipeline Scaffold?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-xspoonai-official-ci-pipeline-scaffold)More formats (shields.io, HTML) on the badges page.
---
name: ci-pipeline-scaffold
track: enterprise-skills
version: 0.1.0
summary: Generate minimal CI YAML for lint, test, and build
---
## Description
Emit minimal CI YAML configuration for common CI/CD platforms. Supports GitHub Actions, GitLab CI, and other CI systems with lint, test, and build stages.
## Inputs
```json
{
"platform": "github|gitlab|jenkins",
"language": "python|javascript|go",
"stages": ["lint", "test", "build"]
}
```
## Outputs
```json
{
"ok": true,
"data": {
"yaml": "CI YAML content",
"filename": ".github/workflows/ci.yml"
}
}
```
## Usage
### Demo Mode
```bash
python scripts/main.py --demo
```
### Generate CI Config
```bash
echo '{"platform": "github", "language": "python", "stages": ["lint", "test", "build"]}' | python3 scripts/main.py
```
## Examples
### Example 1: GitHub Actions CI
```bash
$ echo '{"platform": "github", "language": "python"}' | python3 scripts/main.py
{
"ok": true,
"data": {
"yaml": "name: CI\non: push\njobs:\n lint:\n runs-on: ubuntu-latest",
"filename": ".github/workflows/ci.yml"
}
}
```
## Error Handling
When an error occurs, the skill returns:
```json
{
"ok": false,
"error": "Error description",
"details": {
"platform": "Unsupported platform"
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!