Install
openclaw skills install agentic-engineeringWork effectively with AI coding agents using parallel terminals, blast radius thinking, atomic commits, and pragmatic tool selection.
openclaw skills install agentic-engineeringUser works with AI coding agents (Claude Code, Codex CLI, or similar) and wants to maximize productivity. Use for workflow optimization, parallel agent coordination, context management, and developing intuition for agentic development.
| Topic | File |
|---|---|
| Parallel workflow | parallel.md |
| Blast radius | blast-radius.md |
| Context & prompts | context.md |
| Tool selection | tools.md |
Agentic engineering is about working WITH AI coding agents effectively, not building agent systems. The term was popularized by Peter Steinberger (steipete.me) in late 2025.
Core principle: Just talk to it. Skip the elaborate tooling, RAG setups, and complex orchestration. Develop intuition through practice.
Run 3-8 coding agent instances simultaneously in a terminal grid:
┌─────────┬─────────┬─────────┐
│ Agent 1 │ Agent 2 │ Agent 3 │
│ (main) │ (refac) │ (tests) │
├─────────┼─────────┼─────────┤
│ Agent 4 │ Agent 5 │ Agent 6 │
│ (ui) │ (docs) │ (debug) │
└─────────┴─────────┴─────────┘
Most agents work in the same folder. No worktrees. Pick non-overlapping areas.
Before each prompt, estimate:
Small blast radius → multiple parallel agents. Large blast radius → one focused agent.
Configure agents to commit their own changes:
This keeps history navigable when multiple agents work simultaneously.
Spend ~20% of time on refactoring (also done by agents):
Iterate fast, then pay back tech debt.
Prefer CLIs that agents already know:
✅ gh, vercel, psql, axiom
❌ Complex MCPs that pollute context
One line in AGENTS.md: "logs: use vercel cli" is enough.
50%+ of prompts should include screenshots:
No need to annotate — agents are good at matching.
If something takes longer than expected:
Don't be afraid to stop agents mid-work. File changes are atomic.
This skill ONLY:
This skill NEVER:
Data that leaves your machine:
Data that stays local:
This skill does NOT: