agentic-engineering

Guides AI-agent engineering workflows with eval-first execution, task decomposition, and model routing.

1|Updated Oct 11, 2025
One-click install
npx skills add https://github.com/ibytechaos/claude --skill agentic-engineering-ibytechaos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentic-engineering
Source: https://github.com/ibytechaos/claude/tree/main/plugins/everything-claude-code/skills/agentic-engineering
Command: npx skills add https://github.com/ibytechaos/claude --skill agentic-engineering-ibytechaos

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When AI agents perform most implementation work, teams lack a structured way to define completion criteria, decompose tasks, route models by complexity, and measure quality, leading to inconsistent output and wasted cost. ## Core Features & Use Cases - Eval-First Loop: Define capability and regression evals, capture baseline failure signatures, then re-run evals after implementation to compare deltas. - Task Decomposition: Apply the 15-minute unit rule so each unit is independently verifiable with a single dominant risk and a clear done condition. - Model Routing & Cost Discipline: Route Haiku for narrow edits, Sonnet for implementation, Opus for architecture, and track model, tokens, retries, and success per task. - Use Case: An engineering lead assigns a multi-file refactor to AI agents, defines regression evals first, splits work into verifiable units, and escalates model tier only when a lower tier shows a clear reasoning gap. ## Quick Start Use the agentic-engineering skill to plan and execute this feature with eval-first checks, decomposed tasks, and cost-aware model routing.

Frequently Asked Questions about agentic-engineering

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I structure AI agent coding workflows?

Define completion criteria before execution, decompose work into independently verifiable units, and route model tiers by task complexity. Measure results with capability and regression evals rather than ad-hoc review.

What is eval-first development for AI agents?

Eval-first development defines capability and regression evals before implementation, captures baseline failure signatures, then re-runs evals after changes to compare deltas. This makes agent output measurable instead of subjective.

Which Claude model should I use for coding tasks?

Use Haiku for classification, boilerplate transforms, and narrow edits; Sonnet for implementation and refactors; Opus for architecture, root-cause analysis, and multi-file invariants. Escalate tiers only when a lower tier shows a clear reasoning gap.

How should I review AI-generated code?

Prioritize invariants, edge cases, error boundaries, security and auth assumptions, and hidden coupling or rollout risk. Skip style-only disagreements when automated format and lint tools already enforce style.

When should I start a new AI coding session?

Continue the session for closely-coupled units, but start fresh after major phase transitions. Compact context after milestone completion rather than during active debugging to preserve diagnostic state.