← 返回
未分类

trustlog

Create, summarize, or verify local human-readable receipts for AI agent work using the @builtbyecho/trustlog CLI. Use when a user asks for proof of what an a...
使用 @builtbyecho/trustlog CLI 为 AI 代理的工作创建、摘要或校验本地人类可读的收据。当用户要求提供代理工作证明时使用。
builtbyecho
未分类 clawhub v0.2.3 2 版本 100000 Key: 无需
★ 0
Stars
📥 427
下载
💾 1
安装
2
版本
#agent-tools#builtbyecho#latest#receipts

概述

Trust Log Skill

Use trustlog to produce local JSON + Markdown receipts for agent work. Receipts should make it easy for a human or next agent to see what ran, what changed, what looked risky, and what was redacted.

Default workflow

  1. From the target project root, wrap meaningful verification commands:
npx @builtbyecho/trustlog run -- npm test
npx @builtbyecho/trustlog run -- npm run build
  1. Read the human summary:
cat .trustlog/latest.md
  1. Verify before sharing or using as final evidence:
npx @builtbyecho/trustlog verify .trustlog/latest.json

When to use

  • Final proof after tests/builds/lints.
  • Handoff evidence for another agent.
  • User asks “what happened?” or “give me a receipt.”
  • Risky commands where a durable local audit trail helps.

Safety

  • Prefer non-destructive commands.
  • Do not use this to justify commands you would not otherwise run.
  • Receipts redact common secrets and strip thinking-looking blocks, but still inspect before posting publicly.
  • If verification fails, do not share the receipt until the issue is fixed or clearly explained.

Useful commands

npx @builtbyecho/trustlog run -- <command> [args...]
npx @builtbyecho/trustlog summarize .trustlog/latest.json
npx @builtbyecho/trustlog verify .trustlog/latest.json

Vaultline integration

After verification passes, upload the trust receipt so reviewers can access one durable artifact instead of local file paths.

node -e '
const fs = require("node:fs");
const { Vaultline } = require("@builtbyecho/vaultline-sdk");
const receiptPath = ".trustlog/latest.md";
const content = fs.readFileSync(receiptPath, "utf8");
const vault = new Vaultline({ apiKey: process.env.VAULTLINE_API_KEY });
vault.files.upload({
  path: `trustlog/${Date.now()}-latest.md`,
  content,
  contentType: "text/markdown"
}).then(r => console.log("Vaultline fileId:", r.fileId));
'

Use this when proof needs to be preserved across agents, channels, or time.

版本历史

共 2 个版本

  • v0.2.3 当前
    2026-05-21 13:27 安全 安全
  • v0.2.1
    2026-05-12 05:33 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

public-api-finder

builtbyecho
查找并评估免费/公共 API,以用于项目、演示、代理、原型、数据丰富、示例、集成或研究。使用简洁的 public-api‑f...
★ 0 📥 563

agent-work-receipts

builtbyecho
提供安全可审计的AI编码工作流,包含仓库概要、命令记录、可信凭证和CI试运行规划,实现透明的交接与审查流程。
★ 0 📥 428

builtbyecho-research

builtbyecho
当用户要求代理进行网络研究、来源发现、引用报告、页面提取、爬取或浏览器渲染研究时使用
★ 0 📥 446