Skip to content
MDRSS
CatalogTrendsHelp
Sign inCreate account
MDRSS · Distributed research commonsv1.9.7 · built 2026-08-04 18:47 UTC · local
TermsAcceptable useCopyrightPrivacyCatalogExplore trendsResearch PulseMachine accessHelpChangelogRSSGitHubfeedback@mail.mdrss.com
Home
Research feedTrends
Catalog
All domains
AI Agents & Automation225
LLM Engineering119
Multimodal AI30
Software Craft166
Platforms & Operations73
Web & Mobile79
Security & Privacy61
Crypto & Web339
Growth & Discovery36
Learning & Craft38
GEO / AI Search Visibility52
Data & Research31
#testmehey0#collider-club487#ai-agents128#agent111#ai-agent-systems110#software-architecture-backend99#software-craft99#python92#agent-design-and-orchestration91#patterns82#ai76#agents61#security57#llm56#geo53#pattern53#ai-seo52#llm-visibility52#llm-engineering51#llm-ml-engineering51#testing51#frontend-ux-accessibility50#web-mobile50#design49#accessibility48#accessibility-mobile-ux46#cloud-reliability46#platforms46#awesome44#detailed44#skills44
Knowledge cards
NewestMost popularTop MDRSS scoreMost discussed
MDRSS/#ai-agents
CUSTOM KNOWLEDGE FEED

#ai-agents

128 cards

This feed is generated directly from exact card hashtags; there is no separate feed-content copy.

Subscribe to this viewRSSJSON
MCP Server Best Practices

The name should be general, descriptive of the service being integrated, easy to infer from the task description, and without version numbers. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/mcp-tooling-and-contextreference#ai-agent-systems#mcp-tooling-and-context#naming#server
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
MCP Server Evaluation Guide

This document provides guidance on creating comprehensive evaluations for MCP servers. Evaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions using only the tools provided. Use it to navigate the topic and choose relevant methods, papers or tools.

ai-agents/mcp-tooling-and-context
reference
#ai-agent-systems
#mcp-tooling-and-context
#evaluation
#mcp
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
MCP Server Development Guide

Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Use it to make implementation decisions and avoid common dead ends.

ai-agents/mcp-tooling-and-contextguide#ai-agent-systems#mcp-tooling-and-context#mcp#phase
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — TypeScript

List files the agent wrote to /mnt/session/outputs/ during a session, then. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#session#custom
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Tool Use — TypeScript

For conceptual overview (tool definitions, tool choice, tips), see shared/tool-use-concepts.md. Use it to give an agent explicit responsibilities, steps and constraints.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#tool#files
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Claude API — TypeScript

For operator instructions that arrive mid-conversation (mode switches, injected state), append {role: "system", ..} to messages instead of editing top-level system — this preserves the cached prefix and carries operator authority. Must follow a user message (or an assista. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#system#claude
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Tool Use Concepts

This file covers the conceptual foundations of tool use with the Claude API. For language-specific code examples, see the python/, typescript/, or other language folders. For decision heuristics on which tools to expose, how to manage context in long-running agents, and cachi. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#tool#tools
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Prompt Caching — Design & Optimization

This file covers how to design prompt-building code for effective caching. For language-specific syntax, see the Prompt Caching section in each language's README or single-file doc. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#prompt#caching
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Model Migration Guide

How to move existing code to newer Claude models. Covers breaking changes, deprecated parameters, and drop-in replacements for retired models. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#model#sonnet
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Webhooks

Anthropic can POST to your HTTPS endpoint when a Managed Agents resource changes state — an alternative to holding an SSE stream or polling. Payloads are thin (event type + resource IDs only); on receipt, fetch the resource for current state. Every delivery is HMAC-signed. Use it to give an agent explicit responsibilities, steps and constraints.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#managed#agents
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Tools & Skills

Override defaults for individual tools. This example enables everything except bash:. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#tools#skills
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Self-Hosted Sandboxes

With config.type: "self hosted", the agent loop stays on Anthropic's orchestration layer but tool execution moves to infrastructure you control — bash, file ops, and code run inside your container, so filesystem contents and network egress never leave your environment. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#run#managed
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Scheduled Deployments

A scheduled deployment runs an agent on a recurring cron schedule — each firing creates a session autonomously. Use it for predictable-cadence work: nightly triage, weekly compliance scans, hourly monitors. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#scheduled#deployment
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Overview

Managed Agents provisions a container per session as the agent's workspace. The agent loop runs on Anthropic's orchestration layer; the container is where the agent's tools execute — bash commands, file operations, code. You create a persisted Agent config (model, system pr. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#agent#managed
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Outcomes

An outcome elevates a session from conversation to work : you state what "done" looks like, and the harness runs an iterate → grade → revise loop until the artifact meets the rubric, hits max iterations, or is interrupted. A separate grader (independent context windo. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#managed#agents
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Onboarding Flow

Claude Managed Agents is a hosted agent: Anthropic runs the agent loop and provisions a sandboxed container per session where the agent's tools execute (or your own worker, with a self hosted environment — see shared/managed-agents-self-hosted-sandboxes.md). You supply an a. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#agent#managed
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Multiagent Sessions

A coordinator agent can delegate to other agents within one session. All agents share the container and filesystem ; each runs in its own thread — a context-isolated event stream with its own conversation history, model, system prompt, tools, MCP servers, and skills (from. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#agents#multiagent
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Memory Stores

Sessions are ephemeral by default — when one ends, anything the agent learned is gone. A memory store is a workspace-scoped collection of small text documents that persists across sessions. When a store is attached to a session (via resources[]), it is mounted into the cont. Use it as a repeatable review, validation or hardening pass.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#memory#store
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Events & Steering

Send events to a session via POST /v1/sessions/{id}/events. Use it to ground design choices in named patterns, trade-offs and examples.

ai-agents/agent-design-and-orchestrationreference#ai-agent-systems#agent-design-and-orchestration#events#steering
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
Managed Agents — Environments & Resources

Creating a session requires an environment id. Environments are reusable configuration templates for spinning up containers in Anthropic's infrastructure — you might create different environments for different use cases (e.g. data visualization vs web development, with diff. Use it to give an agent explicit responsibilities, steps and constraints.

ai-agents/agent-design-and-orchestrationguide#ai-agent-systems#agent-design-and-orchestration#environments#resources
#ai-agents · by Collider.club
MARKDOWN SNAPSHOT

Loading…

★ 0◌ 0
← PreviousPage 4Next →