learn-claude-code-rs

作者 wulawulu已验证

Build an AI agent harness in Rust, from a minimal loop to tools, subagents, memory, teams, worktrees, MCP, and typed tool routing.

128
Stars
23
Forks
Rust
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/wulawulu/learn-claude-code-rs

快速入门

使用 learn-claude-code-rs 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

CI

learn-claude-code-rs

English | 中文

A progressive AI Agent Harness tutorial written in Rust.

This repository is a Rust-oriented learning path for building an agent harness. It starts with the smallest agent loop and gradually adds tools, planning, subagents, skills, context compaction, permissions, hooks, memory, multi-agent collaboration, worktree isolation, MCP/plugins, and tool routing.

This project was inspired by shareAI-lab/learn-claude-code. Its chapter design, content organization, and some code ideas reference that project to a certain extent, then reimplement and adapt them for the Rust ecosystem. It is not a line-by-line copy or a simple port; it reorganizes the agent harness topic itself into a runnable Rust tutorial.

Each chapter is an independent runnable Rust crate. You can read them in order or jump directly into a topic to see how a harness capability is expressed through data structures, runtime loops, tool interfaces, and durable state.

Why This Repo

Most LLM examples stop at tool calling. This repo focuses on the runtime around the model:

  • tool dispatch
  • permissions
  • skills
  • memory
  • context compaction
  • subagents
  • background work
  • team protocols
  • worktree isolation
  • MCP plugins
  • typed tool routing

Architecture

learn-claude-code-rs architecture

Audience

  • People who want to understand the internals of coding agents instead of only using existing products.
  • People who want to write AI agents, CLI tools, or automation tools in Rust.
  • Readers who already know LLM APIs and want to learn tool use, subagents, permissions, hooks, memory, and related engineering structures.
  • People interested in the infrastructure behind Claude Code, Codex, Devin, Cursor Agent, and similar coding agents.

Quick Start

Prepare Rust:

rustup update
cargo --version

Configure the model API. The examples use an Anthropic-compatible SDK interface and read configuration from environment variables:

cp .env.example .env

Edit .env:

ANTHROPIC_API_KEY=your_api_key
ANTHROPIC_BASE_URL=your_anthropic_compatible_base_url
ANTHROPIC_MODEL=your_model_name

Run the first chapter:

cargo run -p s01_agent_loop

Run the integrated version:

cargo run -p sfull

Check the whole workspace:

cargo check --workspace

Learning Path

Each chapter is an independent crate that can be run, read, and modified on its own. Reading in order is recommended because later chapters build on earlier structures.

ChapterDirectoryTopicDescription
01s01_agent_loopAgent LoopMinimal runnable agent with user input, model response, tool calling, and a basic bash tool. Docs: s01.en.md.
02s02_tool_useTool UseExtract tools into a trait and add read_file, write_file, and edit_file. Docs: s02.en.md.
03s03_todo_writeTodo PlanningAdd a todo tool so the agent can maintain a plan and execution state. Docs: s3.en.md.
04s04_subagentSubagentStart fresh-context subagents for delegated exploration or subtasks. Docs: s4.en.md.
05s05_skill_loadingSkill LoadingLoad skills from skills/ and inject skill content into context on demand. Docs: s05.en.md.
06s06_context_compactContext CompactCompact long context while preserving key state. Docs: s06.en.md.
07s07_permission_systemPermissionAdd permission modes and interactive confirmation for tool calls. Docs: s07.en.md.
08s08_hook_systemHook SystemAdd lifecycle hooks around tool execution and agent events. Docs: s08.en.md.
09s09_memory_systemMemoryAdd durable memory for preferences, facts, feedback, and references. Docs: s09.en.md.
10s10_system_promptSystem PromptManage system prompts through structured sections and templates. Docs: s10.en.md.
11s11_error_recoveryError RecoveryRecover from tool failures, model errors, transport errors, and truncation. Docs: s11.en.md.
12s12_task_systemTask SystemAdd structured task records with status, owner, and dependencies. Docs: s12.en.md.
13s13_background_tasksBackground TasksStart, query, and manage long-running background commands. Docs: s13.en.md.
14s14_cron_schedulerCron SchedulerSchedule future tasks and reinject them into the loop when due. Docs: s14.en.md.
15s15_agent_teamsAgent TeamsOrganize multiple agents into teams with roles, inboxes, and messages. Docs: s15.en.md.
16s16_team_protocolsTeam ProtocolsAdd durable request-response protocols for multi-agent collaboration. Docs: s16.en.md.
17s17_autonomous_agentsAutonomous AgentsImplement long-running workers with idle polling and task claiming. Docs: s17.en.md.
18s18_worktree_task_isolationWorktree IsolationUse git worktrees to isolate task execution environments. Docs: s18.en.md.
19s19_mcp_pluginMCP PluginConnect MCP/plugin tools to the same permission and tool-result loop. Docs: s19.en.md.
20s20_tool_refactorTool RefactorRefactor tool registration, routing, dispatch, and macro support. Docs: s20.en.md.
FullsfullComplete VersionIntegrate previous chapters into one complete agent harness. Docs: sfull.en.md.

