Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

trust-my-agent-ai相信我的 Agent 人艾

Agent Skill

trust-my-agent-ai 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,768

周安装

407

GitHub Stars

公开资料未说明

下载量

3,256
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:trust-my-agent-ai(相信我的 Agent 人艾)
来源仓库:https://github.com/anecdotes-yair/trust-my-agent-ai
安装命令:
openclaw skills install trust-my-agent-ai
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install trust-my-agent-ai

简介

对 OpenClaw 代理执行 41 项无状态安全检查并输出信任评分。

  • 帮助识别潜在权限滥用或异常行为模式。trust-my-agent-ai 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 支持本地运行与结果导出便于审计跟踪。
  • 检查项覆盖网络、文件、进程等多个攻击面维度。
  • 高分不等于绝对安全,低分需立即人工介入审查。

SKILL.md

name
trustmyagent
description
🛡️ TrustMyAgent - Security posture monitoring for AI agents. Runs 41 stateless checks across 14 domains and calculates a trust score (0-100). Supports local-only mode (no network calls) and dry-run mode (preview before sending).
version
1.0
author
Anecdotes AI Labs
license
MIT
homepage
https://www.trustmyagent.ai
repository
https://github.com/Anecdotes-Yair/trust-my-agent-ai
metadata
openclaw
emoji
🛡️
category
security
tags
requires
bins
shared
true
install
kind
brew
formula
python3
os
bins
label
Python 3 (Homebrew)
kind
node
os
bins
label
Python 3 (system)

🛡️ TrustMyAgent - Security Agent

Stateless security posture monitoring for AI agents.

TrustMyAgent runs 41 read-only security checks across 14 domains on the host machine, calculates a trust score (0-100), and optionally reports results to a public Trust Center dashboard. It is fully stateless — no files are written, no state is persisted, and no background processes are installed without explicit user consent.

Open source: All check logic is visible in run.py and checks/*.json. The full source code is at github.com/Anecdotes-Yair/trust-my-agent-ai.

Setup

When the user asks to set up TrustMyAgent, walk them through the following steps. Present each step to the user and wait for their approval before executing. Do not run commands silently or skip user confirmation.

Step 1: Verify Python 3

Check that Python 3 is available:

python3 --version

If Python 3 is not installed, ask the user before installing it:

  • macOS: brew install python3
  • Linux: sudo apt-get install python3 or sudo apk add python3

Step 2: Run a dry-run assessment

Run the security assessment in dry-run mode first so the user can review the results before any data leaves the machine:

python3 {baseDir}/run.py --dry-run

This runs all 41 checks and prints the full telemetry payload that *would* be sent — but sends nothing. Show the user the results and let them review:

  • The trust score and tier
  • Which checks passed and failed
  • The exact JSON payload that would be transmitted

Ask the user: "Would you like to send this report to the Trust Center dashboard, run in local-only mode (no network), or adjust any settings?"

Step 3: Run the full assessment (with user consent)

If the user approves sending telemetry:

python3 {baseDir}/run.py

If the user prefers local-only mode (no telemetry sent):

python3 {baseDir}/run.py --local-only

Step 4: Schedule recurring assessments (optional)

Ask the user if they want to schedule automatic assessments. If they agree, suggest a cron job. The command varies by agent platform:

OpenClaw agents:

openclaw cron add --name "🛡️ TrustMyAgent" --cron "*/15 * * * *" --session agent:security:main --message "Run security assessment: python3 {baseDir}/run.py"

Other agents / standalone:

# Add to system crontab (runs every 15 minutes)
(crontab -l 2>/dev/null; echo "*/15 * * * * python3 {baseDir}/run.py --quiet") | crontab -
The user can choose any interval or skip scheduling entirely.

What Data Is Sent

When telemetry is enabled (the default), the following data is sent via HTTPS POST to https://www.trustmyagent.ai/api/telemetry:

FieldExamplePurpose
agent.idsha256(hostname)Unique identifier (derived from hostname hash, not the hostname itself)
agent.name"My Agent"Display name (from IDENTITY.md or env var)
agent.platform"darwin"OS type (darwin/linux)
agent.detected_env"macos_arm64"Runtime environment label
posture.trust_tier"HIGH"Computed trust tier
posture.overall_score92Numeric score 0-100
results[]{check_id, passed, status}Per-check pass/fail status
detections[]{check_id, severity, risk}Failed checks with risk context

What is NOT sent:

  • No file contents, paths, or directory listings
  • No environment variable values (only whether secret-like patterns exist)
  • No process names, PIDs, or command lines
  • No network traffic, IP addresses, or hostnames
  • No credentials, tokens, or API keys
  • No conversation transcripts or user data

The telemetry endpoint and all check logic are open source. You can verify exactly what is transmitted by using --dry-run mode.

Opting out of telemetry

Use --local-only to run all checks without any network calls:

python3 {baseDir}/run.py --local-only

This gives you the full security assessment locally without sending anything.

How It Works

  1. run.py executes on the host — triggered manually, by cron, or by agent heartbeat
  2. 41 security checks run using bash commands and Python sensors (all read-only)
  3. Trust score is calculated (0-100) based on pass/fail results and severity weighting
  4. Results are displayed locally in the terminal
  5. (Optional) Telemetry is sent to the Trust Center dashboard via HTTPS

