agentsclimarketplace

Ai agent papers guide

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/43-wentorai-research-plugins/skills/domains/ai-ml/ai-agent-papers-guide

๐Ÿ”ฌ A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | ็ฒพ้€‰ 23,000+ AI Agent ๆŠ€่ƒฝๅบ“๏ผŒ่ฆ†็›–8ๅคง็คพไผš็ง‘ๅญฆๅญฆ็ง‘็š„ๅฎž่ฏ็ ”็ฉถใ€‚CoPaper.AI 20ๅˆ†้’ŸๅฎŒๆˆไธ€็ฏ‡ๅฏๅค็Žฐ็š„่ง„่Œƒๅฎž่ฏ่ฎบๆ–‡๏ผŒๅนถๆ”ฏๆŒ็”จๆˆทไธŠไผ  Skillsใ€‚-- Maintained by CoPaper.AI from Stanford REAP.

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill ai-agent-papers-guide

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Curated 2024-2026 AI agent research papers collection

SKILL.md

4.7 KB, as published. Nobody here has run it

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)

PaperVenueKey Contribution
SWE-agentICLR 2025Agent interface design for SE
OpenHands2024Open platform for coding agents
AgentBenchICLR 2024Multi-environment agent benchmark
GAIAICLR 2024General AI assistant benchmark
VoyagerNeurIPS 2024Lifelong learning in Minecraft
OS-Copilot2024Self-improving computer agent
AutoGen2024Multi-agent conversation framework
Agent-FLANACL 2024Agent 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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.