Skills
A skill is a package of structured files that teaches an AI coding agent how to work with a specific tool or framework. The skill below was generated by Great Docs from this project’s documentation. Install it in your agent and it will be able to run commands, edit configuration, write content, and troubleshoot problems without step-by-step guidance from you.
Any agent — install with npx:
npx skills add https://yasyf.github.io/cc-pushback/Codex / OpenCode
Tell the agent:
Fetch the skill file at https://yasyf.github.io/cc-pushback/skill.md and follow the instructions.Manual — download the skill file:
curl -O https://yasyf.github.io/cc-pushback/skill.mdOr browse the SKILL.md file.
SKILL.md
--- name: cc-pushback description: > Learn your pushback style from past Claude Code feedback and code reviews, and replicate it with a language model. Use when writing Python code that uses the cc_pushback package. license: PolyForm-Noncommercial-1.0.0 compatibility: Requires Python >=3.13. --- # cc-pushback Learn your pushback style from past Claude Code feedback and code reviews, and replicate it with a language model. ## Installation ```bash pip install cc-pushback ``` ## API overview ### Classes Core classes - `FeedbackStore`: Persistent store for collected feedback over a :class:`FileStateStore` ### FeedbackStore Methods Methods for the FeedbackStore class - `FeedbackStore.default_path` - `FeedbackStore.open` - `FeedbackStore.record_file_scan` - `FeedbackStore.unrefined` - `FeedbackStore.record_refinement` - `FeedbackStore.unenriched` - `FeedbackStore.record_evidence` - `FeedbackStore.pairs` - `FeedbackStore.candidates` - `FeedbackStore.lineage` - `FeedbackStore.triage_stats` ### Dataclasses Data-holding classes - `MigrationReport`: The outcome of one ``migrate-corpus`` pass - `ScanReport`: The outcome of one scan pass ### Functions Public functions - `detect`: Runs every detector over one transcript's events ### Async Functions Asynchronous functions - `migrate_corpus`: Converts a legacy corpus in place, idempotently ### Other Additional exports - `scan`: Scans transcripts under ``roots`` for feedback, incrementally ## Resources - [Full documentation](https://yasyf.github.io/cc-pushback/) - [llms.txt](llms.txt) — Indexed API reference for LLMs - [llms-full.txt](llms-full.txt) — Comprehensive documentation for LLMs - [Source code](https://github.com/yasyf/cc-pushback)