agentic-engineering

A software-development process based on careful planning, small code changes, matching existing conventions, and tests before completion.

In plain words
What is it for?
Use it to define assumptions and success checks, make focused edits, run relevant tests, and review agent workflows.
Why use it?
It helps prevent rushed changes, unnecessary refactoring, and claims that work is finished without verification.

Skill for Claude CodeCodexCursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/vpeetla-ai/react-agent-pattern/agentic-engineering
Any agent
npx skills add vpeetla-ai/react-agent-pattern --skill agentic-engineering
Clone the repo
git clone --depth 1 https://github.com/vpeetla-ai/react-agent-pattern

Made for: Claude Code, Codex, Cursor.

Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 323 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00046 $0.00323
Opus 5 $0.00023 $0.00161
Sonnet 5 $0.00009 $0.00065
Haiku 4.5 $0.00005 $0.00032

Measured yesterday against content hash eacbd34bf3d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agentic-engineering scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to agentic-engineering — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.cursor/skills/agentic-engineering/SKILL.md · 40 lines

What it actually says

Agentic Engineering

Not vibe coding — preserve professional quality while moving faster.

Before writing code

  1. State assumptions and success criteria (tests, API response, UI behavior)
  2. Identify smallest change that satisfies the request
  3. Read surrounding files — match naming, types, error handling

While coding

  • Simplicity first — no speculative abstractions or "while I'm here" refactors
  • Surgical diffs — touch only files required for the task
  • Match conventions — see target repo's pyproject.toml, eslint, existing patterns

Before claiming done

  1. Run relevant tests (pytest -q, npm test, typecheck)
  2. For agent graphs: verify routing + at least one happy-path trace
  3. Summarize what changed and what was not changed (scope boundary)

Red flags — stop and ask

  • Request touches governance + orchestration in one PR (split layers)
  • Side effect without gateway/HITL (publish, push, notify)
  • No test strategy for new behavior

Reference

Karpathy: From Vibe Coding to Agentic Engineering

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 40 lines · 46 tokens per session scan A eacbd34bf3d7

Subscribe to this mod's changes

agentic-engineering is a skill published in the GitHub repository vpeetla-ai/react-agent-pattern (2 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 323 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to agentic-engineering, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

deploy-vercel-render

Deploy vpeetla-ai demos: Vercel static/Next.js frontends, Render FastAPI backends, env vars, free tier gotchas. Use when shipping demos, fixing deploy failures, or adding render.yaml / vercel.json.

vpeetla-ai/multi-agent-system-pattern · 55 tokens

langgraph-orchestration

Build or modify LangGraph StateGraph agents in vpeetla-ai repos: typed state, nodes, conditional edges, MemorySaver, interruptbefore HITL. Use when adding orchestrators, coding loops, or multi-agent graphs.

vpeetla-ai/multi-agent-system-pattern · 52 tokens

portfolio-adr

Write ADRs, case studies, and portfolio copy for ai-architecture-portfolio and venkat-ai-portfolio. Use when documenting decisions, updating ecosystem pages, or syncing GitHub profile README with live demos.

vpeetla-ai/multi-agent-system-pattern · 46 tokens

tdd-agent-loops

Test-driven development for agent systems: red-green-refactor on graphs, mocked LLM fixtures, pytest-asyncio, trace assertions. Use when adding agent nodes, fixing loop bugs, or building pattern repos.

vpeetla-ai/multi-agent-system-pattern · 48 tokens

aegis-gateway

Integrate AegisAI gateway before tool side effects (notify, publish, deploy). Use when adding Slack/Telegram/WhatsApp notify, content publish, or any irreversible external action in VAP, AegisLoop, or ai-content-factory.

vpeetla-ai/multi-agent-system-pattern · 58 tokens

hitl-side-effects

Add human-in-the-loop gates for irreversible actions: LangGraph interruptbefore, AegisAI approval queue, UI approve/resume endpoints. Use when shipping, publishing, notifying, or merging agent-generated changes.

vpeetla-ai/multi-agent-system-pattern · 47 tokens