headless-automation
Run Claude Code in CI/CD pipelines, pre-commit hooks, and batch processing. Covers -p flag, fan-out migrations, and pipeline patterns.
What this skill does
# Headless Automation Skill
## Trigger
Use when you want Claude to work autonomously in CI/CD pipelines, pre-commit hooks, batch processing, or any automated workflow.
## The Insight
From Anthropic's Claude Code best practices: "Use `-p` flag with prompts for CI/CD, pre-commit hooks, and infrastructure. Employ 'fanning out' for large migrations or 'pipelining' for data processing workflows."
## Basic Headless Usage
### The `-p` Flag
Run Claude with a prompt, get output, exit:
```bash
# Simple prompt
claude -p "Explain what this function does" < src/utils.ts
# With file context
claude -p "Review this PR for security issues" --files $(git diff --name-only main)
# Output to file
claude -p "Generate API documentation" > docs/api.md
```
### Print Mode (`--print`)
Get raw output without interactive formatting:
```bash
claude -p "List all TODO comments" --print
```
## Automation Patterns
### Pattern 1: CI/CD Integration
**GitHub Actions Example:**
```yaml
name: AI Code Review
on: [pull_request]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Claude Review
run: |
claude -p "Review the changes in this PR. Focus on:
- Security vulnerabilities
- Performance issues
- Code style violations
Output as GitHub PR comment markdown." \
--files $(git diff --name-only origin/main)
```
**Pre-commit Hook:**
```bash
#!/bin/bash
# .git/hooks/pre-commit
# Get staged files
FILES=$(git diff --cached --name-only --diff-filter=ACM | grep -E '\.(ts|tsx|js|jsx)$')
if [ -n "$FILES" ]; then
claude -p "Check these files for obvious bugs or issues.
Output only if problems found, otherwise output nothing." \
--files $FILES
if [ $? -ne 0 ]; then
echo "Claude found issues. Please review."
exit 1
fi
fi
```
### Pattern 2: Fan-Out for Large Migrations
Process many items in parallel:
```bash
#!/bin/bash
# migrate-all.sh
# Step 1: Generate task list
claude -p "List all files that need migration from API v1 to v2.
Output as plain file paths, one per line." --print > migration-tasks.txt
# Step 2: Process in parallel
cat migration-tasks.txt | xargs -P 4 -I {} bash -c '
claude -p "Migrate this file from API v1 to v2.
Apply changes directly." --files {}
'
# Step 3: Verify
claude -p "Verify all migrations completed successfully.
Check for any remaining v1 API usage."
```
### Pattern 3: Pipeline Processing
Chain Claude operations:
```bash
#!/bin/bash
# data-pipeline.sh
# Stage 1: Extract
claude -p "Extract all API endpoint definitions from src/api/" \
--print > /tmp/endpoints.json
# Stage 2: Transform
claude -p "Convert these endpoints to OpenAPI 3.0 format" \
< /tmp/endpoints.json > /tmp/openapi.json
# Stage 3: Generate
claude -p "Generate TypeScript client from this OpenAPI spec" \
< /tmp/openapi.json > src/generated/api-client.ts
```
### Pattern 4: Batch Processing
```bash
#!/bin/bash
# process-batch.sh
# Process each item in a list
while IFS= read -r item; do
claude -p "Process: $item" --print >> results.txt
done < items.txt
```
### Pattern 5: Scheduled Tasks
**Cron job for daily reports:**
```bash
# crontab -e
0 9 * * * cd /path/to/project && claude -p "Generate daily code health report" > reports/$(date +%Y-%m-%d).md
```
## Safe Automation Practices
### Use Containers for Risky Operations
```bash
# Run in isolated Docker container
docker run --rm -v $(pwd):/workspace \
claude-code -p "Refactor all deprecated API calls" \
--dangerously-skip-permissions
```
### Limit Scope
```bash
# Only touch specific directories
claude -p "Update imports" --files src/components/*.tsx
```
### Dry Run First
```bash
# Preview changes without applying
claude -p "Show what changes would be made to migrate to React 18.
Don't make any changes, just list them."
```
### Capture Output for Review
```bash
# Log all output
claude -p "Apply linting fixes" 2>&1 | tee automation.log
```
## Useful Flags for Automation
| Flag | Purpose |
|------|---------|
| `-p "prompt"` | Run with prompt, non-interactive |
| `--print` | Raw output, no formatting |
| `--files` | Specify files to include |
| `--dangerously-skip-permissions` | Skip permission prompts (use in containers) |
| `--output-format json` | JSON output for parsing |
## Template: Migration Script
```bash
#!/bin/bash
set -e
TASK="Migrate from moment.js to date-fns"
PATTERN="*.ts *.tsx"
echo "=== Starting: $TASK ==="
# 1. Discover affected files
echo "Finding affected files..."
FILES=$(claude -p "List files using moment.js" --print)
echo "Found $(echo "$FILES" | wc -l) files"
# 2. Process each file
echo "$FILES" | while read -r file; do
echo "Processing: $file"
claude -p "Migrate $file from moment.js to date-fns.
Preserve all functionality." --files "$file"
done
# 3. Verify
echo "Verifying migration..."
claude -p "Check for any remaining moment.js usage"
# 4. Run tests
echo "Running tests..."
npm test
echo "=== Complete: $TASK ==="
```
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.