Recommended Reading Order

  1. Run s01_agent_loop and understand the minimal loop: user input, model response, tool call, and tool result.
  2. Read s02_tool_use through s04_subagent to understand tools, planning, and delegation.
  3. Read s05_skill_loading through s08_hook_system to see how a demo becomes an extensible system.
  4. Read s09_memory_system through s14_cron_scheduler to understand state, long-running work, and scheduling.
  5. Read s15_agent_teams through s20_tool_refactor to understand multi-agent collaboration, isolated execution, plugins, and tool routing.
  6. Read sfull last to see how the pieces fit together.

Project Structure

.
├── Cargo.toml
├── CONTRIBUTING.md
├── s01_agent_loop/
├── s02_tool_use/
├── s03_todo_write/
├── s04_subagent/
├── s05_skill_loading/
├── s06_context_compact/
├── s07_permission_system/
├── s08_hook_system/
├── s09_memory_system/
├── s10_system_prompt/
├── s11_error_recovery/
├── s12_task_system/
├── s13_background_tasks/
├── s14_cron_scheduler/
├── s15_agent_teams/
├── s16_team_protocols/
├── s17_autonomous_agents/
├── s18_worktree_task_isolation/
├── s19_mcp_plugin/
├── s20_tool_refactor/
├── s20_tool_refactor_macros/
├── sfull/
└── skills/

Common Commands

Run a chapter:

cargo run -p s03_todo_write

Run the full version:

cargo run -p sfull

Check:

cargo check --workspace

Test:

cargo test --workspace

Format:

cargo fmt --all

Acknowledgements

Some Rust engineering ideas in this project were inspired by bosun-ai/swiftide, especially around hooks and system prompts.

Contributing

Contributions are welcome from people interested in Rust, AI agents, tool use, MCP, and coding agents.

Please read CONTRIBUTING.md before opening an issue or pull request.

Useful contribution areas:

  • Fix unclear or outdated docs.
  • Add explanations, diagrams, or examples.
  • Improve code structure and error handling.
  • Add tests.
  • Connect more models, tools, or MCP servers.
  • Translate docs.

License

This project is licensed under the MIT License.

Please preserve the license information when using, modifying, or distributing this project.

常见问题

What is learn-claude-code-rs?

learn-claude-code-rs is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by wulawulu. Build an AI agent harness in Rust, from a minimal loop to tools, subagents, memory, teams, worktrees, MCP, and typed tool routing. It has 128 GitHub stars.

Is learn-claude-code-rs safe to use?

Yes. learn-claude-code-rs passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install learn-claude-code-rs?

Clone the repository with "git clone https://github.com/wulawulu/learn-claude-code-rs" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is learn-claude-code-rs written in?

learn-claude-code-rs is primarily written in Rust. It is open-source under wulawulu on GitHub, so you can review or fork the full source.

Are there alternatives to learn-claude-code-rs?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh learn-claude-code-rs against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情