# Incitaciones > A curated library of reusable prompts and skills for CLI LLM tools > (Claude Code, Amp, Gemini CLI, Cursor, Windsurf, Zed). Install all > skills with `./install.sh --global` or browse individual prompts below. > Each prompt has a full version (documented, with examples) and a > distilled version (token-optimized, for direct use). ## Getting Started - [README](README.md): Quick start, install options, and meta-prompt for organizing your own prompts - [Install Script](install.sh): Shell script to install skills — `./install.sh --global --bundle essentials` - [Contributing Guide](CONTRIBUTING.md): How to create, test, and submit new prompts - [Repository Structure](AGENTS.md): File naming conventions, workflow, and quality standards ## How to Build a Prompt or Skill - [Prompt Template](content/template-prompt.md): Required frontmatter, sections, and format for new prompts - [Research Template](content/template-research.md): Template for research documentation - [Distill Prompt](content/prompt-task-distill-prompt.md): Create lean, token-efficient versions of prompts - [Verify Distilled Prompt](content/prompt-task-verify-distilled-prompt.md): Validate distilled prompts preserve intent - [Extract Prompt](content/prompt-workflow-extract-prompt-from-conversation.md): Turn successful interactions into reusable prompts - [Install Commands Meta-Prompt](content/meta-prompt-install-commands.md): How the installation system works ## Essentials Bundle > Core prompts for everyday development - [Workflow for Deliberate Commits](content/prompt-workflow-deliberate-commits.md): Create well-structured, atomic git commits with clear intent — [distilled](content/distilled/commit.md) - [Systematic Debugging with DDx](content/prompt-task-systematic-debugging.md): 7-step diagnostic workflow for debugging issues — [distilled](content/distilled/debug.md) - [Describe Pull Request](content/prompt-task-describe-pr.md): Generate clear PR descriptions from code changes — [distilled](content/distilled/describe-pr.md) - [Iterative Code Review](content/prompt-task-iterative-code-review.md): Multi-pass code review using Rule of 5 principle — [distilled](content/distilled/code-review.md) - [Research Codebase](content/prompt-task-research-codebase.md): Structured investigation of unfamiliar codebases — [distilled](content/distilled/research-codebase.md) - [Create Handoff Document](content/prompt-workflow-create-handoff.md): Generate context documents for session continuity — [distilled](content/distilled/create-handoff.md) - [Resume from Handoff](content/prompt-workflow-resume-handoff.md): Continue work from a previous session's handoff document — [distilled](content/distilled/resume-handoff.md) ## Planning Bundle > Project planning and implementation workflows - [Create Implementation Plan](content/prompt-workflow-create-plan.md): Design phased implementation plans with TDD approach — [distilled](content/distilled/create-plan.md) - [Implement Plan](content/prompt-workflow-implement-plan.md): Execute implementation plans phase by phase — [distilled](content/distilled/implement-plan.md) - [Iterate on Plan](content/prompt-workflow-iterate-plan.md): Refine and improve existing plans based on feedback — [distilled](content/distilled/iterate-plan.md) - [Create Issues from Plan](content/prompt-task-create-issues.md): Generate trackable issues from implementation plans — [distilled](content/distilled/create-issues.md) - [Design in Practice](content/prompt-workflow-design-in-practice.md): Rich Hickey-inspired design methodology workflow — [distilled](content/distilled/design-practice.md) - [Pre-Mortem Planning](content/prompt-workflow-pre-mortem-planning.md): Anticipate failures before they happen — [distilled](content/distilled/pre-mortem.md) - [Plan-Implement-Verify (TDD)](content/prompt-workflow-plan-implement-verify-tdd.md): Test-driven development workflow — [distilled](content/distilled/tdd.md) - [Plan Review](content/prompt-task-plan-review.md): Iterative review of implementation plans — [distilled](content/distilled/plan-review.md) ## Reviews Bundle > Code, design, and research review processes - [Iterative Code Review](content/prompt-task-iterative-code-review.md): Multi-pass code review using Rule of 5 principle — [distilled](content/distilled/code-review.md) - [Rule of 5 Code Review (Multi-Agent)](content/prompt-workflow-rule-of-5-review.md): High-stakes code review with parallel agent waves — [distilled](content/distilled/rule-of-5.md) - [Optionality Review](content/prompt-workflow-optionality-review.md): Evaluate design decisions for flexibility and reversibility — [distilled](content/distilled/optionality-review.md) - [Multi-Agent Parallel Review](content/prompt-workflow-multi-agent-parallel-review.md): Coordinate multiple agents for comprehensive review — [distilled](content/distilled/multi-agent-review.md) - [Plan Review](content/prompt-task-plan-review.md): Iterative review of implementation plans — [distilled](content/distilled/plan-review.md) - [Design Artifact Review](content/prompt-task-design-review.md): Review problem statements and decision matrices — [distilled](content/distilled/design-review.md) - [Research Review](content/prompt-task-research-review.md): Iterative review of research documents using Rule of 5 — [distilled](content/distilled/research-review.md) - [Issue Tracker Review](content/prompt-task-issue-tracker-review.md): Review issues for completeness and dependencies — [distilled](content/distilled/issue-review.md) - [Universal Rule of 5 Review](content/prompt-task-rule-of-5-universal.md): Steve Yegge's original 5-stage review for any artifact — [distilled](content/distilled/rule-of-5-universal.md) - [Systematic Bias Audit & Mitigation (S-BAM)](content/prompt-task-systematic-bias-audit-and-mitigation.md): Detect, prevent, and mitigate systemic, statistical, and cognitive biases using multidisciplinary frameworks — [distilled](content/distilled/bias-audit.md) - [PWA Accessibility & Reliability Review for Micro-Merchants](content/prompt-task-pwa-accessibility-review.md): 4-domain heuristic review of PWAs targeting non-technical merchants on entry-level devices with volatile connectivity — [distilled](content/distilled/pwa-accessibility-review.md) - [Review Documentation Quality (Rule of 5)](content/prompt-task-review-documentation.md): Iterative review of documentation for cognitive scannability and AI-readiness — [distilled](content/distilled/review-documentation.md) - [Standalone Specification Review (Rule of 5)](content/prompt-task-specification-review.md): Iterative review of technical specifications for autonomy, precision, and AI-readiness — [distilled](content/distilled/specification-review.md) ## Refactoring Bundle > Resonant Coding refactoring skills: scan, guard, and safely execute architectural improvements - [Abstraction Miner (Dry-Dock Protocol)](content/prompt-task-abstraction-miner.md): Scan codebase for semantic duplication and propose reusable abstractions — advisory only, no code changes — [distilled](content/distilled/abstraction-miner.md) - [Context Guardian (Architecture-Aware Generation)](content/prompt-system-context-guardian.md): System prompt that enforces reuse of existing abstractions and prevents architectural drift during development — [distilled](content/distilled/context-guardian.md) - [Resonant Refactor (HumanLayer Handoff)](content/prompt-workflow-resonant-refactor.md): Safe, human-approved refactoring workflow with impact analysis, atomic execution, and automatic rollback — [distilled](content/distilled/resonant-refactor.md) - [Test Friction Diagnostician](content/prompt-task-test-friction-diagnostician.md): Diagnose production code design flaws by reading test pain signals — advisory only, no code changes — [distilled](content/distilled/test-friction.md) - [Test Abstraction Miner](content/prompt-task-test-abstraction-miner.md): Detect Lazy Test clusters in test suites and propose parameterized tests and property-based test escalations — advisory only, no code changes — [distilled](content/distilled/test-abstraction-miner.md) ## Testing Bundle > Test quality tools: diagnose test friction, collapse test duplication, and escalate to property-based tests - [Plan-Implement-Verify (TDD)](content/prompt-workflow-plan-implement-verify-tdd.md): Test-driven development workflow — [distilled](content/distilled/tdd.md) - [Test Friction Diagnostician](content/prompt-task-test-friction-diagnostician.md): Diagnose production code design flaws by reading test pain signals — advisory only, no code changes — [distilled](content/distilled/test-friction.md) - [Test Abstraction Miner](content/prompt-task-test-abstraction-miner.md): Detect Lazy Test clusters in test suites and propose parameterized tests and property-based test escalations — advisory only, no code changes — [distilled](content/distilled/test-abstraction-miner.md) ## Documentation Bundle > Documentation architecture, implementation, and review tools - [Research and Audit Documentation Architecture](content/prompt-task-research-documentation.md): Audit existing documentation or plan a new suite using advanced frameworks — [distilled](content/distilled/research-documentation.md) - [Implement High-Signal Documentation Topics](content/prompt-task-implement-documentation.md): Write documentation using Diátaxis, Info Mapping, and EPPO principles — [distilled](content/distilled/implement-documentation.md) - [Review Documentation Quality (Rule of 5)](content/prompt-task-review-documentation.md): Iterative review of documentation for cognitive scannability and AI-readiness — [distilled](content/distilled/review-documentation.md) - [Write Narrative Article](content/prompt-workflow-write-narrative-article.md): Create engaging technical articles with narrative structure — [distilled](content/distilled/narrative-article.md) ## All Other Prompts - [Distill Prompt](content/prompt-task-distill-prompt.md): Create lean, token-efficient versions of prompts — [distilled](content/distilled/distill-prompt.md) - [Verify Distilled Prompt](content/prompt-task-verify-distilled-prompt.md): Validate distilled prompts preserve essential instructions — [distilled](content/distilled/verify-prompt.md) - [Extract Prompt from Conversation](content/prompt-workflow-extract-prompt-from-conversation.md): Turn successful interactions into reusable prompts — [distilled](content/distilled/extract-prompt.md) ## Research - [Design in Practice Methodology for Software Composition](content/research-design-in-practice-methodology.md) - ["Unified Frameworks for Technical Information Architecture"](content/research-documentation-frameworks.md) - [Test Friction as Design Diagnostic — From Pain to Missing Abstraction](content/research-finding-test-friction-design-diagnostic.md) - [Test Abstraction Pipeline — From Lazy Tests to Property-Based Testing](content/research-finding-test-parameterization-pbt-pipeline.md) - ["Narrative-Driven Writing: Structuring Articles and Blog Posts as Stories"](content/research-narrative-driven-writing.md) - [Comprehensive Frameworks for Bias Detection, Prevention, and Mitigation Across Multidisciplinary Systems](content/research-paper-bias-detection-prevention-mitigation.md) - [Cognitive Architectures for Prompt Engineering](content/research-paper-cognitive-architectures-for-prompts.md) - ["Progressive Web Application Architecture for Micro-Merchants: Usability, Reliability, and Accessibility"](content/research-paper-pwa-accessibility-micro-merchants.md) - [Resonant Coding - From Vibe Coding to Agentic Refactoring](content/research-paper-resonant-coding-agentic-refactoring.md) - [Rule of 5 Multi-Agent Code Review Framework](content/research-paper-rule-of-5-multi-agent-review.md) - ["Structural Diagnostics and Remediation of Software Rigidity: Leveraging the Open-Closed Principle and Object Composition"](content/research-paper-software-rigidity-ocp-composition.md) - [Research on Prompt Token Optimization Strategies](content/research-prompt-token-optimization-strategies.md) - [Universal Rule of 5 Review with Optionality (Enhanced)](content/research-rule-of-5-universal-with-optionality.md) - [Skill Installation Research for Sourcegraph Amp and Gemini CLI](content/research-skill-installation-amp-gemini.md) - ["Research: Standalone Specification Standards for AI-Ready Systems"](content/research-standalone-specification-standards.md) ## Optional - [Manifest](manifest.json): Machine-readable JSON registry of all prompts, bundles, and metadata - [Changelog](CHANGELOG.md): Version history