AI Skill Hub 强烈推荐:babysitter AI工具 是一款优质的AI工具。AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
Claude开源技能,用于智能体编排和工作流管理。通过实现对agentic AI的约束和控制机制,帮助开发者构建可靠的多智能体系统,适合需要精细化控制和协调多个AI代理的企业和开发团队。
babysitter AI工具 是一款基于 JavaScript 开发的开源工具,专注于 Claude技能、智能体编排、智能体协调 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
Claude开源技能,用于智能体编排和工作流管理。通过实现对agentic AI的约束和控制机制,帮助开发者构建可靠的多智能体系统,适合需要精细化控制和协调多个AI代理的企业和开发团队。
babysitter AI工具 是一款基于 JavaScript 开发的开源工具,专注于 Claude技能、智能体编排、智能体协调 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g babysitter # 方式二:npx 直接运行(无需安装) npx babysitter --help # 方式三:项目依赖安装 npm install babysitter # 方式四:从源码运行 git clone https://github.com/a5c-ai/babysitter cd babysitter npm install npm start
# 命令行使用
babysitter --help
# 基本用法
babysitter [options] <input>
# Node.js 代码中使用
const babysitter = require('babysitter');
const result = await babysitter.run(options);
console.log(result);
# babysitter 配置说明 # 查看配置选项 babysitter --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export BABYSITTER_CONFIG="/path/to/config.yml"
adapters CLI pins a higher floor of 22.13.0+ (it loads the gateway's built-in node:sqlite, unflagged only from Node 22.13.0).---
Babysitter v6 has two install tracks that should not be conflated: the host-side adapters CLI for running any harness directly from your shell, and the in-session per-harness plugin for driving full orchestration runs from inside your harness. Most people want both. The package split is:
@a5c-ai/babysitter is the recommended end-user install for the main babysitter CLI.@a5c-ai/adapters-cli provides the host-side adapters CLI (Node >=22.13.0) for running and managing any supported harness from your shell. See the Adapters CLI reference.@a5c-ai/babysitter-sdk is the public SDK/library package and the underlying implementation behind the core CLI.@a5c-ai/genty-platform is the optional runtime CLI for genty call, resume, start-server, tui, and other orchestration/runtime commands.@a5c-ai/babysitter-codex or @a5c-ai/babysitter-cursor integrate Babysitter into a specific host tool. They do not replace the core CLI packages.For most users, install the main CLI first:
npm install -g @a5c-ai/babysitter
Prefer to drive a harness directly from your shell instead of from inside a session? Install the host-side adapters CLI and run any supported harness with one command — see the Adapters CLI reference:
npm install -g @a5c-ai/adapters-cli
adapters doctor
adapters run claude "explain this codebase"
Babysitter supports the 12 AI coding harnesses listed in the install matrix. Install the plugin for your harness of choice; the two fully-worked harnesses have dedicated pages — Claude Code and Codex. In this repository, plugins/babysitter-unified is the only maintained plugin source; harness-specific bundles are generated during build/release and are not committed:
For the core runtime chain (@a5c-ai/babysitter-sdk, @a5c-ai/adapters, @a5c-ai/genty-core, @a5c-ai/genty-platform), use the shared workspace entrypoint from a fresh checkout:
npm ci
npm run build:runtime
build:runtime is the supported root entrypoint for release and CI validation. It builds the runtime graph in workspace order: SDK -> adapters SDK surface -> genty-core -> genty-platform.
Package-local validation is also supported:
npm run build --workspace=@a5c-ai/genty-core
npm run build --workspace=@a5c-ai/genty-platform
Those package-local builds now use tsc --build project references where the runtime packages are owned in this workspace, and they explicitly bootstrap the @a5c-ai/adapters SDK chain through the root runtime scripts. Fresh-checkout validation no longer assumes prebuilt upstream dist/ artifacts.
@a5c-ai/atlas provides the unified knowledge graph, ontology, and catalog data consumed by SDK, adapters, hooks, plugin tooling, and the catalog UI. The agent catalog surface is @a5c-ai/atlas/catalog. See packages/atlas/README.md.
/babysitter:doctor
Run diagnostics to confirm everything is working.
---
adapters install claude-code
babysitter harness:install-plugin claude-code
babysitter harness:install-plugin codex --workspace /path/to/repo ```
Note:babysitter harness:installandbabysitter harness:discoverare deprecated. Useadapters install <agent>for agent installation andgentyfor runtime commands.
harness:install-plugin is the canonical scriptable install path for Babysitter plugins. For non-Claude harnesses it resolves to the published package installer shape tested in the SDK, for example npx --yes @a5c-ai/babysitter-codex install --workspace /path/to/repo.
claude "/babysitter:call implement user authentication with TDD"
Or in natural language:
Use the babysitter skill to implement user authentication with TDD
Claude will create an orchestration run, execute tasks step-by-step, handle quality checks and approvals, and continue until completion.
/babysitter:user-install
This creates your personal profile with: - Breakpoint preferences (how much oversight you want) - Tool preferences and communication style - Expertise areas for better process matching
babysitter compression:config ```
Edit .a5c/compression.config.json to persist settings (env vars always take priority):
{
"enabled": true,
"layers": {
"userPromptHook": { "enabled": true, "threshold": 500, "keepRatio": 0.78 },
"commandOutputHook": { "enabled": true, "excludeCommands": ["jq", "curl", "docker"] },
"sdkContextHook": { "enabled": true, "targetReduction": 0.15, "minCompressionTokens": 150 },
"processLibraryCache": { "enabled": true, "targetReduction": 0.35, "ttlHours": 24 }
}
}
Toggle any layer with babysitter compression:toggle <layer> <on|off> or set individual values with babysitter compression:set <key> <value>.
---
Official marketplace install:
codex plugin marketplace add a5c-ai/babysitter-codex
codex plugin add babysitter --marketplace babysitter
--marketplace babysitteris the marketplace name declared in the repo's.agents/plugins/marketplace.json(not the repo name).
Via the Cursor marketplace or the SDK helper:
babysitter harness:install-plugin cursor
babysitter harness:install-plugin gemini-cli
The published CLI walkthrough at docs/cli-examples.md is verified against the real repo surfaces, not a separate docs-only harness. From a fresh checkout, use:
npm ci
npm run build --workspace=@a5c-ai/babysitter-sdk
npm run docs:prepare
npm run docs:examples:smoke
npm run docs:qa
npm run docs:examples:verify runs that docs-focused flow end-to-end. The generated traceability map for the walkthrough lives at docs/generated/cli-examples-verification.md.
---
babysitter CLIadapters CLI---
genty call \ --harness internal \ --process .a5c/processes/lint-and-test.js#process \ --workspace . \ --no-interactive \ --json ```
It executes processes using the SDK's built-in engine, supports all effect types (tasks, breakpoints, sleeps, parallel dispatch), and produces the same event-sourced journal as any other harness.
| Package | Installs | Use it for |
|---|---|---|
@a5c-ai/babysitter | babysitter | Recommended human-facing install for the main CLI |
@a5c-ai/babysitter-sdk | babysitter, babysitter-sdk, babysitter-mcp-server | SDK/library usage and direct access to the core CLI implementation |
@a5c-ai/genty-platform | genty | Optional runtime/orchestration commands (call, resume, plan, start-server, tui, doctor) |
@a5c-ai/babysitter-<harness> | Harness-specific installer or plugin binary | Integrating Babysitter into a specific host tool such as Codex, Cursor, Gemini CLI, Pi, or GitHub Copilot |
The repository root package.json is workspace metadata for this monorepo. The public packages users install are the scoped packages above.
本项目为 Babysitter 项目的简介,介绍了该项目的基本信息和目的。
本节介绍了 Babysitter 项目的主要功能,包括 Process Library、Process Definitions、Quality Convergence、Run Resumption、Journal System 和 Best Practices 等。
本节列出了 Babysitter 项目的环境依赖和系统要求,包括 Node.js、Claude Code 和 Git 等。
本节提供了安装 Babysitter 项目的步骤,包括支持多种 AI 编码 harness 的安装和配置。
本节提供了使用 Babysitter 项目的快速入门指南,包括使用 Claude CLI 和 natural language 指令等。
本节介绍了配置 Babysitter 项目的方法,包括配置个人资料、设置断点偏好和工具偏好等。
本节介绍了 Babysitter 项目的 API 接口,包括 Codex CLI、Cursor IDE 和 CLI、Gemini CLI 等。
本节介绍了 Babysitter 项目的工作流和模块,包括插件系统和使用 Babysitter 的示例代码等。
aiskill88点评:成熟的智能体编排方案,783星标表明社区认可度高。解决了多agent系统的协调难题,代码质量可靠,文档完善,值得部署。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,babysitter AI工具 是一款质量优秀的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | babysitter |
| 原始描述 | 开源Claude技能:Babysitter enforces obedience on agentic workforces and enables them to manage e。⭐783 · JavaScript |
| Topics | Claude技能智能体编排智能体协调工作流管理JavaScript |
| GitHub | https://github.com/a5c-ai/babysitter |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-05-14 · 更新时间:2026-05-16 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。