Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Vimalk0703/shipworthy --skill guardrail-audit-loggit clone --depth 1 https://github.com/Vimalk0703/shipworthyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vimalk0703/shipworthy/guardrail-audit-log)<a href="https://agentmods.dev/skills/vimalk0703/shipworthy/guardrail-audit-log"><img src="https://agentmods.dev/badge/skills/vimalk0703/shipworthy/guardrail-audit-log/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vimalk0703/shipworthy/guardrail-audit-log"><img src="https://agentmods.dev/badge/skills/vimalk0703/shipworthy/guardrail-audit-log.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.01730 |
| Opus 5 | $0.00023 | $0.00865 |
| Sonnet 5 | $0.00009 | $0.00346 |
| Haiku 4.5 | $0.00005 | $0.00173 |
Grade B, and why
guardrail-audit-log scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletemediumDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- Destructive command interception (rm -rf, DROP TABLE) Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Guardrail Audit Log
Core Rule
Every guardrail violation, warning, block, and override must be logged to a centralized, immutable audit trail. If you cannot prove a guardrail fired, you cannot prove the system is protected.
Why Centralized Audit Logging
| Without Audit Logging | With Audit Logging |
|---|---|
| "We think the secret scanner ran" | Timestamped record of every scan, every finding, every resolution |
| Compliance auditor asks for evidence — you scramble | Export the log, filter by date range, done |
| A guardrail was silently bypassed — nobody noticed | Override logged with who, why, and approval chain |
| Incident response: "When did this start?" — unknown | Query the log: first violation timestamp, escalation history |
Guardrail Event Schema
Every guardrail event — whether from a hook, skill, or runtime check — must conform to this schema:
interface GuardrailEvent {
// Identity
eventId: string; // UUID — unique per event
timestamp: string; // ISO 8601 — when the guardrail fired
// Classification
guardrailLayer: 'input_output' | 'contextual' | 'security' | 'adaptive' | 'ethical_compliance';
guardrailName: string; // e.g., 'secrets-detection', 'bias-check', 'scope-creep'
severity: 'info' | 'warning' | 'block' | 'override';
// Context
source: string; // which hook, skill, or check generated this event
trigger: string; // what triggered the guardrail (file path, command, code pattern)
description: string; // human-readable explanation
// Resolution
action: 'allowed' | 'warned' | 'blocked' | 'overridden';
resolution?: string; // how it was resolved (if overridden, why)
resolvedBy?: string; // who resolved it (user, system, auto)
// Metadata
sessionId?: string; // session that generated this event
projectId?: string; // project identifier
tier?: string; // user tier at time of event
tags?: string[]; // additional classification tags
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 195 lines · 46 tokens per session scan B ad1953125ee9
guardrail-audit-log is a skill published in the GitHub repository Vimalk0703/shipworthy (7 stars, last pushed 5mo ago), licensed MIT. It adds 46 tokens to every session and 1,730 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
memstack-business-gdpr
Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…
memstack-business-licensing
Use this skill when the user says 'licensing', 'license audit', 'can I use this commercially', 'OSS license check', 'license compatibility', 'GPL', 'MIT', 'AGPL', 'copyleft'. Scans the repository for every dependency and asset license, then produces a per-package verdict table: ready for commercial use…
memstack-business-contract-template
Use this skill when the user says 'contract', 'agreement', 'service agreement', 'NDA', 'freelance contract', 'consulting agreement', or needs service agreements with IP ownership, payment terms, and termination clauses. Do NOT use for invoicing or client onboarding.
contract-redliner
Contract review, redlining, and negotiation support with clause analysis, risk identification, and markup templates. Use when reviewing contracts, identifying unfavorable terms, suggesting amendments, or preparing negotiation positions.
ai-policy-generator
AI governance policy creation for nonprofits and enterprises with frameworks, risk assessment, ethical guidelines, and compliance templates. Use when drafting AI usage policies, responsible AI frameworks, or organizational AI governance documents.
compliance-engineering
SOC2, HIPAA, GDPR, PCI-DSS, FedRAMP compliance implementation in code. Audit logging, data encryption, access controls, privacy by design, and regulatory requirement mapping. Use when implementing compliance controls, preparing for audits, or building privacy-compliant systems.