No files are written locally. No state is persisted on the agent machine.

Security Domains

DomainChecksFocus
Physical EnvironmentPHY-001 to PHY-005Disk encryption, container isolation, non-root execution
NetworkNET-001 to NET-005Dangerous ports, TLS/SSL, DNS, certificates
SecretsSEC-001 to SEC-005, MSG-005Env var secrets, cloud creds, private keys, conversation leaks
CodeCOD-001 to COD-004Git security, no secrets in repos
LogsLOG-001 to LOG-004System logging, audit readiness
SkillsSKL-001 to SKL-005, MSG-001, MSG-003Skill manifests, MCP server trust
IntegrityINT-001 to INT-005, MSG-002, MSG-006Backdoors, browser abuse, suspicious tool calls, URL reputation
Social GuardsSOC-001 to SOC-006, MSG-004Action logging, session transparency, Moltbook integrity, owner reputation
Incident PreventionINC-001 to INC-005Process spawning, system load, port scanning
Node SecurityNODE-001 to NODE-005Remote execution approval, token permissions, exec allowlists
Media SecurityMEDIA-002 to MEDIA-003Temp directory permissions, file type validation
Gateway SecurityGATEWAY-001 to GATEWAY-002Binding address, authentication
Identity SecurityIDENTITY-001 to IDENTITY-002DM pairing allowlist, group chat allowlist
SubAgent SecuritySUBAGENT-001 to SUBAGENT-002Concurrency limits, target allowlists

Check Types

Bash checks (20 checks)

Defined in checks/openclaw_checks.json. Each check runs a shell command and evaluates the output against a pass_condition (equals, contains, not_contains, exit_code_zero, etc.).

Python/Message-based checks (21 checks)

Defined in checks/message_checks.json and checks/nodes_media_checks.json. These are programmatic sensors that analyze secrets, session transcripts, MCP configs, skill manifests, and more.

Platform Support

Checks auto-detect macOS vs Linux and use platform-appropriate commands. Checks can declare "platforms": ["linux"] to be gracefully skipped on unsupported platforms.

Trust Tiers

TierScoreLabel
HIGH90-100Ready for Business
MEDIUM70-89Needs Review
LOW50-69Elevated Risk
UNTRUSTED0-49Critical Security Gaps

Any critical-severity failure caps the score at 49 (UNTRUSTED). Three or more high-severity failures cap at 69 (LOW).

Command Line Options

FlagDescription
--checks, -cPath to custom checks JSON file
--timeout, -tTimeout per check in seconds (default: 30)
--quiet, -qMinimal output
--json, -jOutput structured JSON to stdout
--dry-runRun all checks and display the telemetry payload, but do not send it
--local-onlyRun all checks locally without any network calls
--no-notifySkip agent notifications for detections

Configuration

SourceDescriptionDefault
IDENTITY.mdAgent display name (read from # Name section)"Agent"
OPENCLAW_AGENT_NAME env varOverrides IDENTITY.md name
OPENCLAW_AGENT_ID env varAgent identifierSHA256 of hostname
TRUSTMYAGENT_TELEMETRY_URL env varServer endpointhttps://www.trustmyagent.ai/api/telemetry

Files

Agent/
├── SKILL.md                        # This file
├── run.py                          # Main entry point (stateless runner)
└── checks/
    ├── openclaw_checks.json        # 20 bash-based security checks
    ├── message_checks.json         # 10 Python-based message/secret sensors
    ├── nodes_media_checks.json     # 11 infrastructure checks
    └── detection_kb.json           # Risk descriptions and remediation guidance

Architecture

┌─────────────────┐                                 ┌──────────────────┐
│   Agent Host     │      POST /api/telemetry        │ 🛡️ TrustMyAgent  │
│                  │  ────────────────────────────►   │  Server           │
│  run.py          │  (only when telemetry enabled)  │  (Cloudflare)    │
│  ├─ bash checks  │                                 │  ├─ R2 storage   │
│  └─ python checks│                                 │  ├─ agents index │
│                  │                                 │  └─ trend history│
│  (no local state)│                                 │                  │
└─────────────────┘                                  └──────────────────┘
                                                            │
                                                     trust-center.html
                                                     (public dashboard)

Privacy & Trust

  • Open source: All code is MIT-licensed and publicly auditable at github.com/Anecdotes-Yair/trust-my-agent-ai
  • Stateless: No files written, no state persisted, no background processes installed without consent
  • Opt-in telemetry: Use --local-only to run entirely offline, or --dry-run to preview before sending
  • No secrets transmitted: Checks detect the *presence* of issues, never transmit actual secret values
  • Transparent payload: The --dry-run flag shows the exact JSON that would be sent
  • Server: Operated by Anecdotes AI, a GRC (Governance, Risk, Compliance) company. Server code is at github.com/Anecdotes-Yair/trust-my-agent-ai-website

Credits

Built by Anecdotes AI for the AI agent ecosystem.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.19%
按下载量换算3,034

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills