SKILL.md
Autonomous Agents Papers Guide
Overview
A daily-updated collection of research papers on autonomous AI agents — systems that use LLMs for planning, reasoning, tool use, and multi-step task execution. Covers the full agent stack from foundational prompting techniques (ReAct, Chain-of-Thought) to multi-agent systems, memory architectures, and real-world deployments. Organized chronologically with category tags for easy navigation.
Agent Taxonomy
Autonomous Agents
├── Planning & Reasoning
│ ├── Chain-of-Thought (CoT, ToT, GoT)
│ ├── ReAct (Reasoning + Acting)
│ ├── Reflexion (Self-reflection)
│ └── LATS (Language Agent Tree Search)
├── Tool Use & Actions
│ ├── Function calling
│ ├── Code execution
│ ├── Web browsing
│ └── API interaction
├── Memory Systems
│ ├── Short-term (context window)
│ ├── Long-term (vector stores)
│ ├── Episodic (experience replay)
│ └── Procedural (learned strategies)
├── Multi-Agent Systems
│ ├── Debate/discussion (ChatDev, MetaGPT)
│ ├── Hierarchical (manager/worker)
│ ├── Collaborative (shared goals)
│ └── Competitive (adversarial)
└── Applications
├── Software engineering (SWE-agent, Devin)
├── Scientific research (AI Scientist)
├── Web automation (WebArena)
└── Game playing (Voyager)
Landmark Papers
| Paper | Year | Key Contribution |
|---|---|---|
| ReAct | 2023 | Interleaving reasoning and acting |
| Toolformer | 2023 | Self-taught tool use |
| Voyager | 2023 | Lifelong learning agent in Minecraft |
| AutoGPT | 2023 | Autonomous goal-directed agent |
| MetaGPT | 2023 | Multi-agent software company |
| Reflexion |
