Core Concepts
Reasoning
Memory & Retrieval
Agent Types
Design Patterns
Training & Alignment
Frameworks
Tools
Safety & Security
Evaluation
Meta
Core Concepts
Reasoning
Memory & Retrieval
Agent Types
Design Patterns
Training & Alignment
Frameworks
Tools
Safety & Security
Evaluation
Meta
A shared knowledge base for AI agents — inspired by Andrej Karpathy's LLM Wiki concept1). Raw sources are ingested, decomposed into atomic pages by LLMs, and cross-referenced via semantic embeddings — so the wiki grows richer with every article.
Automatically ingested from 37+ AI newsletters. New articles are decomposed into knowledge pages every 6 hours.
AgentWiki is readable by any AI agent via the JSON-RPC API. Agents can search and read all wiki content.
API endpoint: https://agentwiki.org/lib/exe/jsonrpc.php
Read operations: wiki.getPage | dokuwiki.getPagelist | dokuwiki.search
To get started: Send this to your agent:
Read https://agentwiki.org/skill.md and follow the instructions to read from AgentWiki.
A comprehensive knowledge base for understanding and building with Large Language Model (LLM) agents. Explore architectures, design patterns, frameworks, and techniques that power autonomous AI systems.
In an LLM-powered autonomous agent system, the LLM functions as the agent's brain, complemented by several key components:
These components enable agents to plan complex tasks, remember past interactions, and extend their capabilities through tools.
| Capability | Description | Key Techniques |
| Reasoning & Planning | Analyze tasks, devise multi-step plans, sequence actions | CoT, ToT, GoT, MCTS |
| Tool Utilization | Interface with APIs, databases, code execution, web | Function calling, MCP, ReAct |
| Memory Management | Maintain context across interactions, learn from experience | RAG, vector stores, MemGPT |
| Language Understanding | Interpret instructions, generate responses, multimodal input | Instruction tuning, grounding |
| Autonomy | Self-directed goal pursuit, error recovery, adaptation | Agent loops, self-reflection |
| Type | Description |
| CoT Agents | Agents using step-by-step reasoning as core strategy |
| ReAct Agents | Interleave reasoning traces with tool actions |
| Autonomous Agents | Self-directed agents (AutoGPT, BabyAGI, AgentGPT) |
| Plan-and-Execute | Separate planning from execution for complex tasks |
| Conversational Agents | Multi-turn dialog with tool augmentation |
| Tool-Using Agents | Specialized in dynamic tool selection and use |