AI Skill Hub 强烈推荐:自动化交付编排器 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
自动化交付编排器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
自动化交付编排器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/DevOtts/fable-it
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--------": {
"command": "npx",
"args": ["-y", "fable-it"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 自动化交付编排器 执行以下任务... Claude: [自动调用 自动化交付编排器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"________": {
"command": "npx",
"args": ["-y", "fable-it"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p> Hand Claude a goal and a numbered Definition of Done.<br> <strong>Go to sleep. Wake up to an honest report.</strong> </p>
<p> <em>Behavior transfers. That's what makes overnight jobs survivable.</em> </p>
<a href="#how-it-works"> <img src="assets/fable-it-header.gif" alt="fable-it process flow — goal, DoD, autonomous run, honest report" width="100%"> </a>
<p> <a href="#installation"><img src="https://img.shields.io/badge/Quick%20Start-Install-blue?style=for-the-badge" alt="Quick Start"></a> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge" alt="License: MIT"></a> <a href="https://claude.ai/code"><img src="https://img.shields.io/badge/Works%20with-Claude%20Code-orange?style=for-the-badge&logo=anthropic" alt="Works with Claude Code"></a> <a href="https://claude.ai/code"><img src="https://img.shields.io/badge/runs%20on-Opus-blueviolet?style=for-the-badge" alt="Runs on Opus"></a> <a href="https://github.com/DevOtts"><img src="https://img.shields.io/badge/author-DevOtts-181717?style=for-the-badge&logo=github" alt="Author: DevOtts"></a> </p>
<p> <a href="#installation">Install</a> · <a href="#the-honest-claim">The honest claim</a> · <a href="#how-it-works">How it works</a> · <a href="#whats-bundled">What's bundled</a> · <a href="#platform-compatibility">Platform compatibility</a> </p>
[!NOTE] Optimized for long tasks — research, browser tasks and mainly vibe coding.
<br> </div>
When you watch Fable run a long, multi-step task, the thing that stands out isn't raw cleverness. It's that it holds the thread: it doesn't contradict a decision it made an hour ago, it tests its own work before claiming it's done, it reports honestly when it couldn't verify something, and it doesn't wander off building things you never asked for.
That's behavior, not IQ — and behavior transfers. fable-it packs those behaviors into a single Claude Code skill, so Opus runs long, unattended jobs the way Fable does.
| Skill | Role |
|---|---|
fable-it | The conductor — owns posture, guardrails, and the final report |
launch | Mission control: environment inventory, approach selection, agent topology |
iterate | Diagnosis → fix → test → evaluate cycles |
full-qa | Autonomous QA suite: reads a test plan, runs CDP + iterate, produces a pass/fail report |
chrome-cdp-control | Step-by-step control of your real, logged-in Chrome via Playwright over CDP |
Because the skills it delegates to ship inside the plugin, there are no missing dependencies. And if a delegated skill is absent in some environment, fable-it degrades gracefully — it runs that phase inline and notes the absence in its report, rather than failing.
fable-it ships as both a Claude Code plugin and a standard repo-root SKILL.md, so it installs across the whole agent ecosystem. Pick your tool below.
[!TIP] Two universal installers understand theSKILL.mdstandard and drop fable-it into the right directory for 70+ tools — use these if your agent isn't listed:Peek first with> npx skills add DevOtts/fable-it -a <agent> # e.g. -a codex, -a cursor, -a github-copilot ; add -g for global > gh skill install DevOtts/fable-it # GitHub CLI (project or user scope) >npx skills add DevOtts/fable-it --list.
/plugin install fable-it@devotts ```
The marketplace name devotts comes from the name field in marketplace.json. This is the only target that gets the full bundle — the conductor plus launch, iterate, full-qa and chrome-cdp-control, with slash-command invocation and auto-activation. (Skills-CLI alternative: npx skills add DevOtts/fable-it -a claude-code.)
```
Installs to the shared .agents/skills/fable-it/ that Codex reads. Codex doesn't carry the bundled sibling skills, so fable-it runs the launch/iterate/QA phases inline (graceful degradation) — you still get the autonomous posture, pre-grounding gate, coherence guardrails and the honest per-criterion report.
```
Copilot auto-discovers skills under .agents/skills/.
gh skill install DevOtts/fable-it
If your Kiro build doesn't yet read the shared skills path, drop the skill in manually:
git clone https://github.com/DevOtts/fable-it /tmp/fable-it
mkdir -p "<kiro-skills-dir>/fable-it" && cp /tmp/fable-it/SKILL.md "<kiro-skills-dir>/fable-it/"
npx skills add DevOtts/fable-it -a <agent>
Run npx skills add DevOtts/fable-it --list, then target your agent — the CLI knows the correct path for each. Manual fallback for any tool: clone the repo and copy the root SKILL.md into your agent's skills/instructions directory.
[!NOTE] On every target except Claude Code, fable-it installs as a single behavior skill (the rootSKILL.md). The delegated/launch,/iterate,/full-qaand/chrome-cdp-controlare Claude Code plugin skills; elsewhere fable-it executes those phases inline and notes the absence in its report. The thing that ports everywhere is the behavior — and that's the whole point.
```sh npx skills add DevOtts/fable-it -a github-copilot
高质量的自动化交付编排器
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,自动化交付编排器 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | fable-it |
| 原始描述 | 开源MCP工具:Autonomous delivery orchestrator for Claude Code — hand it a goal and a numbered。⭐8 |
| Topics | mcpagent-skillautonomous |
| GitHub | https://github.com/DevOtts/fable-it |
| License | MIT |
收录时间:2026-06-22 · 更新时间:2026-06-22 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端