返回顶部
k

kevros 精准决策代理

Precision decisioning, agentic trust, and verifiable identity for autonomous agents"

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.3.9
安全检测
已通过
106
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

kevros

Kevros

自主代理的密码学治理:精准决策、来源证明、意图绑定、能力委托、策略分析与合规导出。

每个决策都会获得一个签名发布令牌。每个动作都会获得一个哈希链记录。每个意图都会与其命令建立密码学绑定。下游服务可独立验证——无需回调,无需信任假设。

基础URL: https://governance.taskhawktech.com

快速开始

获取API密钥(免费、即时、无需付费):

bash
curl -X POST https://governance.taskhawktech.com/signup \
-H Content-Type: application/json \
-d {agent_id: your-agent-id}

响应:

json
{
apikey: kvrs...,
tier: free,
monthly_limit: 1000,
usage: {
header: X-API-Key
}
}

在后续所有请求中通过 X-API-Key 头部使用该API密钥。

精准决策

POST /governance/verify

在执行前根据策略边界验证动作。返回ALLOW、CLAMP或DENY,并附带一个密码学发布令牌,任何下游服务均可独立验证。

请求:

json
{
actiontype: apicall,
action_payload: {
endpoint: /deploy,
service: api-v2,
replicas: 3
},
agent_id: your-agent-id,
policy_context: {
max_values: { replicas: 5 },
forbidden_keys: [sudo, force]
}
}

响应:

json
{
decision: ALLOW,
verification_id: a1b2c3d4-...,
release_token: f7a8b9c0...,
applied_action: {
endpoint: /deploy,
service: api-v2,
replicas: 3
},
reason: 所有值均在策略范围内,
epoch: 42,
provenance_hash: e3b0c442...,
timestamp_utc: 2026-02-26T12:00:00Z
}

  • - ALLOW — 按计划执行。releasetoken 是证明。
  • CLAMP — 动作已调整为安全边界。请使用 appliedaction 而非原始动作。
  • DENY — 动作被拒绝。请勿执行。release_token 为null。

与协作代理共享 release_token,以便它们能独立验证该决策。

来源证明

POST /governance/attest

在哈希链式、仅追加的证据账本中记录已完成动作。每次证明都会扩展你的来源链。你的原始载荷会经过SHA-256哈希处理——实际数据永远不会被存储。

请求:

json
{
agent_id: your-agent-id,
action_description: 使用3个副本部署了api-v2,
action_payload: {
service: api-v2,
replicas: 3,
status: success
},
context: {
environment: production,
triggered_by: scheduled
}
}

响应:

json
{
attestation_id: b2c3d4e5-...,
epoch: 43,
hash_prev: e3b0c442...,
hash_curr: a1b2c3d4...,
timestamp_utc: 2026-02-26T12:00:01Z,
chain_length: 43
}

一条更长的、包含一致结果的链会随时间推移建立更高的信任评分。

意图绑定

POST /governance/bind

将声明的意图绑定到特定命令。在你计划要做的事与执行该事的命令之间建立密码学链接。之后可证明你确实做了你所说的事。

请求:

json
{
agent_id: your-agent-id,
intent_type: MAINTENANCE,
intent_description: 扩展api-v2以应对流量高峰,
command_payload: {
action: scale,
service: api-v2,
replicas: 5
},
goal_state: {
replicas: 5,
healthy: true
}
}

响应:

json
{
intent_id: c3d4e5f6-...,
intent_hash: d4e5f6a7...,
binding_id: e5f6a7b8-...,
binding_hmac: a7b8c9d0...,
command_hash: b8c9d0e1...,
epoch: 44,
timestamp_utc: 2026-02-26T12:00:02Z
}

保存 intentid 和 bindingid 以便稍后验证结果。

验证结果

POST /governance/verify-outcome

验证绑定的意图是否达到了其目标状态。与之前的 bind() 调用配合使用时免费。

请求:

json
{
agent_id: your-agent-id,
intent_id: c3d4e5f6-...,
binding_id: e5f6a7b8-...,
actual_state: {
replicas: 5,
healthy: true
},
tolerance: 0.1
}

响应:

json
{
verification_id: f6a7b8c9-...,
intent_id: c3d4e5f6-...,
status: ACHIEVED,
achieved_percentage: 100.0,
discrepancy: null,
evidence_hash: c9d0e1f2...,
timestamp_utc: 2026-02-26T12:00:03Z
}

状态值:ACHIEVED、PARTIALLY_ACHIEVED、FAILED、BLOCKED、TIMEOUT。与之前的 bind() 调用配合使用时免费。

合规包

POST /governance/bundle — 每次调用 $0.05

为合规、审计或监管审查导出代理的完整密码学信任记录。

请求:

json
{
agent_id: your-agent-id,
timerangestart: 2026-02-25T00:00:00Z,
timerangeend: 2026-02-26T12:00:00Z,
includeintentchains: true,
includepqcsignatures: true,
includeverificationinstructions: true
}

响应:

json
{
bundle_id: d4e5f6a7-...,
agent_id: your-agent-id,
record_count: 42,
truncated: false,
chain_integrity: true,
time_range: {start: 2026-02-25T00:00:00Z, end: 2026-02-26T12:00:00Z},
records: [...],
intent_chains: [...],
pqc_signatures: [...],
verification_instructions: 重新计算SHA-256...,
bundle_hash: e5f6a7b8...,
timestamp_utc: 2026-02-26T12:00:04Z
}

批量操作

POST /governance/batch

在单次调用中执行最多100个治理操作(verify、attest、bind)。每个子操作按标准费率单独计费。适用于批量处理或多步骤工作流。

请求:

json
{
agent_id: your-agent-id,
operations: [
{
type: verify,
params: {
actiontype: apicall,
action_payload: {endpoint: /deploy, replicas: 3}
}
},
{
type: attest,
params: {
action_description: 部署完成,
action_payload: {status: success}
}
}
],
stopondeny: false
}

响应:

json
{
batch_id: g7h8i9j0-...,
agent_id: your-agent-id,
total: 2,
executed: 2,
results: [
{index: 0, type: verify, status: ok, result: {decision: ALLOW, ...:

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 openclaw-plugin-1776362887 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 openclaw-plugin-1776362887 技能

通过命令行安装

skillhub install openclaw-plugin-1776362887

下载

⬇ 下载 kevros v0.3.9(免费)

文件大小: 26.13 KB | 发布时间: 2026-4-17 13:56

v0.3.9 最新 2026-4-17 13:56
Fix install type (npm not uv), align version with gateway v0.3.8, correct bundle pricing to $0.05

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large
返回顶部