AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ai Agent Papers Guide

skill-wentorai-research-plugins-ai-agent-papers-guide · by wentorai

Curated 2024-2026 AI agent research papers collection

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-wentorai-research-plugins-ai-agent-papers-guide

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-wentorai-research-plugins-ai-agent-papers-guide)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ai Agent Papers Guide? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AI Agent Papers Guide (2024-2026)

Overview

A focused collection of AI agent research papers from 2024-2026, tracking the latest developments in LLM-based agent systems. Unlike broader collections, this focuses on recent breakthroughs — new architectures, benchmarks, multi-agent coordination, and real-world applications. Updated frequently as the field evolves rapidly.

Paper Categories

Recent AI Agent Research
├── Agent Architectures
│   ├── Planning (o1-style reasoning, search-augmented)
│   ├── Memory (long-term, episodic, working)
│   └── Tool use (function calling, code execution)
├── Multi-Agent Systems
│   ├── Collaboration (task decomposition, debate)
│   ├── Competition (red team, adversarial)
│   └── Emergence (self-organization, culture)
├── Evaluation
│   ├── Benchmarks (SWE-bench, WebArena, GAIA)
│   ├── Safety (jailbreak, misuse, alignment)
│   └── Reliability (error recovery, hallucination)
├── Applications
│   ├── Software engineering (coding agents)
│   ├── Scientific research (lab automation)
│   ├── Web automation (browsing, form-filling)
│   └── Enterprise (workflow, data analysis)
└── Infrastructure
    ├── Frameworks (LangGraph, CrewAI, AutoGen)
    ├── Protocols (MCP, A2A, tool standards)
    └── Deployment (scaling, monitoring, cost)

Highlighted Papers (2024-2025)

| Paper | Venue | Key Contribution | |-------|-------|-----------------| | SWE-agent | ICLR 2025 | Agent interface design for SE | | OpenHands | 2024 | Open platform for coding agents | | AgentBench | ICLR 2024 | Multi-environment agent benchmark | | GAIA | ICLR 2024 | General AI assistant benchmark | | Voyager | NeurIPS 2024 | Lifelong learning in Minecraft | | OS-Copilot | 2024 | Self-improving computer agent | | AutoGen | 2024 | Multi-agent conversation framework | | Agent-FLAN | ACL 2024 | Agent fine-tuning methodology |

Tracking New Papers

import arxiv
from datetime import datetime, timedelta

def find_recent_agent_papers(days=14):
    """Find cutting-edge agent papers."""
    queries = [
        "ti:agent AND (ti:LLM OR ti:language model)",
        "abs:autonomous agent AND abs:tool use AND abs:2024",
        "ti:multi-agent AND abs:large language",
        "abs:coding agent OR abs:software agent",
    ]

    seen = set()
    papers = []

    for q in queries:
        search = arxiv.Search(
            query=q, max_results=15,
            sort_by=arxiv.SortCriterion.SubmittedDate,
        )
        for r in search.results():
            if r.entry_id not in seen:
                seen.add(r.entry_id)
                papers.append({
                    "title": r.title,
                    "date": r.published.strftime("%Y-%m-%d"),
                    "url": r.entry_id,
                })

    papers.sort(key=lambda x: x["date"], reverse=True)
    for p in papers[:20]:
        print(f"[{p['date']}] {p['title']}")
        print(f"  {p['url']}")

find_recent_agent_papers()

Framework Comparison

frameworks = {
    "LangGraph": {
        "paradigm": "Graph-based workflows",
        "persistence": "Built-in checkpointing",
        "multi_agent": "Yes",
        "language": "Python/JS",
    },
    "CrewAI": {
        "paradigm": "Role-based agents",
        "persistence": "Memory module",
        "multi_agent": "Yes (crew)",
        "language": "Python",
    },
    "AutoGen": {
        "paradigm": "Conversational agents",
        "persistence": "Chat history",
        "multi_agent": "Yes (group chat)",
        "language": "Python/.NET",
    },
    "OpenHands": {
        "paradigm": "Computer use agent",
        "persistence": "Workspace state",
        "multi_agent": "No",
        "language": "Python",
    },
}

for name, info in frameworks.items():
    print(f"\n{name}:")
    for k, v in info.items():
        print(f"  {k}: {v}")

Use Cases

  1. Literature tracking: Stay current on agent research
  2. Framework selection: Compare agent development tools
  3. Research planning: Identify open problems and trends
  4. Course material: Teach cutting-edge agent systems
  5. Benchmark tracking: Compare agent capabilities

References

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.