Skip to main content
Glama

no_human

从工单到经过审查的拉取请求。免费开源,运行在你的机器上。

最新版本 CI python 3.12+ 许可证 MIT

getnohuman.com · 快速入门 · 文档 · 观看一个冲刺周期的工作演示

下载 macOS 版 下载 Windows 版 下载 Linux 版

观看循环演示 — 一个工单进入,一个经过审查的拉取请求输出;整个循环只需 57 秒。

可以信赖的 AI 编码工厂:

  • 任何代码之前先有计划,基于工单以及它在你的仓库中发现的内容。

  • 对抗性审查。 使用不同的模型、全新的上下文、只读工具,并被要求反驳“已完成”。你会得到一份引用文件和行号的通过/失败清单——绝不是一个数字化的自我评分。

  • 防篡改保护。 删除的测试、新增的跳过、被变成同义反复的断言——在审查者花费任何 token 之前就会被阻止。

  • 证明修复解决了问题。 对于缺陷修复,作为证据提供的测试必须在合并基线上失败,并在新代码树上通过——复现门强制执行这一点,你也可以要求对每个更改都这样做。

  • 你的测试会运行,在本地运行,也可以选择通过你的 CI 运行。

  • 诚实的停止。 当它无法完成时,它会带着一个具体的问题停下来,而不是编造一个看似合理的差异。

安装

无论你选择哪种安装方式,你都需要一个 Claude 凭据:来自 claude setup-token 的 OAuth 令牌(个人订阅或企业版),因此请先安装 Claude Code CLI — npm install -g @anthropic-ai/claude-code,或 curl -fsSL https://claude.ai/install.sh | bash。桌面应用也会为每个任务调用该 CLI。要直接向 Anthropic 付费,请设置 llm.auth_mode: "api_key" 并将你的 ANTHROPIC_API_KEY 放入 ~/.no_human/.env

一行命令(CLI + 看板)

uv tool install no-human   # or: pipx install no-human — the wheel ships the board
nh init && nh doctor       # token, config, first repo; then prove the install is real

桌面应用

下载 macOS 版 下载 Windows 版 下载 Linux 版

每个版本都会随产物附带一个 SHA-256 校验和。平台说明和首次运行演练:docs/quickstart.md

从源码构建

git clone https://github.com/no-human-ai/no_human.git && cd no_human
uv sync                 # installs the `nh` entry point into .venv
(cd web && npm install && npm run build)   # builds the board (cold first install can take minutes)
uv run nh init          # token, config, first repo (about 2 minutes)
uv run nh doctor        # verify the install is real before relying on it

如果你想要看板,web 构建是必需的:源码检出不包含 web/dist,因此没有它,nh start 将只提供 API 服务,而不会渲染任何 UI。需要 Python 3.12+、uv、git,以及用于看板构建的 Node 和 npm。

Related MCP server: github-mcp

运行一个任务

不带任何参数运行 nh 以进入 shell:你的泳道、实时事件流,以及一个你可以用纯英语描述任务的输入框。下面的每个命令仍然有效。

nh                                   # the shell
nh start                             # board + worker on 127.0.0.1:8420
nh task add https://github.com/org/repo/issues/42 --repo ~/git/repo
nh status                            # needs-you / working / waiting / done
nh review <id>                       # the reviewer's evidence checklist
nh diff <id>                         # the diff it wants to ship
nh approve <id>                      # your approval squash-lands the PR (git.approve_identity)
nh reject <id> --reason "..."        # send it back with feedback

集成

将 no_human 指向你已经在使用的追踪器,它会将工单拉取到你的看板上——追踪器的过滤器存在于你的配置中,而不是任务自身的文本中,并且传输错误会记录日志并在下一个周期重试,而不是导致整个池崩溃。

追踪器

工单如何到达

你配置的过滤器

Jira Cloud

