DRS工作流 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
DRS工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
DRS工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/OkeyAmy/DRS@latest # 方式二:从源码编译 git clone https://github.com/OkeyAmy/DRS cd DRS go build -o drs . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/OkeyAmy/DRS/releases
# 查看帮助 drs --help # 基本运行 drs [options] <input> # 详细使用说明请查阅文档 # https://github.com/OkeyAmy/DRS
# drs 配置说明 # 查看配置选项 drs --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export DRS_CONFIG="/path/to/config.yml"
Infrastructure-grade accountability layer for agentic AI systems.
DRS is a cryptographic delegation receipt protocol implemented in this repository as JWT receipts, RFC 8785 JCS canonicalization, Ed25519 signatures, DID-based identity, and SHA-256 hash chaining. Every time an AI agent acts on behalf of a human, DRS produces a signed, hash-chained receipt that proves — to a human, an auditor, or a regulator — who authorized the action, what was permitted, and when the authorization was granted.
Documentation → okeyamy.github.io/DRS
Plugging DRS into your product? You do not need to fork this repo. DRS ships as published core artifacts plus workspace helper packages you install or vendor according to your deployment shape:
- @okeyamy/drs-sdk — pnpm add @okeyamy/drs-sdk (issue receipts and bundles) - ghcr.io/okeyamy/drs-verify — docker pull (verifier trust engine) - drs-core — cargo add drs-core (Rust crypto / WASM core) - @drs/mcp-server — workspace Node app enforcement middleware; use from this monorepo until it is included in the release workflow
Product shape: use the SDK to issue, use middleware or a future gateway to enforce, and use the verifier service as the trust engine. drs-verify answers whether a bundle is trusted; your app middleware decides whether the protected handler may execute.
Start at the Builder guides to map your role (React Native, MCP server, A2A agent, Node backend) to the right artifact.
---
pnpm add @okeyamy/drs-sdk
Either with the published image directly:
docker run -p 8080:8080 ghcr.io/okeyamy/drs-verify:latest
Or with Docker Compose if you want .env-based configuration:
```bash git clone https://github.com/OkeyAmy/DRS cd DRS cp .env.example .env # review defaults; set DRS_ADMIN_TOKEN if needed docker compose up -d
curl http://localhost:8080/healthz
All configuration is environment-variable driven. No hard-coded URLs, ports, or keys.
| Variable | Default | Description |
|---|---|---|
LISTEN_ADDR | :8080 | HTTP listen address |
SERVER_IDENTITY | — | This server's DID — enforces invocation.tool_server binding |
DID_CACHE_SIZE | 10000 | LRU DID resolver cache cap |
DID_CACHE_TTL_SECS | 3600 | DID cache TTL (1 hour) |
STATUS_LIST_BASE_URL | — | W3C Bitstring Status List endpoint |
STATUS_CACHE_TTL_SECS | 300 | Status list cache TTL (5 min) |
NONCE_STORE_BACKEND | memory | Replay backend: memory or redis |
REDIS_URL | — | Required when NONCE_STORE_BACKEND=redis |
NONCE_STORE_MAX_ENTRIES | 100000 | Replay protection store capacity |
NONCE_STORE_TTL_SECS | 3600 | Replay protection TTL (1 hour) |
DRS_ADMIN_TOKEN | — | Bearer token for POST /admin/revoke |
REVOCATION_STORE_PATH | — | Optional durable local revocation log path |
STORE_DIR | — | Filesystem store base directory (Tier 1/3) |
TSA_URL | — | RFC 3161 TSA endpoint — enables Tier 3 store |
MAX_BODY_BYTES | 1048576 | Maximum request body size (1 MiB) |
LOG_LEVEL | info | Log level: debug / info / warn / error |
LOG_FORMAT | text | Log format: text or json |
METRICS_ADDR | — | Separate Prometheus listener; empty disables metrics |
高质量的开源AI工作流项目
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,DRS工作流 在Agent工作流赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | DRS |
| 原始描述 | 开源AI工作流:Research project showing cryptographic, per-step delegation proofs for accountab。⭐9 · Go |
| Topics | AI工作流加密 |
| GitHub | https://github.com/OkeyAmy/DRS |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-09 · 更新时间:2026-06-09 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端