install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cfn-operations" ~/.claude/skills/majiayu000-claude-skill-registry-cfn-operations && rm -rf "$T"
manifest:
skills/data/cfn-operations/SKILL.mdsource content
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