Agents Best Practices logo

Agents Best Practices

CommunityPopular
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, record provenance, interactive presentation, user-memory lifecycles, environment-adaptive tools, speculative tool execution, late-bound capabilities, permissions, system prompts, planning, goals, context compaction, memory, skills, MCP/external connectors, public-board communications, self-refining recursive harnesses, programmable context, continual refinement, observability, evals, prompt caching, agent-legible environments, feedback loops, and safety.

Overview

PublisherDenisSergeevitch
Repositoryagents-best-practices
Skill nameagents-best-practices
Stars
2.3K
Forks
209
Bundled files
24
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 24 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by DenisSergeevitch on GitHub. Read the source before you install it.

Installation

Install the Agents Best Practices AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/DenisSergeevitch/agents-best-practices.git \
  .claude/skills/agents-best-practices
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Agents Best Practices in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Agents Best Practices on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Agents Best Practices is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Agents Best Practices

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:

text
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;
  • design agent-rendered interfaces, record provenance, cumulative business limits, or user-memory lifecycles;
  • design an agent for a partially known or changing environment using capability discovery, safe probing, runtime binding, schema verification, or drift invalidation;
  • reduce code-mode or programmatic-tool latency through speculative execution, partial-program analysis, futures, exact claim semantics, or cancellation of unused work;
  • create planning mode, workflow orchestration, goal mode, todo tracking, or long-running task behavior;
  • add context compaction, memory, retrieval, scoped instructions, or prompt hierarchies;
  • design a recursive language model (RLM), programmable-context runtime, self-refining or continual harness, retained child agents, daemon-backed or scheduled agent, or executable skills;
  • attach Agent Skills, reusable workflows, MCP servers, external connectors, or tool search;
  • design agent communication through public boards with explicit public-audience disclosure, user approval, and outbound-data controls;
  • 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:

  1. Domain: what work the agent performs.
  2. Autonomy level: answer-only, draft-only, approval-gated action, or autonomous action within policy.
  3. Risk level: read-only, internal write, external communication, financial, legal, healthcare, security, destructive, or privileged.
  4. State duration: single turn, multi-turn session, resumable workflow, or long-running goal.
  5. Tool surface: internal APIs, hosted tools, MCP/external connectors, browser, sandbox, filesystem, database, communication, or computation.
  6. Validation: what proves the task is complete.

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:

  1. Infer a reasonable first version from the user's domain and stated constraints.
  2. State assumptions briefly instead of blocking on missing details.
  3. Design the smallest safe harness that can accomplish useful work.
  4. 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.
  5. Mark high-risk actions as draft-only or approval-gated by default.
  6. Keep the MVP to the smallest reliable single-loop harness unless the user explicitly asks for a broader architecture.

Environment-Adaptive Tool Mode

Use this mode when the useful tool catalogue, schemas, versions, or implementations are late-bound rather than fully configured before the run. Read environment-adaptive-tools.md together with the standard tool, connector, security, and eval references.

Require a small trusted bootstrap interface, host-owned capability ledger, provenance-labeled descriptors, bounded read-only or isolated probes, opaque scope-and-version bindings, call-time permission checks, and drift invalidation. Discovery, generated code, and inferred schemas must never grant authority. Keep this post-MVP unless adapting to changing environments is the product's primary job; even then, establish a fixed read-only baseline first.

Advanced Recursive and Continual Harness Mode

Use this mode only when the user explicitly asks for programmable context, recursive execution, retained children, continual refinement, executable skills, or daemon/scheduled autonomy. Treat it as post-MVP: establish a measured single-loop baseline first, then read self-refining-recursive-harnesses.md together with the context, workflow, permission, security, and eval references.

Make the context representation, recursive unit, mutable state, promotion scope, lifecycle, budgets, validation probes, and rollback path explicit. Keep base authority, permission enforcement, credentials, budgets, and evaluation policy outside the mutable surface.

Experimental Speculative Tool Execution Mode

Use this mode only when the user explicitly asks to reduce latency by launching tool work before a generated program or action is complete. Establish measured sequential and ordinary committed-parallel baselines first, then read speculative-tool-execution.md together with the loop, tool, security, and eval references.

