ai agents

11 prompts 27 guides

Prompts tagged with "ai agents"

Work Out Why an Agent Run Went Wrong

Reads an agent trace to find the first step where the run actually diverged — usually well before the visible failure — classifies the failure type...

0 0

Design an Agent's Memory Across Sessions

Decides what an agent should remember between sessions, what it must forget, how memories are retrieved without flooding the context, and how stale...

0 0

Split Work Between an Orchestrator and Subagents

Decides whether a task genuinely needs multiple agents, then draws the boundaries so each subagent has an isolated context and a verifiable contrac...

0 0

Handle Errors and Retries Inside an Agent Loop

Designs the failure behaviour of an agent loop: which errors are worth retrying, how to keep failed attempts from poisoning the context, and when t...

0 0

Design the Tool Surface for an Agent or MCP Server

Decides which tools should exist and at what granularity, names them so the model picks correctly, and prunes the surface — because tool-selection ...

0 0

Harden a Prompt or Agent Against Prompt Injection

Maps where untrusted text reaches your model, what an attacker could reach through it, and which mitigations are architectural versus merely hopefu...

0 0

Scope What an Agent Is Allowed to Do

Defines an agent's permission surface by blast radius rather than convenience: what it can do freely, what needs approval, what it must never do, a...

0 0

Budget an Agent's Context Window

Treats context as a budget to spend rather than a container to fill, allocating tokens across system prompt, tools, history, and retrieved content,...

0 0

Decide Whether Your Task Actually Needs an Agent

Tests a task against the compounding-reliability math before you build an agent for it, and lays out the cheaper architectures — single call, fixed...

0 0

Design a Tool Description for an AI Agent

Write a clear tool or function definition an AI agent can actually call correctly — unambiguous parameters, a strict schema, and documented failure...

0 0

Write a System Prompt for an AI Agent

Turn a description of what your agent should do into a structured, production-ready system prompt with explicit boundaries and failure behavior.

0 0

Guides on ai agents