经 AI Skill Hub 精选评估,人工智能红队引擎 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
人工智能红队引擎 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
人工智能红队引擎 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install humanbound
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install humanbound
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/humanbound/humanbound
cd humanbound
pip install -e .
# 验证安装
python -c "import humanbound; print('安装成功')"
# 命令行使用
humanbound --help
# 基本用法
humanbound input_file -o output_file
# Python 代码中调用
import humanbound
# 示例
result = humanbound.process("input")
print(result)
# humanbound 配置文件示例(config.yml) app: name: "humanbound" debug: false log_level: "INFO" # 运行时指定配置文件 humanbound --config config.yml # 或通过环境变量配置 export HUMANBOUND_API_KEY="your-key" export HUMANBOUND_OUTPUT_DIR="./output"
<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="assets/logo-light.svg"/> <source media="(prefers-color-scheme: light)" srcset="assets/logo-dark.svg"/> <img src="assets/logo-dark.svg" alt="Humanbound" width="280"/> </picture> </p>
<p align="center"> Open-source AI agent red-team engine, SDK, and CLI. <br/> Runs locally or against the Humanbound Platform. No login required to start. </p>
<p align="center"> <a href="#quick-start">Quick Start</a> · <a href="#cli-usage">CLI</a> · <a href="#python-sdk">SDK</a> · <a href="https://docs.humanbound.ai/">Documentation</a> · <a href="#contributing">Contributing</a> </p>
<p align="center"> <a href="https://pypi.org/project/humanbound/"><img src="https://img.shields.io/pypi/v/humanbound?style=flat-square&color=FD9506" alt="PyPI version"/></a> <a href="https://pypi.org/project/humanbound/"><img src="https://img.shields.io/pypi/pyversions/humanbound?style=flat-square&color=FD9506" alt="Python versions"/></a> <a href="https://pypi.org/project/humanbound/"><img src="https://img.shields.io/pypi/dm/humanbound?style=flat-square&color=FD9506" alt="Downloads"/></a> <a href="https://github.com/humanbound/humanbound/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/humanbound/humanbound/ci.yml?style=flat-square&color=FD9506" alt="CI"/></a> <a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-FD9506?style=flat-square" alt="License"/></a> <a href="https://discord.gg/gQyXjVBF"><img src="https://img.shields.io/badge/discord-community-FD9506?style=flat-square" alt="Discord"/></a> <a href="https://docs.humanbound.ai/"><img src="https://img.shields.io/badge/docs-humanbound.ai-FD9506?style=flat-square" alt="Docs"/></a> </p>
---
📖 Full documentation lives at docs.humanbound.ai — this README covers the essentials; the docs have the depth.
- Clean name: humanbound is the new PyPI install. The old humanbound-cli package is a discontinued transitional stub (final release 1.2.2 depends on humanbound>=2.0.2); please install humanbound directly. - Public SDK namespace alongside the CLI — use the CLI or drive the engine from Python. Both share the same implementation, so they can't drift. - Firewall integration: pip install humanbound[firewall] pulls the renamed humanbound-firewall (formerly hb-firewall) alongside the CLI.
See CHANGELOG.md for the full 2.0.0 release notes.
pip install humanbound # CLI + SDK, core deps
pip install humanbound[engine] # + OpenAI / Anthropic / Gemini providers
pip install humanbound[firewall] # + humanbound-firewall runtime
pip install humanbound[engine,firewall] # everything
```bash
```
export HB_PROVIDER=openai export HB_API_KEY=sk-...
```python from humanbound import Bot, LocalRunner, OwaspAgentic, TestingLevel, EngineCallbacks
bot = Bot(endpoint="https://my-agent/chat", api_key="...")
class Callbacks(EngineCallbacks): def on_finding(self, insight): ... def on_progress(self, pct): ...
runner = LocalRunner()
高质量的开源AI工作流项目,适合AI安全和红队测试
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:人工智能红队引擎 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | humanbound |
| Topics | AI红队测试AI安全Python |
| GitHub | https://github.com/humanbound/humanbound |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-06-09 · 更新时间:2026-06-09 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端