通过 REST search/jql 轮询(HTTP Basic email:token

integrations.jira.jql

Linear

通过 GraphQL API 轮询

integrations.linear.team_key + state_types + label

monday.com

通过 GraphQL v2 轮询

integrations.monday.board_id + status_column + todo_labels

启用写回(write_back,默认关闭)后,工单会随任务一起移动——按状态类别、类型或你指定的标签匹配,绝不使用硬编码的转换 ID——并获取 PR 链接;需要人工处理的任务会被评论,而不会被转换。GitHub 和 GitLab 问题可以通过 URL 作为任务导入,PR 或 MR 会在你自己的主机上打开;Slack 和 Teams 会在任务需要你时收到消息;Jenkins 和 CircleCI 可以运行你的测试层并门控循环。每个的配置:docs/adapters.md

观看 Jira 流程的端到端演示 — 从 Jira 看板同步的工单,经过范围界定、实现,并作为通过审查的拉取请求交付(点击观看包含每个步骤的完整视频):

Jira 流程演示

MCP 服务器 — 从你已使用的代理那里分配工作

no_agent 附带一个 MCP(模型上下文协议)服务器:一个基于官方 Python MCP SDK 构建的 stdio 桥接,允许 Claude Code、Cursor 或任何 MCP 客户端将工作文件交给你的本地 no_agent 并检查其状态。

nh mcp-serve        # the MCP server, over stdio

两个工具,仅此而已:

工具

它的作用

task_add(title, description, repo_path)

提交一个任务。no_agent 随后会规划它、编写更改、运行你的测试、让第二个模型审查它,并打开拉取请求。

task_status(task_id_or_external_id)

返回该任务的当前状态 — 状态、尝试次数、以及 PR 链接(如果有的话)。

它只与你自己在 http://127.0.0.1:8420 上的 no_agent 通信,除此之外没有其他:没有认证,因为该地址是 localhost,也没有我们提供的任何中间服务。对于 Claude Code,同一个服务器也作为插件提供 — 将其指向 plugins/no-human/,这两个工具就会出现在你的会话中。

// .mcp.json
{ "mcpServers": { "no_human": { "command": "nh", "args": ["mcp-serve"] } } }

文档

quickstart.md

从零到第一个任务,按平台分类

configuration.md

每个设置和默认值

verification.md

门禁、有界循环、限制

security.md

认证边界、永不合并规则、防护措施

blockers.md

升级、唤醒监视器、nh reply

adapters.md

输入、上下文、VCS 和 CI 后端

eval.md

黄金集、回放评分、影子模式

CHANGELOG.md

每个版本的变化

开发

uv sync
uv run pytest -q
uv run nh --help

欢迎提交问题和拉取请求;提交前请运行 uv run pytest -q

如果 no_agent 为你节省了一个审查周期,一颗星可以帮助其他人找到它: GitHub 星标

许可证

MIT — 请参阅 LICENSE。许可证涵盖代码,但不涵盖名称:TRADEMARK.md 是关于使用“no_agent”和徽标的政策。打包二进制文件会带来源码树所没有的义务,这些义务列在 THIRD-PARTY-NOTICES.md 中。

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
Response time
1dRelease cycle
4Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Local MCP server for safe GitHub developer workflows. Enables pulling main, creating feature branches, pushing them, and opening ready-for-review pull requests via tools like github_create_feature_branch and github_create_pull_request.
    6
    111
    MIT
  • F
    license
    Not graded
    quality
    A
    maintenance
    A review handoff tool for agent-driven coding sessions that captures worktree diffs, creates shareable review URLs, and streams reviewer feedback back to the agent.
    1

View all related MCP servers

Related MCP Connectors

  • Autonomous dev team steered from chat: plain-English requests in, tested merged PRs out.

  • Pull change requests from your Amendor board into your coding agent to build and open PRs.

  • A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/no-human-ai/no_human'

If you have feedback or need assistance with the MCP directory API, please join our Discord server