Require host-owned eligibility, permission at physical dispatch, isolated disposable state, exact versioned claim identity, occurrence-safe handling of stochastic calls, separate waste and cost budgets, confirmed cancellation accounting, and task-parity evaluation. Partial model output never grants authority, and risky or approval-gated effects must not execute speculatively.

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 speculative-tool-execution.md when an advanced code-mode or programmatic-tool harness should prelaunch eligible work during generation while retaining completed-program authority and occurrence-aware claiming.
  • Read tools-and-permissions.md for tool contracts, record provenance, presentation receipts, resulting-state limits, approval logic, structured results, and sandboxing.
  • Read environment-adaptive-tools.md when the tool environment is partially known or changes at runtime and needs bootstrap discovery, schema validation, safe probing, exact binding, or drift handling.
  • Read context-memory-compaction.md for context assembly, user-memory lifecycle and source eligibility, layered 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 self-refining-recursive-harnesses.md for strict RLM and RLM-inspired patterns, programmable context, recursive execution units, retained children, continual refinement, executable skills, and long-running lifecycle controls.
  • Read skills-and-connectors.md for Agent Skills, progressive disclosure, predictive loading, MCP, external connectors, tool search, and attachment strategy. For public-board communication, use its public disclosure and publication contract.
  • 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, runtime-state fixtures, cross-capability cases, safety trace invariants, model/configuration sweeps, 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:

  1. MVP boundary: smallest useful version, assumptions, non-goals, and launch criteria.
  2. Harness boundary: what the model does versus what application code does.
  3. Loop: how model calls, tool calls, tool results, stopping, and retries work.
  4. Instructions: system/developer/user instruction hierarchy and scoped memory.
  5. Tools: tool registry, schemas, outputs, risk classes, permissions, and approval points.
  6. Environment adaptation, when requested: stable bootstrap, discovery, descriptor provenance, safe probes, exact bindings, drift invalidation, and fallback.
  7. Context: retrieval, memory, summarization, cache-aware ordering, compaction triggers, and rehydration.
  8. Planning/goals: when to enter planning mode, when to run a goal-like loop, and how to stop.
  9. Workflow orchestration: when to decompose into durable work packets, worker contexts, verifier contexts, and integration.
  10. Skills/connectors: how skills and MCP/external connectors are discovered, loaded, permissioned, and audited; when public-board communication is requested, make the public audience and publication approval explicit.
  11. Safety: prompt injection boundaries, secrets, sandboxing, data access, and guardrails.
  12. Observability: traces, metrics, replay, auditability, and incident readiness.
  13. Evals: test cases, failure probes, trace grading, regression suites, and launch criteria.
  14. Rollout: minimal viable harness first, then add autonomy only when measured results justify it.
  15. Legibility loop: source-of-truth artifacts, validation signals, feedback capture, and recurring cleanup.
  16. Advanced recursive/continual profile, when requested: context handles, recursive unit, retained lifecycle, mutable state boundary, observed validation, promotion, and rollback.
  17. Experimental speculative execution, when requested: eligibility, exact claim identity, isolated state, waste budgets, cancellation evidence, and parity evaluation against speculation-off.

Non-negotiable principles

  • 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.
  • A changing capability catalogue must enter through a trusted bootstrap contract; discovery, schema inference, and generated helpers never create permissions.
  • 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.
  • Public-board posts are public external disclosures, not private agent memory; make this visible to the agent and user, and enforce publication approval in the host.
  • 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.
  • Recursive and continual harnesses may mutate only typed supplemental state; immutable runtime policy must validate changes, preserve authority boundaries, and support rollback.
  • Speculative execution may predict work but never authorize it; only an exact eligible call in the completed program may claim the result.
  • 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:

markdown
# 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 call a harness self-improving merely because it accumulates memory, or promote a self-authored change without an observed probe and rollback path.
  • 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.
  • Do not claim unknown-environment operation without a stable bootstrap interface, exact runtime bindings, and invalidation when the environment changes.
  • Do not speculate a call merely because it is read-only; privacy, cost, rate limits, observability, cancellation, and discard safety must all pass host policy.

Source links for further reading

Use these links when provider-specific detail is needed:

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Agents Best Practices AI skill do?

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, record provenance, interactive presentation, user-memory lifecycles, environment-adaptive tools, speculative tool execution, late-bound capabilities, permissions, system prompts, planning, goals, context compaction, memory, skills, MCP/external connectors, public-board communications, self-refining recursive harnesses, programmable context...

Why use Agents Best Practices on TypingMind?

Because you install it once and use it with any model. Agents Best Practices is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Agents Best Practices in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/DenisSergeevitch/agents-best-practices/tree/main. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Agents Best Practices?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Agents Best Practices?

As many as you like. As long as a model supports skills, you can use Agents Best Practices with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Agents Best Practices AI skill free?

Yes. It is published on GitHub by DenisSergeevitch under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