AI编码智能体治理框架 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
为AI编码智能体提供治理护栏和洞察的开源工作流。通过安全策略、监管机制和性能分析,帮助开发团队安全部署和管理AI代理系统,适合关注AI安全和治理的开发者和企业。
AI编码智能体治理框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
为AI编码智能体提供治理护栏和洞察的开源工作流。通过安全策略、监管机制和性能分析,帮助开发团队安全部署和管理AI代理系统,适合关注AI安全和治理的开发者和企业。
AI编码智能体治理框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 克隆仓库 git clone https://github.com/algorismo-au/lanekeep cd lanekeep # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 lanekeep --help # 基本运行 lanekeep [options] <input> # 详细使用说明请查阅文档 # https://github.com/algorismo-au/lanekeep
# lanekeep 配置说明 # 查看配置选项 lanekeep --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export LANEKEEP_CONFIG="/path/to/config.yml"
<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="images/lanekeep-logo-mark.svg" /> <source media="(prefers-color-scheme: light)" srcset="images/lanekeep-logo-mark-light.svg" /> <img src="images/lanekeep-logo-mark-light.svg" alt="LaneKeep" width="120" /> </picture> </p>
<p align="center"> <a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" alt="License: Apache 2.0" /></a> <a href="https://github.com/algorismo-au/lanekeep/actions/workflows/test.yml"><img src="https://github.com/algorismo-au/lanekeep/actions/workflows/test.yml/badge.svg" alt="Tests" /></a> <img src="https://img.shields.io/badge/version-1.0.4-green.svg" alt="Version: 1.0.4" /> <img src="https://img.shields.io/badge/Made_with-Bash-1f425f.svg?logo=gnubash&logoColor=white" alt="Made with Bash" /> <img src="https://img.shields.io/badge/platform-Linux_·macOS·Windows(WSL)-informational.svg" alt="Platform: Linux · macOS · Windows (WSL)" /> <img src="https://img.shields.io/badge/network_calls-zero-brightgreen.svg" alt="Zero Network Calls" /> <a href="SECURITY.md"><img src="https://img.shields.io/badge/security-policy-blue.svg" alt="Security Policy" /></a> </p>
<p align="center"> <a href="README.md">English</a> · <a href="translations/README.zh-CN.md">简体中文</a> · <a href="translations/README.ja.md">日本語</a> · <a href="translations/README.es.md">Español</a> · <a href="translations/README.ko.md">한국어</a> · <a href="translations/README.pt-BR.md">Português</a> · <a href="translations/README.de.md">Deutsch</a> · <a href="translations/README.fr.md">Français</a> · <a href="translations/README.ru.md">Русский</a> · <a href="translations/README.tr.md">Türkçe</a> · <a href="translations/README.ar.md">العربية</a> · <a href="translations/README.vi.md">Tiếng Việt</a> · <a href="translations/README.it.md">Italiano</a> · <a href="translations/README.hi.md">हिन्दी</a> </p>
<p align="center"><sub>Built by <a href="https://www.algorismo.com">Algorismo</a></sub></p>
| Dependency | Required | Notes |
|---|---|---|
| **bash** >= 4 | yes | Core runtime |
| **jq** | yes | JSON processing |
| **socat** | for sidecar mode | Not needed for hook-only mode |
| **Python 3** | optional | Web dashboard (lanekeep ui) |
sudo apt install jq socat # Debian/Ubuntu
brew install bash jq socat # macOS (bash 4+ required)
sudo apt install jq socat # Windows (inside WSL)
git clone https://github.com/algorismo-au/lanekeep.git
cd lanekeep
Add bin/ to your PATH permanently:
bash scripts/add-to-path.sh
Detects your shell and writes to your rc file. Idempotent.
Or for the current session only:
export PATH="$PWD/bin:$PATH"
No build step. Pure Bash.
cd /path/to/your/project
lanekeep init .
Creates lanekeep.json, .lanekeep/traces/, and installs hooks in .claude/settings.local.json.
|
Get in touch → |
</div>
lanekeep demo
DENIED rm -rf / Recursive force delete
DENIED DROP TABLE users SQL destruction
DENIED git push --force Dangerous git operation
ALLOWED ls -la Safe directory listing
Results: 4 denied, 2 allowed
Everything is configurable: built-in defaults, user-defined rules, and community-sourced packs all merge into a single policy. Override any default, add your own rules, or disable what you don't need.
Config resolves: $PROJECT_DIR/lanekeep.json -> $LANEKEEP_DIR/defaults/lanekeep.json. Config is hash-checked at startup; mid-session modifications deny all calls.
Configure enforcement profiles, toggle policies, and tune budget limits, all from the dashboard. Changes take effect immediately without restarting the sidecar.
<p align="center"> <img src="images/readme/lanekeep_settings1.png" alt="LaneKeep Settings" width="749" /> </p> <p align="center"> <img src="images/readme/lanekeep_settings2.png" alt="LaneKeep Settings" width="749" /> </p> <p align="center"> <img src="images/readme/lanekeep_settings3.png" alt="LaneKeep Settings" width="749" /> </p>
---
See REFERENCE.md: CLI Reference for the full command list.
---
填补AI代理治理空白的创新项目,框架设计合理。但项目热度有限,生产应用前需谨慎评估成熟度。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,AI编码智能体治理框架 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | lanekeep |
| 原始描述 | 开源AI工作流:Governance guardrails and insights for AI coding agents。⭐18 · Shell |
| Topics | AI治理智能体编码代理AI安全工作流自动化 |
| GitHub | https://github.com/algorismo-au/lanekeep |
| License | Apache-2.0 |
| 语言 | Shell |
收录时间:2026-05-24 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端