开源AI工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:cargo install(推荐) cargo install harness-manager # 方式二:从源码编译 git clone https://github.com/INONONO66/harness-manager cd harness-manager cargo build --release # 二进制在 ./target/release/harness-manager
# 查看帮助 harness-manager --help # 基本运行 harness-manager [options] <input> # 详细使用说明请查阅文档 # https://github.com/INONONO66/harness-manager
# harness-manager 配置说明 # 查看配置选项 harness-manager --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export HARNESS_MANAGER_CONFIG="/path/to/config.yml"
One command layer for AI coding agents, proxy profiles, auth state, and harness isolation.
Claude Code, Codex CLI, Gajae-Code, Grok CLI, OpenCode, Pi, and harnesses built on top of them all want to own the same machine. They read the same env vars, write the same config folders, cache credentials in different places, and leak state across sessions. hm gives each tool a clean launch boundary without forcing you to abandon the native CLIs.
hm detect
hm use codex --profile proxy
hm use claude --profile proxy
hm harness install my-harness
hm use my-harness -- --help
Supported platforms: macOS and Linux. Windows is not supported because hm uses Unix process exec semantics and Unix filesystem permissions for launch, isolation, and secret handling.
curl -fsSL https://raw.githubusercontent.com/INONONO66/harness-manager/main/scripts/install.sh | sh
Install and copy built-in manifests in one step:
curl -fsSL https://raw.githubusercontent.com/INONONO66/harness-manager/main/scripts/install.sh | sh -s -- --init
Install everything non-manual that hm init --install can manage:
curl -fsSL https://raw.githubusercontent.com/INONONO66/harness-manager/main/scripts/install.sh | sh -s -- --install-harnesses
Or build from source:
git clone https://github.com/INONONO66/harness-manager.git
cd harness-manager
cargo build --release
cp target/release/hm ~/.local/bin/
For local development, install from the checkout:
cargo install --path .
hm inject plan codex --profile proxy
hm use codex --profile proxy hm use claude --profile proxy
[injection]
strategy = "env"
provider = "anthropic"
supported_providers = ["anthropic"]
endpoint_env = "ANTHROPIC_BASE_URL"
api_key_env = "ANTHROPIC_API_KEY"
strip_envs = ["ANTHROPIC_API_KEY", "ANTHROPIC_AUTH_TOKEN", "ANTHROPIC_BASE_URL"]
endpoint_strip_v1 = true
hm use claude --profile proxy strips strip_envs from the child env, then sets endpoint_env and api_key_env from the active profile's gateway. If no gateway is present and the legacy [profiles.X.llm] block is, hm falls back to that single endpoint/bearer.
[injection]
strategy = "provider-config-seed"
config_path = "{home}/.config/opencode/opencode.json"
root_key = "provider"
provider_base_url_key = "options.baseURL"
provider_api_key_key = "options.apiKey"
provider_headers_key = "options.headers"
supported_providers = ["anthropic", "openai", "google", "openrouter", "groq", "xai", ...]
overwrite = false
endpoint_strip_v1 = false
legacy_provider = "openai"
[injection.provider_api_key_envs]
anthropic = "ANTHROPIC_API_KEY"
openai = "OPENAI_API_KEY"
google = "GOOGLE_API_KEY"
[injection.provider_header_overrides.anthropic]
"x-api-key" = "{bearer}"
"Authorization" = "Bearer {bearer}"
hm use opencode --profile proxy writes a JSON file under the isolation home (never the user's real ~). The file is deep-merged into any existing user content. legacy_provider (optional) tells the strategy how to fall back to [profiles.X.llm]: hm seeds that one provider with llm.endpoint and llm.bearer. provider_api_key_envs maps each supported provider id to the child-process env var that should receive the resolved bearer; missing mappings fail closed before env or file writes.
[injection]
strategy = "codex-config-seed"
config_path = "{home}/.codex/config.toml"
openai_base_url_key = "openai_base_url"
model_provider_key = "model_provider"
model_provider_value = "openai"
provider = "openai"
supported_providers = ["openai"]
api_key_env = "CODEX_API_KEY"
strip_envs = ["OPENAI_API_KEY", "OPENAI_BASE_URL", "CODEX_API_KEY", "CODEX_ACCESS_TOKEN"]
overwrite = false
endpoint_strip_v1 = false
hm use codex --profile proxy writes two top-level keys to the TOML config (via toml_edit::DocumentMut, preserving comments and existing keys from [isolation.seed_files]), then strips strip_envs from the launch env and sets api_key_env to the resolved bearer. The bearer NEVER reaches the file — only the env var. This strategy is single-provider only: the gateway must route the configured provider (or the legacy [profiles.X.llm] fallback is used).
Adding a new runtime requires only a TOML file. No Rust change.
```
该项目提供了一个开源的AI工作流管理器,使用Rust语言编写,具有管理和启动AI编码代理运行时的功能,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,开源AI工作流 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | harness-manager |
| 原始描述 | 开源AI工作流:Agent Runtime Manager — detect, manage, and launch AI coding agent runtimes from。⭐15 · Rust |
| Topics | workflowrust |
| GitHub | https://github.com/INONONO66/harness-manager |
| License | MIT |
| 语言 | Rust |
收录时间:2026-06-11 · 更新时间:2026-06-11 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端