← ClaudeAtlas

agent-project-developmentlisted

This skill should be used when the user asks to "start an LLM project", "design batch pipeline", "evaluate task-model fit", "structure agent project", or mentions pipeline architecture, agent-assisted development, cost estimation, or choosing between LLM and traditional approaches. NOT for evaluating agent quality or building evaluation rubrics (use agent-evaluation), NOT for multi-agent coordination or agent handoffs (use multi-agent-patterns).
viktorbezdek/skillstack · ★ 9 · AI & Automation · score 74
Install: claude install-skill viktorbezdek/skillstack
# Project Development Methodology Principles for identifying tasks suited to LLM processing, designing effective project architectures, and iterating rapidly using agent-assisted development. Applies whether building a batch processing pipeline, a multi-agent research system, or an interactive agent application. ## When to Activate - Starting a new project that might benefit from LLM processing - Evaluating whether a task is well-suited for agents versus traditional code - Designing the architecture for an LLM-powered application - Planning a batch processing pipeline with structured outputs - Choosing between single-agent and multi-agent approaches - Estimating costs and timelines for LLM-heavy projects ## Decision Tree: Task-Model Fit ``` Should you use LLM processing for this task? +-- Does it require synthesis across sources? --> Likely YES +-- Does it involve subjective judgment with rubrics? --> Likely YES +-- Is natural language the desired output? --> Likely YES +-- Is there tolerance for individual errors? --> Likely YES +-- Is the domain knowledge in the model's training? --> Likely YES | +-- Does it require precise computation? --> Likely NO (use traditional code) +-- Does it need real-time sub-second responses? --> Likely NO +-- Does it require perfect accuracy? --> Likely NO (hallucination risk) +-- Does it depend on proprietary data the model lacks? --> Likely NO +-- Must same input produce identical output? --> Likely NO | +-- Mixed? --> Manual prototype f