mirror of
https://github.com/prompt-security/clawsec.git
synced 2026-06-13 05:28:02 +03:00
26af277afd
* feat(hermes-attestation-guardian): release v0.0.2 hardening * docs(wiki): add v0.0.2 hardening update note * docs: add Hermes support coverage to README and compatibility report * fix(hermes-attestation-guardian): address baz review on crontab detection and doc dedup * feat(wiki): add PR-200 skill feature/platform matrix * docs(wiki): rewrite PR-200 matrix as narrative capability mapping * docs(readme): add skill feature matrix with requested headers * docs(readme): replace unknowns with mapped yes/no feature matrix * docs: move NanoClaw and CI/CD details from README to wiki modules * docs(readme): remove platform/suite sections and keep wiki module pointers * docs(readme): refresh project structure to match current repo * feat(hermes-attestation-guardian): add signed advisory feed verification pipeline * feat(hermes-attestation-guardian): add advisory-gated guarded skill verification * feat(hermes-attestation-guardian): add advisory scheduler helper and phase-3 parity docs * docs(wiki): expand hermes attestation guardian capability coverage * fix(pr-200): address Baz review findings across Hermes parity rollout * test(sandbox): extend Hermes regression to cover feed, guarded verify, and advisory scheduler * fix(pr-200): address Baz semver parsing and feed-state fallback visibility * fix(ci): suppress shellcheck false positives in sandbox inline docker script * fix(hermes-attestation-guardian): fail closed on unsupported advisory ranges * fix(hermes-attestation-guardian): restore safe install verdict in sandbox * fix(sandbox): capture guarded verify exit under set -e * fix(semver): fail closed on malformed affected specifiers * docs(readme): clarify hermes capability matrix wording * refactor(feed): share signed artifact verification flow * refactor(cron): share managed block helpers across setup scripts * fix(feed): require checksum manifest artifacts when enabled * chore(hermes-skill): relocate sandbox test, refresh docs, and add v0.1.0 release notes * chore(docs): remove remaining hermes parity plan file * chore(release): roll hermes-attestation-guardian to v0.1.0 * chore(release): remove standalone v0.1.0 release notes file * docs(hermes): update README status to v0.1.0 --------- Co-authored-by: David Abutbul <David.a@prompt.security>
183 lines
6.2 KiB
JSON
183 lines
6.2 KiB
JSON
{
|
|
"name": "hermes-attestation-guardian",
|
|
"version": "0.1.0",
|
|
"description": "Hermes-only runtime security attestation and drift detection skill. Generates deterministic posture artifacts, verifies integrity fail-closed, and classifies baseline drift severity.",
|
|
"author": "prompt-security",
|
|
"license": "AGPL-3.0-or-later",
|
|
"homepage": "https://clawsec.prompt.security/",
|
|
"platform": "hermes",
|
|
"keywords": [
|
|
"security",
|
|
"hermes",
|
|
"attestation",
|
|
"integrity",
|
|
"drift-detection",
|
|
"posture"
|
|
],
|
|
"sbom": {
|
|
"files": [
|
|
{
|
|
"path": "SKILL.md",
|
|
"required": true,
|
|
"description": "Skill documentation and operator playbook"
|
|
},
|
|
{
|
|
"path": "CHANGELOG.md",
|
|
"required": true,
|
|
"description": "Version history and release notes"
|
|
},
|
|
{
|
|
"path": "README.md",
|
|
"required": true,
|
|
"description": "Human-oriented overview and quickstart"
|
|
},
|
|
{
|
|
"path": "lib/attestation.mjs",
|
|
"required": true,
|
|
"description": "Attestation schema, canonicalization, digest and validation helpers"
|
|
},
|
|
{
|
|
"path": "lib/diff.mjs",
|
|
"required": true,
|
|
"description": "Baseline comparison and severity classification"
|
|
},
|
|
{
|
|
"path": "lib/feed.mjs",
|
|
"required": true,
|
|
"description": "Hermes-native advisory feed verification and state helpers"
|
|
},
|
|
{
|
|
"path": "scripts/generate_attestation.mjs",
|
|
"required": true,
|
|
"description": "Generate deterministic Hermes posture attestation artifact"
|
|
},
|
|
{
|
|
"path": "scripts/verify_attestation.mjs",
|
|
"required": true,
|
|
"description": "Verify attestation schema, digest and optional detached signature"
|
|
},
|
|
{
|
|
"path": "scripts/refresh_advisory_feed.mjs",
|
|
"required": true,
|
|
"description": "Fetch, verify, and persist Hermes advisory feed verification state"
|
|
},
|
|
{
|
|
"path": "scripts/check_advisories.mjs",
|
|
"required": true,
|
|
"description": "Display human-readable advisory verification/feed summary"
|
|
},
|
|
{
|
|
"path": "scripts/guarded_skill_verify.mjs",
|
|
"required": true,
|
|
"description": "Advisory-aware guarded skill verification gate with explicit confirmation override"
|
|
},
|
|
{
|
|
"path": "scripts/setup_attestation_cron.mjs",
|
|
"required": true,
|
|
"description": "Optional recurring schedule setup for Hermes attestation runs"
|
|
},
|
|
{
|
|
"path": "scripts/setup_advisory_check_cron.mjs",
|
|
"required": true,
|
|
"description": "Optional recurring schedule setup for Hermes guarded advisory checks"
|
|
},
|
|
{
|
|
"path": "test/attestation_schema.test.mjs",
|
|
"required": false,
|
|
"description": "Schema and determinism tests"
|
|
},
|
|
{
|
|
"path": "test/attestation_diff.test.mjs",
|
|
"required": false,
|
|
"description": "Diff and severity mapping tests"
|
|
},
|
|
{
|
|
"path": "test/attestation_cli.test.mjs",
|
|
"required": false,
|
|
"description": "Generator/verifier CLI behavior tests"
|
|
},
|
|
{
|
|
"path": "test/setup_attestation_cron.test.mjs",
|
|
"required": false,
|
|
"description": "Hermes-only cron setup tests"
|
|
},
|
|
{
|
|
"path": "test/setup_advisory_check_cron.test.mjs",
|
|
"required": false,
|
|
"description": "Hermes-only guarded advisory cron setup tests"
|
|
},
|
|
{
|
|
"path": "test/feed_verification.test.mjs",
|
|
"required": false,
|
|
"description": "Advisory feed signature/checksum verification behavior tests"
|
|
},
|
|
{
|
|
"path": "test/guarded_skill_verify.test.mjs",
|
|
"required": false,
|
|
"description": "Advisory-aware guarded verification gate behavior tests"
|
|
},
|
|
{
|
|
"path": "test/hermes_attestation_sandbox_regression.sh",
|
|
"required": false,
|
|
"description": "Sandboxed end-to-end regression harness for install and verification paths"
|
|
}
|
|
]
|
|
},
|
|
"hermes": {
|
|
"emoji": "🛡️",
|
|
"category": "security",
|
|
"requires": {
|
|
"bins": [
|
|
"node"
|
|
]
|
|
},
|
|
"runtime": {
|
|
"required_env": [],
|
|
"optional_env": [
|
|
"HERMES_HOME",
|
|
"HERMES_ATTESTATION_OUTPUT_DIR",
|
|
"HERMES_ATTESTATION_BASELINE",
|
|
"HERMES_ATTESTATION_INTERVAL",
|
|
"HERMES_ATTESTATION_FAIL_ON_SEVERITY",
|
|
"HERMES_ATTESTATION_POLICY",
|
|
"HERMES_ADVISORY_FEED_SOURCE",
|
|
"HERMES_ADVISORY_FEED_URL",
|
|
"HERMES_ADVISORY_FEED_SIG_URL",
|
|
"HERMES_ADVISORY_FEED_CHECKSUMS_URL",
|
|
"HERMES_ADVISORY_FEED_CHECKSUMS_SIG_URL",
|
|
"HERMES_LOCAL_ADVISORY_FEED",
|
|
"HERMES_LOCAL_ADVISORY_FEED_SIG",
|
|
"HERMES_LOCAL_ADVISORY_FEED_CHECKSUMS",
|
|
"HERMES_LOCAL_ADVISORY_FEED_CHECKSUMS_SIG",
|
|
"HERMES_ADVISORY_FEED_PUBLIC_KEY",
|
|
"HERMES_ADVISORY_ALLOW_UNSIGNED_FEED",
|
|
"HERMES_ADVISORY_VERIFY_CHECKSUM_MANIFEST",
|
|
"HERMES_ADVISORY_FEED_STATE_PATH",
|
|
"HERMES_ADVISORY_CACHED_FEED"
|
|
]
|
|
},
|
|
"execution": {
|
|
"always": false,
|
|
"persistence": "Runs on demand by default. Optional scheduler helper can install a managed schedule block when run with --apply.",
|
|
"network_egress": "Optional HTTPS advisory feed fetch via refresh_advisory_feed.mjs; no network required for local-mode verification"
|
|
},
|
|
"operator_review": [
|
|
"Hermes-only skill: unsupported for OpenClaw runtime hooks.",
|
|
"Verify watch/trust-anchor policy paths before scheduling recurring runs.",
|
|
"Verification fails closed for schema/digest/signature errors and unauthenticated baseline inputs; diff threshold defaults to critical.",
|
|
"Advisory feed verification is fail-closed by default; unsigned bypass must remain temporary and operator-audited."
|
|
],
|
|
"triggers": [
|
|
"generate hermes attestation",
|
|
"verify hermes attestation",
|
|
"hermes runtime drift detection",
|
|
"hermes trust anchor drift",
|
|
"refresh hermes advisory feed",
|
|
"check hermes advisories",
|
|
"guarded hermes skill verification",
|
|
"setup hermes attestation cron",
|
|
"setup hermes advisory check cron"
|
|
]
|
|
}
|
|
}
|