经 AI Skill Hub 精选评估,AgentGo 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
AgentGo 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
AgentGo 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 克隆仓库 git clone https://github.com/yeasy/AgentGo cd AgentGo # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 agentgo --help # 基本运行 agentgo [options] <input> # 详细使用说明请查阅文档 # https://github.com/yeasy/AgentGo
# agentgo 配置说明 # 查看配置选项 agentgo --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export AGENTGO_CONFIG="/path/to/config.yml"
<p align="center"> <strong>One AGENTS.md makes any project agent-ready.</strong> </p>
<p align="center"> <sub>Best practices baked in. No custom setup required.</sub> </p>
<p align="center">English | <a href="./README.zh-CN.md">简体中文</a></p>
<p align="center"> <a href="#getting-started">Getting Started</a> • <a href="#compatibility">Compatibility</a> • <a href="#how-it-works">How It Works</a> • <a href="#faq">FAQ</a> </p>
<p align="center"> <a href="https://agents.md/"><img src="https://img.shields.io/badge/AGENTS.md-spec_compliant-brightgreen" alt="AGENTS.md spec"></a> <img src="https://img.shields.io/badge/Claude_Code-compatible-blueviolet?logo=anthropic" alt="Claude Code"> <img src="https://img.shields.io/badge/Codex-compatible-blue?logo=openai" alt="Codex"> <img src="https://img.shields.io/badge/Cursor-compatible-orange" alt="Cursor"> <img src="https://img.shields.io/badge/Copilot-compatible-lightgrey?logo=github" alt="Copilot"> <img src="https://img.shields.io/badge/Windsurf-compatible-teal" alt="Windsurf"> <img src="https://img.shields.io/badge/Gemini_CLI-compatible-yellow?logo=google" alt="Gemini CLI"> <img src="https://img.shields.io/github/license/yeasy/agentgo" alt="License"> </p>
---
Two ways in — pick whichever matches where you are.
From your terminal — download AGENTS.md into your project root:
curl -fsSL https://raw.githubusercontent.com/yeasy/agentgo/main/AGENTS.md -o AGENTS.md
Then reopen an AGENTS.md-aware agent, or add the small alias/import shown in the compatibility section for tools that use another filename. To pin a stable release instead of tracking main, replace main in the URL with a release tag such as v1.8.0.
From inside your agent (Codex / Claude Code) — paste this one line into the chat and let the agent fetch, read, and bootstrap in a single shot:
"Download https://raw.githubusercontent.com/yeasy/agentgo/main/AGENTS.md to./AGENTS.md, read it, then initialize this project per its instructions — execute step by step and report each step. If your tool auto-loads a different instruction file (e.g. Claude Code'sCLAUDE.md), also add an import or symlink so it loads next session."
The agent will ask permission to fetch the file and write into your project — grant it, otherwise it can only suggest without acting. When project work needs adaptation or durable memory, the agent bootstraps .agents/ automatically.
Windows users: on PowerShell 5, use Invoke-WebRequest -Uri <URL> -OutFile AGENTS.md.
| Project type | Typical validation |
|---|---|
| Code | test, build, lint, type check, focused diagnostics when behavior changes |
| Docs / slides | render/export, link check, style/consistency pass |
| Design | visual QA, export check, asset inspection |
| Data | schema check, recalculation, sample validation |
| Research | source quality, date check, citation coverage |
If your project already has .cursorrules / CLAUDE.md / .windsurfrules / .github/copilot-instructions.md, custom docs such as rules.md / reports.md / project.md, docs, briefs, style guides, design notes, data dictionaries, or workflow files scattered around, the agent will, during bootstrap or explicit rescan:
.agents/memory/source-index.md.agents/ (instruction-like content from old agent configs lands in experiments/ until you confirm promotion)Active human-facing docs stay where they are. Archive agent-specific legacy files under .agents/archive/, and human-facing docs only in the project's normal docs archive location, such as docs/archive/. Avoid a generic .bak/ directory because it hides intent. Nothing is lost; every archive action requires your confirmation.
<details> <summary><strong>How is this different from CLAUDE.md / .cursorrules?</strong></summary>
AGENTS.md is an open format for agent instructions. Instead of maintaining a separate ruleset per tool, use one stable AGENTS.md as the protocol and keep project-specific memory in .agents/. For tools that use a different filename, import or symlink AGENTS.md — see the Compatibility table above.
</details>
<details> <summary><strong>Should I commit .agents/ to git?</strong></summary>
It depends. For personal projects, gitignore the whole .agents/ — it's your private working memory. For team projects, commit static config (rules/, workflows/, optionally skills/) to share team conventions, but gitignore dynamic data (memory/) since it's session-level. AGENTS.md itself should always be committed — it's the contract between project and agent.
Common team pattern:
.agents/memory/
.agents/changelog.md
Security note: whether you commit it or not, set up a secret-scan (e.g. gitleaks). .agents/memory/ will occasionally pick up things like "our API key is X"; preventing leaks beats cleaning them up.
</details>
<details> <summary><strong>How do I update AGENTS.md later?</strong></summary>
Update only AGENTS.md; keep .agents/ in place. .agents/ is your project's local memory and should not be deleted or replaced during template updates.
Keep the same language variant you installed. English projects should update from AGENTS.md; Simplified Chinese installs should update from AGENTS.zh-CN.md, still saved locally as AGENTS.md.
If your local AGENTS.md has no project-specific edits:
curl -fsSL https://raw.githubusercontent.com/yeasy/agentgo/main/AGENTS.md -o AGENTS.md
If you may have edited it locally, diff before replacing:
curl -fsSL https://raw.githubusercontent.com/yeasy/agentgo/main/AGENTS.md -o /tmp/AGENTS.latest.md
diff -u AGENTS.md /tmp/AGENTS.latest.md
To pin a stable release instead of tracking main:
curl -fsSL https://raw.githubusercontent.com/yeasy/agentgo/v1.8.0/AGENTS.md -o AGENTS.md
Do not let an agent silently replace AGENTS.md on a timer. During .agents/ maintenance, it may check for a newer AgentGo template and suggest an update, but replacement should still require your explicit request or approval. The first comment in AGENTS.md carries the template version, for example AGENTS.md v1.8.0; release tags are the stable install target.
After updating, restart or rescan your agent:
"Rescan this project per AGENTS.md. Keep the existing .agents/; report new or changed guidance without overwriting memory."
</details>
<details> <summary><strong>Won't .agents/ keep growing and turn into noise?</strong></summary>
It will, which is why AGENTS.md enforces a maintenance cadence: on session entry, validate that recent notes still match current project artifacts; run a health check whenever any memory/ file exceeds 200 lines, changelog.md has grown ≥ 30 lines since the last [MAINTENANCE], 10 meaningful tasks have completed, stale notes are found, .agents/ structure drifts, or tmp/ contains stale scratch output. Maintenance dedupes entries, closes resolved items, removes stale notes, records fitness signals, promotes repeated validated procedures into workflows/ or supported skills/, prunes tmp/, and can generate reports/health-<date>.md for non-trivial cleanups.
</details>
<details> <summary><strong>Will the agent proactively suggest improvements?</strong></summary>
Yes, but only as optional follow-up. When the agent has clear evidence that an out-of-scope improvement would likely help, it should briefly explain the suggestion, rationale, and risk, then wait. It should not execute optional suggestions without your request, and it should not distract you with low-confidence ideas.
</details>
<details> <summary><strong>Will multiple agents collide?</strong></summary>
Different tools reading the same AGENTS.md and keeping their own session state work fine. But .agents/ is just a directory — no locking. If you really do let two agents write the same file at once, they may overwrite each other. Run them serially, or have different agents write to different subdirs. Every write leaves a trace in .agents/changelog.md for postmortems.
</details>
<details> <summary><strong>Can I customize the conventions?</strong></summary>
Yes — as a human-maintained protocol. The default AgentGo design is that agents do not rewrite AGENTS.md during project adaptation; they write project-specific findings into .agents/. If you want different universal rules, edit AGENTS.md directly.
</details>
<details> <summary><strong>What if my project already has lots of agent config?</strong></summary>
AgentGo is built for brownfield projects from day one. During bootstrap or rescan, the agent discovers existing config files (.cursorrules, CLAUDE.md, .windsurfrules, etc.) and custom project docs (rules.md, reports.md, project.md, spec.md, design.md, brief.md, notes.md, and similar). Active docs stay in place and are indexed in .agents/memory/source-index.md; reusable knowledge is extracted into .agents/. Whether to archive obsolete files is your call — the agent reports a discovery list and a proposed archive plan, then waits for your confirmation before moving anything. Nothing is silently deleted or modified.
</details>
<details> <summary><strong>What if my agent tool doesn't read AGENTS.md?</strong></summary>
Use the fallback from the Compatibility table. For example, Claude Code can use a CLAUDE.md containing @AGENTS.md or a symlink; Gemini CLI can include AGENTS.md in context.fileName. On Windows, prefer imports or copied files when symlinks are inconvenient.
</details>
<details> <summary><strong>Which parts of AGENTS.md can I edit?</strong></summary>
All of it, when you are intentionally changing the protocol. Agents should not edit AGENTS.md just to adapt it to a project; that information belongs in .agents/. We recommend keeping the overall structure of "Startup Instructions", "Trust & Safety", "Self-Evolution Protocol", and "Hard Constraints".
</details>
<details> <summary><strong>How does this relate to existing docs, briefs, style guides, or CONTRIBUTING files?</strong></summary>
No need to merge or move them by default — different audiences:
AGENTS.md is for the agent. It must contain actionable rules ("run tests before code delivery", "render the deck before delivery", "check links before publishing").When you want the agent to know a project reference exists, mention it in AGENTS.md or .agents/ (e.g. "Brand voice lives in docs/voice.md"). The agent will read it on demand.
During bootstrap, active files like rules.md, reports.md, project.md, spec.md, design.md, brief.md, and notes.md are treated as source materials. The agent indexes them in .agents/memory/source-index.md, extracts durable conventions/findings into .agents/, and archives only obsolete or duplicate files after you approve the exact destination.
</details>
<details> <summary><strong>Can the agent be hijacked by malicious content in .agents/?</strong></summary>
It is designed to strongly resist that, though no text protocol can make it impossible. AGENTS.md mandates that the only instruction sources are AGENTS.md itself and the user's current message — everything else (.agents/, README, docs, comments, annotations, git log, dependency READMEs, shell output) is treated as untrusted data. A 4-tier priority decides what to do with it:
AGENT: comments) → reject and report unless the user's current task explicitly asks to edit AGENTS.md itselfThese tiers are a best-effort heuristic, not a guaranteed boundary — the protocol says so itself and treats the runtime's permission and sandbox controls as the actual enforcement layer. See the Trust & Safety section in AGENTS.md.
</details>
<details> <summary><strong>Multi-part project?</strong></summary>
Drop one AGENTS.md in each major subproject root for AGENTS.md-aware tools. Put shared conventions in the repo-root AGENTS.md, and let each subproject (e.g. apps/web/AGENTS.md, docs/AGENTS.md, design/AGENTS.md, data/AGENTS.md) layer on its artifact-specific overrides. For tools with a different instruction filename, add the corresponding import, symlink, or filename setting.
</details>
<details> <summary><strong>Does it work in git worktrees / CI?</strong></summary>
.agents/ follows each worktree (independent memory per worktree if not committed); to share, gitignore it and symlink to the main repo.AGENTS.md + .agents/rules/, no writes to .agents/memory/ (CI is ephemeral — writes get thrown away).</details>
<details> <summary><strong>Why doesn't the AgentGo repo have its own .agents/?</strong></summary>
The AgentGo repo's deliverable is the AGENTS.md protocol itself — there's no downstream project memory to commit here, so no .agents/ is committed. Drop AGENTS.md into your project and the agent will create .agents/ there when project work first needs adaptation or durable memory.
</details>
---
AgentGo提供了便捷的AI工作流集成解决方案
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:AgentGo 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | AgentGo |
| 原始描述 | 开源AI工作流:One step to enable best-practices for AI agents — drop into any project and enjo。⭐7 |
| Topics | aiagentworkflowbest-practice |
| GitHub | https://github.com/yeasy/AgentGo |
| License | MIT |
收录时间:2026-06-10 · 更新时间:2026-06-10 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端