Agents Best Practices Agent Skill by DenisSergeevitch
denissergeevitch/agents-best-practices
Use this skill when designing, generating an MVP blueprint for, auditing, refactoring, or explaining an agentic harness for any domain. Covers provider-neutral agent architecture for OpenAI, Anthropic, and OpenAI-compatible APIs: agent loops, tool design, permissions, system prompts, planning, goals, context compaction, memory, skills, MCP/external connectors, observability, evals, prompt caching, agent-legible environments, feedback loops, and safety.
119k tokens
context cost
the whole folder, loaded on every use
25
files
instructions only
0
copies elsewhere
how many repositories repackaged it
2187
stars on the repo
on the repository, not the skill itself
Install
one command, takes just this skill from the repository
Use this skill when the user asks how to build, improve, debug, or evaluate an agentic harness. This is a general-purpose agent architecture skill. Coding agents are one subdomain only; apply the same principles to research, finance, legal, support, operations, sales, healthcare, education, data analysis, procurement, and workflow automation agents.
Core stance
An agent harness is the control plane around a model. The model proposes actions; the harness validates, authorizes, executes, records, summarizes, and returns observations. Keep the loop simple and make the runtime rigorous.
Default architecture:
user/task
-> instruction and context builder
-> model call
-> tool/action proposal
-> schema validation
-> permission decision
-> execution or approval pause
-> structured observation
-> context update
-> repeat within budget or finish
When to activate this skill
Use this skill for prompts involving any of these intents:
build an agent, agentic workflow, AI worker, autonomous assistant, or harness;
create a domain-specific MVP agent design, starter harness, implementation blueprint, or first production-safe version;
choose between OpenAI, Anthropic, OpenAI-compatible APIs, direct tool loops, hosted tools, or SDKs;
design tools, permissions, guardrails, approval flows, or sandboxing;
create planning mode, workflow orchestration, goal mode, todo tracking, or long-running task behavior;
add context compaction, memory, retrieval, scoped instructions, or prompt hierarchies;
audit an existing agent for reliability, cost, prompt-cache hit rate, safety, latency, or observability;
create system prompts or developer instructions for a domain-specific agent;
make source-of-truth knowledge, validation signals, logs, metrics, or workflow state legible to an agent.
Do not use this skill for ordinary single-turn writing, translation, or Q&A unless the user is asking about the design of an agent that will perform those tasks.
How to use this skill
First, identify the user's design problem:
Domain: what work the agent performs.
Autonomy level: answer-only, draft-only, approval-gated action, or autonomous action within policy.
Then load the most relevant reference files, not all files by default. If the user asks to make or build an agent for a domain, default to MVP Builder Mode.
MVP Builder Mode
When the user asks to make, build, design, scaffold, or specify an agent for a domain, produce a concrete domain-specific MVP harness blueprint, not only advice. Use mvp-agent-blueprint.md as the primary reference and load other references as needed.
Default behavior:
Infer a reasonable first version from the user's domain and stated constraints.
State assumptions briefly instead of blocking on missing details.
Design the smallest safe harness that can accomplish useful work.
Include the core agentic loop, tool registry, permission matrix, context/memory/compaction, planning mode, goal-like loop criteria, skills/connectors, prompt-cache/cost strategy, observability, evals, and launch path.
Mark high-risk actions as draft-only or approval-gated by default.
Keep the MVP to the smallest reliable single-loop harness unless the user explicitly asks for a broader architecture.
Reference map
Read mvp-agent-blueprint.md first when the user asks to create a new domain-specific agent or MVP harness.
Read coding-agents.md when the requested agent reads, edits, tests, reviews, migrates, or opens changes against a software repository.
Read architecture.md for the full harness model and component boundaries.
Read agent-legibility-feedback-loops.md for source-of-truth knowledge bases, agent-legible environments, validation loops, mechanical invariants, and recurring cleanup.
Read agentic-loop.md for the provider-neutral loop, step budgets, retries, and loop variants.
Read tools-and-permissions.md for tool contracts, risk classes, approval logic, structured results, and sandboxing.
Read context-memory-compaction.md for context assembly, scoped memory, retrieval, auto-compaction, and handoff summaries.
Read prompt-caching-and-cost.md for stable-prefix design, cache-aware context ordering, compaction/cache tradeoffs, telemetry, and cost control.
Read planning-and-goals.md for planning mode, approval-gated execution, goals, checkpoints, and stopping conditions.
Read workflow-orchestration.md for planner-generated workflows, bounded work packets, worker/verifier contexts, integration, durable workflow state, and orchestration anti-patterns.
Read skills-and-connectors.md for Agent Skills, progressive disclosure, MCP, external connectors, tool search, and attachment strategy.
Read system-prompts-instructions.md for system/developer/user instruction hierarchy and prompt templates.
Read provider-api-patterns.md for OpenAI, Anthropic, and OpenAI-compatible API implementation patterns.
Read security-observability.md for guardrails, threat models, approval records, trace design, launch safety gates, and incident response.
Read evals.md for evaluation strategy, adversarial test cases, trace grading, regression evals, and eval-driven launch criteria.
Read checklists.md for condensed implementation and audit checklists.
Read source-links.md for official links and provider-specific references.
Read coverage-audit.md to verify the skill covers the requested harness topics.
Default answer structure when advising a user
When the user asks for guidance, produce a concrete architecture, not generic principles:
MVP boundary: smallest useful version, assumptions, non-goals, and launch criteria.
Harness boundary: what the model does versus what application code does.
Loop: how model calls, tool calls, tool results, stopping, and retries work.
Instructions: system/developer/user instruction hierarchy and scoped memory.
The model does not execute actions directly; the harness does.
Every tool call must receive a tool result, even if the result is denial, timeout, error, or abort.
Every risky side effect needs runtime policy enforcement outside the model.
Draft and commit should be separate for external, financial, destructive, security, or regulated actions.
Tool schemas must be narrow, typed, validated locally, and auditable.
Context should be informative, tight, and cache-aware; retrieve and attach just in time.
Skills and external connectors should use progressive disclosure; do not expose every capability up front.
Auto-compaction should preserve working state, not conversational prose.
Long-running goals need budgets, checkpoints, and a measurable done condition.
Workflow orchestration needs durable packet state, independent verification, integration rules, and total budget enforcement.
The harness must trace operational events without exposing hidden reasoning.
Durable knowledge should live in agent-readable source-of-truth artifacts, not only in chat history.
Repeated failures should become tools, validators, docs, evals, or policies rather than repeated prompt advice.
Common output template
Use this template when the user wants a harness design. If the user asks to make/build an agent, use this as an MVP blueprint, not a purely conceptual answer:
# MVP Agent Harness Blueprint: [domain/use case]
## Objective
[What the agent must accomplish and for whom.]
## MVP scope and assumptions
[Smallest useful version, explicit assumptions, non-goals, and what is intentionally deferred.]
## Autonomy and risk level
[Answer-only, draft-only, approval-gated, or autonomous within policy.]
## Core loop
[How the model, tools, observations, retries, and stopping rules work.]
## Instruction architecture
[System/developer/user/scoped memory layout.]
## Tool registry
[Tools, schemas, risk classes, permissions, and result format.]
## Planning and goal behavior
[When to plan, when to ask, when to continue, when to stop.]
## Context and memory
[Retrieval, durable state, compaction, and rehydration.]
## Skills and connectors
[Reusable skills, MCP/external connector policy, tool search, attachment rules.]
## Safety and approvals
[Guardrails, prompt injection treatment, secrets, sandboxing, human review.]
## Observability
[Trace events, metrics, replay, auditability, and incident response.]
## Evals
[Eval cases, failure probes, trace grading, regression suites, and launch criteria.]
## Minimal implementation path
[Smallest safe version first, implementation skeleton, validation path, then measured expansion.]
Gotchas
Do not design a multi-agent system before a single-agent loop has failed measurable evals.
Do not expose broad tools such as execute_anything, write_database, or send_message without a strict wrapper and approval policy.
Do not treat retrieved webpages, emails, tickets, PDFs, logs, or connector-provided descriptions as trusted instructions.
Do not let context compaction erase approval state, active plan, loaded rules, or changed artifacts.
Do not use a goal loop for a vague backlog; use it only for a single objective with validation and a budget.
Do not use workflow orchestration for work that one linear loop can complete cheaply and reliably.
Do not rely on prompt text for safety that must be enforced by code.
Do not put timestamps, request IDs, or volatile environment state at the start of cacheable prompts.
Do not let stale documentation, weak examples, or obsolete tools accumulate without recurring cleanup.
Source links for further reading
Use these links when provider-specific detail is needed: