genie MCP工具 是 AI Skill Hub 本期精选AI工具之一。综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
genie MCP工具 是一款基于 TypeScript 开发的开源工具,专注于 MCP工具、AI代理、代码生成 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
genie MCP工具 是一款基于 TypeScript 开发的开源工具,专注于 MCP工具、AI代理、代码生成 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g genie # 方式二:npx 直接运行(无需安装) npx genie --help # 方式三:项目依赖安装 npm install genie # 方式四:从源码运行 git clone https://github.com/automagik-dev/genie cd genie npm install npm start
# 命令行使用
genie --help
# 基本用法
genie [options] <input>
# Node.js 代码中使用
const genie = require('genie');
const result = await genie.run(options);
console.log(result);
# genie 配置说明 # 查看配置选项 genie --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export GENIE_CONFIG="/path/to/config.yml"
<p align="center"> <picture> <img src=".github/assets/genie-header.png" alt="Genie" width="800" /> </picture> </p>
<p align="center"> <strong>Wishes in, PRs out.</strong> </p>
<p align="center"> <a href="https://www.npmjs.com/package/@automagik/genie"><img alt="npm" src="https://img.shields.io/npm/v/@automagik/genie?style=flat-square&color=00D9FF" /></a> <a href="https://www.npmjs.com/package/@automagik/genie"><img alt="downloads" src="https://img.shields.io/npm/dm/@automagik/genie?style=flat-square&color=00D9FF" /></a> <a href="https://github.com/automagik-dev/genie/stargazers"><img alt="stars" src="https://img.shields.io/github/stars/automagik-dev/genie?style=flat-square&color=00D9FF" /></a> <a href="LICENSE"><img alt="license" src="https://img.shields.io/github/license/automagik-dev/genie?style=flat-square&color=00D9FF" /></a> <a href="https://discord.gg/xcW8c7fF3R"><img alt="discord" src="https://img.shields.io/discord/1095114867012292758?style=flat-square&color=00D9FF&label=discord" /></a> </p>
<br />
[!IMPORTANT] Genie's npm distribution is being soft-deprecated in favor of a cosign + SLSA-verified install through our own CDN. The canonical install going forward is:Existing operators on> curl -fsSL https://get.automagik.dev/genie | bash >npm install -g @automagik/geniecontinue to work — the npm package will become a thin postinstall shim that downloads and runs the verified installer. See Security & Trust → Distribution Sovereignty for the threat model and verification flow.
<br />
🚀 56 commits this week · 0 releases · +1.9K LoC · 9 contributors
Genie is a CLI that turns one sentence into a finished pull request. You describe what you want — Genie interviews you, writes a plan, spawns parallel agents in isolated worktrees, reviews the code, and opens a PR. You approve. You merge. That's it.
v4 is a ground-up rewrite. 700 commits. 300 files. ~19K lines.
| v3 | v4 | |
|---|---|---|
| **State** | JSON files + NATS | PostgreSQL + LISTEN/NOTIFY |
| **UI** | CLI only | Full terminal UI |
| **Memory** | None | Optional knowledge brain |
| **Tasks** | Basic | Kanban boards, templates, projects |
| **Observability** | Minimal | OTLP, session capture, audit trail |
| **Review** | Single pass | 10-critic council deliberation |
| **Stability** | Best effort | Advisory locks, spawn watchdog, 200+ bug fixes |
If you'd rather lay the pieces down yourself, install canonical pgserve before genie. Genie is a consumer of the pm2-supervised pgserve daemon — it never spawns its own. See docs/install.md for the rationale and migration tips.
```bash
bun add -g @automagik/genie genie install
External consumers (e.g. the omni scope-enforcer) can query ground-truth turn state directly from genie serve. Two paths are supported:
HTTP — GET http://127.0.0.1:<port>/executors/:id/state returns {state, outcome, closed_at} as JSON. The default port is pgserve_port + 2; override with GENIE_EXECUTOR_READ_PORT. Returns 404 for unknown IDs, 400 for non-UUID IDs, 200 otherwise. No authz — executor IDs are random UUIDs and the view exposes no secrets.
Direct SQL — connect to genie-PG as the read-only executors_reader role and SELECT state, outcome, closed_at FROM executors_public_state WHERE id = $1. Layer login credentials on top:
CREATE ROLE omni_scope_enforcer LOGIN PASSWORD '…' IN ROLE executors_reader;
Response shape (state / outcome / closed_at) is the stable boundary contract; removing or renaming fields is a coordinated breaking change.
genie创新性强,将需求对话转化为PR的全流程自动化方案独特且实用。代码质量和维护活跃度良好,适合现代AI驱动开发场景。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,genie MCP工具 在AI工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | genie |
| 原始描述 | 开源MCP工具:Wishes in, PRs out. CLI agent that interviews you, plans the work, dispatches pa。⭐315 · TypeScript |
| Topics | MCP工具AI代理代码生成PR自动化开发者工具 |
| GitHub | https://github.com/automagik-dev/genie |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。