开源AI工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 8.5 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:cargo install(推荐) cargo install openfirma # 方式二:从源码编译 git clone https://github.com/Firma-AI/openfirma cd openfirma cargo build --release # 二进制在 ./target/release/openfirma
# 查看帮助 openfirma --help # 基本运行 openfirma [options] <input> # 详细使用说明请查阅文档 # https://github.com/Firma-AI/openfirma
# openfirma 配置说明 # 查看配置选项 openfirma --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export OPENFIRMA_CONFIG="/path/to/config.yml"
<br/>
<img src="docs-site/src/assets/Subtitle.gif" alt="OpenFirma" width="600" />
<br/> <br/>
Every call passes through a sidecar that decides whether it happens. <br/> Policy in, signed decision out. Deterministic. At call-level.
<br/>
</div>
</div>
<br/> <div align="center"> <img src="docs-site/src/assets/home-diagram.svg" alt="OpenFirma diagram" width="100%" /> </div> <br/>
<br/>
Linux / macOS:
curl -fsSL https://install.openfirma.ai | sh
On macOS with Homebrew installed, the installer uses brew install firma-ai/openfirma/firma automatically. You can also install directly:
brew install firma-ai/openfirma/firma
Build and install from source (requires Rust 1.88+ and protoc):
git clone https://github.com/Firma-AI/openfirma
cd openfirma
cargo install --path crates/firma --locked
firma ships as a single precompiled static binary, no build toolchain or API keys required to get started.
There are two ways to start OpenFirma. Both end up in the same place (your agent running under enforcement) but the first is faster to try, the second gives you more control.
Option A: zero config
firma run autostarts a local Authority and Sidecar for the duration of the session and shuts them down when the agent exits. One command, nothing to configure, nothing left running when you are done. On first launch it prompts once to confirm the autostart; subsequent runs are silent.
firma run -- claude
Every outbound call is normalized, checked against your Cedar policy, and either forwarded or denied. Watch decisions live in a second terminal:
firma monitor
Option B: explicit setup
firma sidecar start boots Authority and Sidecar as persistent daemons that stay alive across sessions.
firma config # scaffold once: keys, policy, mappings
firma sidecar start --detach # boot Authority + Sidecar as persistent daemons
firma run -- claude
firma monitor
Use this when you want to run multiple agents against the same Authority, keep enforcement running between sessions, or configure posture and mappings upfront with firma config before starting anything.
Standalone commands (flags only, no subcommands)
| Command | Description |
|---|---|
firma run | Launch an agent in a sandbox via the Sidecar |
firma config | Scaffold a new agent config directory (--mode…) |
firma monitor | Tail audit decisions and component logs (--source…) |
firma doctor | Diagnose a Firma install |
firma help | Print help for any command |
firma sidecar — run and manage the enforcement Sidecar daemon. Bare form (no subcommand) = foreground server.
| Subcommand | Description |
|---|---|
sidecar start | Start Sidecar (+ local Authority) as a daemon |
sidecar stop | Stop the daemon gracefully (--timeout fallback) |
sidecar status | List live Sidecars + health (table or --json) |
firma authority — issue tokens, stream policy bundles and revocations.
| Subcommand | Description |
|---|---|
authority revocations | Manage the revocation list (nested group) |
authority generate-key | Generate a new Ed25519 signing key pair |
authority init-tls | Bootstrap local CA + Authority↔Sidecar certs |
authority issue | Sign and emit a capability token to a TOML seed |
authority issue-client-cert | Sign an mTLS client cert for a Sidecar |
authority generate-client-ca | Generate a new mTLS client CA key pair |
firma policy — browse the template catalogue and validate Cedar bundles.
| Subcommand | Description |
|---|---|
policy list | Print all posture and mapping templates |
policy validate | Parse and schema-check a Cedar policy file |
policy test | Run an allow/deny fixture against a bundle |
firma token — approve and revoke local-execution governance tokens (HITL).
| Subcommand | Description |
|---|---|
token approve | Approve a pending governance token |
token revoke | Revoke a pending or approved governance token |
Full CLI reference: docs/cli.md
<br/>
高质量的AI工作流安全控制项目
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,开源AI工作流 在Agent工作流赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | openfirma |
| Topics | ai-agentsai-governanceai-safety |
| GitHub | https://github.com/Firma-AI/openfirma |
| License | Apache-2.0 |
| 语言 | Rust |
收录时间:2026-06-18 · 更新时间:2026-06-18 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端