What problem does it solve? Teams often waste weeks building LLM automation for tasks the model cannot reliably perform, or over-engineer architectures that constrain rather than help. This Skill provides a methodology for validating task-model fit before writing code, structuring pipelines as discrete cacheable stages, and estimating costs upfront. ## Core Features & Use Cases - Task-Model Fit Evaluation: Checklists distinguishing LLM-suited tasks (synthesis, rubric-based judgment, batch processing) from unsuited ones (precise computation, real-time, deterministic output), plus a manual prototyping step before automation. - Pipeline Architecture Guidance: The canonical acquire → prepare → process → parse → render structure, using the file system as a state machine for idempotency, caching, and debugging. - Cost and Scale Estimation: Token-based cost formulas with buffers for retries, plus guidance on architectural reduction and single vs multi-agent decisions. - Use Case: Before building a batch pipeline to grade 1,000 support tickets, manually test one ticket with the target model, design the five-stage pipeline with per-item directories, and estimate total token cost. ## Quick Start Ask the agent to evaluate whether your task is suited for LLM processing and design a staged pipeline architecture with a cost estimate.