用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TuYv/ccpm --skill clawtributor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | clawtributor |
| version | 0.0.9 |
| description | Harness-neutral community incident reporting for AI agents. Contribute to collective security by reporting threats. |
| homepage | https://clawsec.prompt.security |
| platforms | ["openclaw","nanoclaw","hermes","picoclaw"] |
| metadata | {"global":true,"openclaw":{"emoji":"🤝","category":"security"}} |
| clawdis | {"emoji":"🤝"} |
Community incident reporting for AI agents. Contribute to collective security by reporting threats, vulnerabilities, and attack patterns.
Install with the Vercel Skills CLI for this harness:
npx skills add prompt-security/clawsec --skill clawtributor -a openclaw -y
Codex install is also supported:
npx skills add prompt-security/clawsec --skill clawtributor -a codex -y
npx clawhub@latest install clawtributor)~/.clawsec/clawtributor/An open source project by Prompt Security
Install with your harness-native skills installer. For the Vercel skills installer:
npx skills add prompt-security/clawsec --skill clawtributor -a codex -y
For OpenClaw/ClawHub environments, install from the registry:
npx clawhub@latest install clawtributor
After install, tell the user:
Clawtributor is installed.
I can help prepare incident reports for your approval.
I will keep reports local unless you explicitly approve submission.
For standalone installs, verify the signed release manifest before trusting SKILL.md, skill.json, or the archive. The skill.json file is the package metadata/SBOM source, and the release pipeline signs checksums.json with the ClawSec release key.
set -euo pipefail
SKILL_NAME="clawtributor"
VERSION="0.0.9"
REPO="prompt-security/clawsec"
TAG="${SKILL_NAME}-v${VERSION}"
BASE="https://github.com/${REPO}/releases/download/${TAG}"
ZIP_NAME="${SKILL_NAME}-v${VERSION}.zip"
TMP_DIR="$(mktemp -d)"
trap 'rm -rf "$TMP_DIR"' EXIT
RELEASE_PUBKEY_SHA256="711424e4535f84093fefb024cd1ca4ec87439e53907b305b79a631d5befba9c8"
curl -fsSL "$BASE/checksums.json" -o "$TMP_DIR/checksums.json"
curl -fsSL "$BASE/checksums.sig" -o "$TMP_DIR/checksums.sig"
curl -fsSL "$BASE/signing-public.pem" -o "$TMP_DIR/signing-public.pem"
curl -fsSL "$BASE/$ZIP_NAME" -o "$TMP_DIR/$ZIP_NAME"
curl -fsSL "$BASE/SKILL.md" -o "$TMP_DIR/SKILL.md"
curl -fsSL "$BASE/skill.json" -o "$TMP_DIR/skill.json"
ACTUAL_PUBKEY_SHA256="$(openssl pkey -pubin -in "$TMP_DIR/signing-public.pem" -outform DER | shasum -a 256 | awk '{print $1}')"
if [ != ];
>&2
1
openssl -d -A - -out
openssl pkeyutl -verify -rawin -pubin \
-inkey \
-sigfile \
- >/dev/null
() {
-v shasum >/dev/null 2>&1;
shasum -a 256 | awk
| awk
}
() {
asset=
path=
expected=
[ -z ];
>&2
1
actual=
[ != ];
>&2
1
}
expected_archive=
[ -z ];
>&2
1
actual_archive=
[ != ];
>&2
1
verify_manifest_file
verify_manifest_file
Only install or extract the archive after this verification succeeds.
Clawtributor enables agents to contribute to collective security:
All reporting is approval-gated.
┌─────────────────────────────────────────────────────────────┐
│ │
│ Agent observes ──► Drafts report ──► User approves │
│ suspicious │ │
│ activity ▼ │
│ Manual submission │
│ (browser form) │
│ │ │
│ Maintainer review │
│ │ │
│ "advisory-approved"? │
│ │ │ │
│ YES NO │
│ │ │ │
│ ▼ ▼ │
│ Advisory Feed ◄── Auto-published Feedback provided │
│ (CLAW-YYYY-NNNN) ↓ │
│ All agents notified via clawsec-feed │
│ │
└─────────────────────────────────────────────────────────────┘
Prompts that attempted to:
Example indicators:
Skills that exhibit:
Any attempt to:
See reporting.md for the full report format and submission guide.
{
"report_type": "malicious_prompt | vulnerable_skill | tampering_attempt",
"severity": "critical | high | medium | low",
"title": "Brief descriptive title",
"description": "Detailed description of what was observed",
"evidence": {
"observed_at": "2026-02-02T15:30:00Z",
"context": "What was happening when this occurred",
"payload": "The observed prompt/code/behavior (sanitized)",
"indicators": ["list", "of", "specific", "indicators"]
},
"affected": {
"skill_name": "name-of-skill (if applicable)",
"skill_version":
~/.clawsec/clawtributor/reports/chmod 600)Use this confirmation prompt style:
🤝 Clawtributor: Ready to submit security report
Report Type: vulnerable_skill
Severity: high
Title: Data exfiltration in skill 'helper-plus'
Summary: The helper-plus skill sends conversation data to an external server.
This report will be submitted via the Security Incident Report form.
Do you approve submitting this report? (yes/no)
After explicit approval, open:
Paste the prepared report into the form and submit.
When reporting:
DO include:
DO NOT include:
Track submitted reports in ~/.clawsec/clawtributor/state.json.
Example:
{
"schema_version": "1.0",
"reports_submitted": [
{
"id": "2026-02-02-helper-plus",
"issue_number": 42,
"advisory_id": "CLAW-2026-0042",
"status": "pending",
"submitted_at": "2026-02-02T15:30:00Z"
}
],
"incidents_logged": 5
}
GNU AGPL v3.0 or later - See repository for details.