经 AI Skill Hub 精选评估,开源AI工作流 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
gitmoot是一个开源的、local-first控制层,用于AI代理的工作流管理。它提供了一个灵活的框架,帮助开发者构建和管理AI代理的技能和工作流。通过gitmoot,开发者可以轻松地创建、测试和部署AI代理的工作流,提高工作效率和AI代理的可靠性。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
gitmoot是一个开源的、local-first控制层,用于AI代理的工作流管理。它提供了一个灵活的框架,帮助开发者构建和管理AI代理的技能和工作流。通过gitmoot,开发者可以轻松地创建、测试和部署AI代理的工作流,提高工作效率和AI代理的可靠性。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/jerryfane/gitmoot@latest # 方式二:从源码编译 git clone https://github.com/jerryfane/gitmoot cd gitmoot go build -o gitmoot . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/jerryfane/gitmoot/releases
# 查看帮助 gitmoot --help # 基本运行 gitmoot [options] <input> # 详细使用说明请查阅文档 # https://github.com/jerryfane/gitmoot
# gitmoot 配置说明 # 查看配置选项 gitmoot --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export GITMOOT_CONFIG="/path/to/config.yml"
<p align="center"> <img src="docs/assets/gitmoot-hero.png" alt="Gitmoot coordinates local agent runtimes through GitHub pull request workflows" width="900"> </p>
curl -fsSL https://gitmoot.io/install.sh | sh
gitmoot version
gh auth status
Install runtime plugin guidance when you want Codex or Claude Code to discover Gitmoot's Agent Skill from their plugin systems:
gitmoot plugin install codex
gitmoot plugin install claude
gitmoot plugin doctor
The plugins are discovery and guidance surfaces. The gitmoot CLI and local daemon remain the execution path.
From a project checkout:
gitmoot init
gitmoot repo add owner/repo --path . --poll 30s
gitmoot doctor --repo .
Start a Gitmoot-managed Codex agent and daemon:
gitmoot agent start project-planner \
--runtime codex \
--repo owner/repo \
--path . \
--template planner \
--start-daemon
For fast planning in the current Codex or Claude chat, ask the runtime:
Use the Gitmoot planner here. Write the implementation plan.
That uses the same planner template as the background agent, but imports the prompt into the current chat instead of creating a Gitmoot job.
Ask the registered background planner when you want a queued analysis or planning job:
gitmoot agent ask project-planner --repo owner/repo --background "Write the implementation plan and goal file."
gitmoot job watch <job-id>
For coordinator delegation where the request may require review or file edits, use agent run and let Gitmoot select the safe workflow path:
gitmoot agent run lead --repo owner/repo --task task-001 --background "Implement this task."
gitmoot agent run reviewer --repo owner/repo --pr 12 --background "Review this PR."
Background jobs are safe by default. The daemon starts with one worker, repo checkout locks protect local checkouts, branch locks protect implementation ownership, and busy Codex/Claude runtime sessions can fork bounded temporary workers when [parallel_sessions] allows it. Temp workers still require checkout/worktree safety and write-capable agents for implementation jobs.
Route work through PR comments:
/gitmoot project-planner ask Write a task-by-task implementation plan for this PR.
/gitmoot thermo-review review
/gitmoot retry <job-id>
For the full walkthrough, see docs/local-workflow.md.
Gitmoot can package its Agent Skill for Codex and Claude Code so the runtime can discover Gitmoot guidance from its plugin system.
gitmoot plugin install codex
gitmoot plugin install claude
gitmoot plugin doctor
Plugins do not start a hosted service, replace the daemon, subscribe agents, or mutate repository state by themselves. See docs/plugins.md for install details and troubleshooting.
gitmoot是一个有潜力的开源AI工作流管理工具,提供了一个灵活的框架和易于使用的API。然而,它仍然需要进一步的开发和测试,以确保其稳定性和可靠性。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:开源AI工作流 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | gitmoot |
| 原始描述 | 开源AI工作流:A local-first control layer for AI agents。⭐8 · Go |
| Topics | workflowagentic-skillagentic-workflowsagentsagentskillsaigo |
| GitHub | https://github.com/jerryfane/gitmoot |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-10 · 更新时间:2026-06-10 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端