Best use case
cfn-operations is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
File and log operations for CFN
Teams using cfn-operations should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/cfn-operations/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How cfn-operations Compares
| Feature / Agent | cfn-operations | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
File and log operations for CFN
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Operations Skill (Mega-Skill) **Version:** 1.0.0 **Purpose:** File and log operations for CFN **Status:** Production **Consolidates:** cfn-file-operations, cfn-log-operations --- ## Overview This mega-skill provides I/O operations: - **File** - File read/write/copy operations - **Log** - Log file management and rotation --- ## Directory Structure ``` operations/ ├── SKILL.md ├── lib/ │ ├── file/ # From cfn-file-operations │ └── log/ # From cfn-log-operations └── cli/ ``` --- ## Migration Paths | Old Path | New Path | |----------|----------| | cfn-file-operations/ | operations/lib/file/ | | cfn-log-operations/ | operations/lib/log/ | --- ## Version History ### 1.0.0 (2025-12-02) - Consolidated 2 operations skills into mega-skill --- ## Quick Start Read or write files with safety checks: ```bash bash .claude/skills/cfn-operations/lib/file/file-ops.sh --read <path> bash .claude/skills/cfn-operations/lib/file/file-ops.sh --write <path> --content "data" ``` Manage log files (view, rotate, clean): ```bash bash .claude/skills/cfn-operations/lib/log/log-ops.sh --tail <log-path> --lines 100 bash .claude/skills/cfn-operations/lib/log/log-ops.sh --rotate <log-path> --max-size 10M ``` Copy files with backup: ```bash bash .claude/skills/cfn-operations/lib/file/file-ops.sh --copy <source> <dest> --backup ```
Related Skills
CFN Log Operations Skill
**Specialization**: Distributed logging, log aggregation, and monitoring
File Operations Skill
Centralized file locking and atomic write operations for bash scripts.
supabase-schema-sync
Introspects Supabase DB after migrations and updates project db-query skill with current schema. Run after any migration to keep agent context accurate.
commit
Stage, commit, and push changes using a background github-commit-agent. Accepts optional args for message override or push control.
cfn-vote-implement
MUST BE USED after cfn-dry-review or cfn-alpha-launch:manifest produces a manifest. Also the verification phase of /cfn-loop-task. Do not manually implement code review suggestions - always route through this skill. 3-agent specialized voting. Unanimous (3/3) auto-implemented with TDD. 2/3 routed to product-owner agent. 1/3 surfaced to user via AskUserQuestion (batched 4 per call, at end).
cfn-utilities
Reusable bash utility functions for CFN Loop - logging, error handling, retry, file operations. Use when you need structured logging, atomic file operations, retry logic with exponential backoff, or standardized error handling in bash scripts.
CFN Test Runner Skill
**Version:** 1.0.0
cfn-test-framework
Test execution, running, and webapp testing for CFN
cfn-task-planning
Classify tasks, initialize structured configs with scope boundaries, decompose complex tasks
Specialist Injection Skill
## Purpose
!/bin/bash
# cfn-task-intelligence.sh
Task Complexity Estimator
**Version:** 1.0.0