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 agentmods add skills/shieldnet-360/secure-vibe/protocol-securitynpx skills add ShieldNet-360/secure-vibe --skill protocol-securitygit clone --depth 1 https://github.com/ShieldNet-360/secure-vibeWhat 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 | $0.00080 | $0.01905 |
| Opus 5 | $0.00040 | $0.00953 |
| Sonnet 5 | $0.00016 | $0.00381 |
| Haiku 4.5 | $0.00008 | $0.00191 |
Grade A, and why
protocol-security scanned grade A with 0 findings 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Protocol Security
Rules (for AI agents)
ALWAYS
- Default to TLS 1.3, and permit TLS 1.2 only where a peer genuinely requires it.
Disable TLS 1.0, 1.1, and every SSL version. Cipher-suite selection is a
consequence of the version floor rather than a separate decision —
references/tls-configuration.mdcarries the suite lists and the per-platform config keys. - Verify the full certificate chain on every connection: a trusted issuer, an
unexpired validity window, and a hostname that matches a
subjectAltNamedNSName entry. The hostname is checked against the SAN — SAN is not an alternative place to look, and aCNmatch is not a fallback, because current browsers and TLS libraries removed CN as a hostname source. - When connecting to an IP address rather than a name, set the expected name
explicitly (
ServerNamein Go'stls.Config, the equivalent SNI/verification hostname elsewhere) so verification has something to check, or require a certificate carrying aniPAddressSAN. Reaching an endpoint by IP is the single most common reason a developer disables verification — this is the fix that keeps it on. - Resolve a self-signed or internal-CA endpoint by adding that CA to the client's trust configuration, not by turning verification off. Every language has a way to supply a custom root pool; using it keeps hostname and expiry checks intact, which is exactly what the shortcut discards.
- Use mutual TLS for service-to-service traffic inside a trust domain, and treat
it as what it is: a cryptographic caller identity, which is authentication —
unlike network position, which is not. A SPIFFE workload identity
(
spiffe://trust-domain/...) with short-lived certificates is the form of this worth reaching for over a long-lived shared API key. - For gRPC, build the channel with credentials: Python
grpc.secure_channel(target, grpc.ssl_channel_credentials()), Gogrpc.WithTransportCredentials( credentials.NewTLS(cfg)). The insecure variants exist for local development and say so in their names. - For SMTP, either connect with implicit TLS (submissions, port 465) or issue
STARTTLSon submission (port 587) and fail if the upgrade does not happen. An on-path attacker strips the server's STARTTLS advertisement and a client that treats TLS as opportunistic then sends credentials in plaintext without error. Verify the certificate after the upgrade, exactly as for any other connection. - Track certificate expiry and automate renewal. An expired certificate is among the
most common real transport incidents, and the pressure it creates is what produces
the
InsecureSkipVerifythat outlives it. - Consult
frontend-securityfor HSTS and the browser response-header set,websocket-securityforOriginvalidation and handshake authentication,database-securityfor database transport, andmobile-securitybefore adding certificate pinning — that skill owns the rotation planning that decides whether a pin is a control or a future outage.
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 2d ago First seen · 139 lines · 80 tokens per session scan A 8ba3d45977e5
protocol-security is a skill published in the GitHub repository ShieldNet-360/secure-vibe (22 stars, last pushed 19d ago), licensed MIT. It adds 80 tokens to every session and 1,905 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
007
Security audit, hardening, threat modeling (STRIDE/PASTA), Red/Blue Team, OWASP checks, code review, incident response, and infrastructure security for any project.
agent-platform-model-registry
Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.
prowler-commit
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
bigquery-ai-ml
Leverages BigQuery's built-in machine learning and GenAI capabilities for advanced data analytics. Use when you need to write SQL queries that perform time-series forecasting, predict values, detect outliers or anomalies, find key drivers, perform semantic search or vector search, classify text, calculate similarity…
edge-to-edge
Use this skill to migrate your Jetpack Compose app to add adaptive edge-to-edge support and troubleshoot common issues. Use this skill to fix UI components (like buttons or lists) that are obscured by or overlapping with the navigation bar or status bar, fix IME insets, and fix system bar legibility.
twitter-reader
Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…