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 Agnuxo1/EnigmAgent --skill enigmagent-vaultgit clone --depth 1 https://github.com/Agnuxo1/EnigmAgentWrote 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/agnuxo1/enigmagent/enigmagent-vault)<a href="https://agentmods.dev/skills/agnuxo1/enigmagent/enigmagent-vault"><img src="https://agentmods.dev/badge/skills/agnuxo1/enigmagent/enigmagent-vault/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/agnuxo1/enigmagent/enigmagent-vault"><img src="https://agentmods.dev/badge/skills/agnuxo1/enigmagent/enigmagent-vault.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.00042 | $0.01905 |
| Opus 5 | $0.00021 | $0.00953 |
| Sonnet 5 | $0.00008 | $0.00381 |
| Haiku 4.5 | $0.00004 | $0.00191 |
Grade A, and why
enigmagent-vault scanned grade A 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
You write: curl -H "Authorization: Bearer {{GITHUB_TOKEN}}" https://api.github.com How it starts
The opening of the file, as written. The whole thing — 242 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EnigmAgent Vault — Secure Credential Usage
Core principle
Never ask the user for credentials. Never write credentials in tool arguments.
Use {{PLACEHOLDER}} references instead — they are resolved to real values
after you generate the tool call, before the tool executes.
The LLM (you) writes the placeholder. The gateway injects the real value. You never see it. The user's secrets stay private.
You write: curl -H "Authorization: Bearer {{GITHUB_TOKEN}}" https://api.github.com
Gateway: resolves {{GITHUB_TOKEN}} → injects ghp_xxxxxxxxxxxx → runs curl
You receive: the HTTP response body (200 OK, user data, etc.)
Placeholder syntax
| Pattern | Example | Use case |
|---|---|---|
{{NAME}} |
{{GITHUB_TOKEN}} |
Any named secret |
{{LOGIN:domain}} |
{{LOGIN:gmail.com}} |
Login password for a domain |
{{DOC:filename}} |
{{DOC:report.md}} |
Full text of a stored document |
Names are case-insensitive. Use the exact name shown by enigmagent_vault_list.
Step 1 — Check vault is ready
Before any task involving credentials, call:
Tool: enigmagent_vault_status
If running: false:
Tell the user:
"The EnigmAgent vault server is not running. Please open a new terminal and run:
enigmagent-mcp --mode rest --port 3737 --vault ~/.enigmagent/vault.jsonThen try again."
Do NOT proceed until the vault is running.
If running: true, unlocked: false:
Tell the user:
"The vault server is running but locked. Please restart it:
enigmagent-mcp --mode rest --port 3737 --vault ~/.enigmagent/vault.json"
If running: true, unlocked: true:
Proceed. All {{PLACEHOLDER}} references will work.
Step 2 — Discover available secrets
When you need a credential and are unsure of the exact name, call:
Tool: enigmagent_vault_list
This lists all secrets by name and domain. Use the exact name field as your placeholder.
Never guess names — always check the list first.
Example output:
{
"count": 4,
"entries": [
{"name": "GITHUB_TOKEN", "domain": "localhost"},
{"name": "OPENAI_API_KEY", "domain": "localhost"},
{"name": "LOGIN:gmail.com", "domain": "localhost"},
{"name": "DOC_contract.md", "domain": "localhost"}
]
}
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 · 242 lines · 42 tokens per session scan A 956cf982a633
enigmagent-vault is a skill published in the GitHub repository Agnuxo1/EnigmAgent (4 stars, last pushed 3mo ago), licensed MIT. It adds 42 tokens to every session and 1,905 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
legacy-shield
Secure zero-knowledge document vault for AI agents. Persistence for your secrets.
secret-vault
Encrypted credential store — AES-256-GCM secured tokens and secrets in one place.
opik-diagnose
Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, then fills the gaps with list (filters, sort, a time…
cis-aws-foundations-3.3.1
Ensure that encryption is enabled for EFS file systems.
client-scripts
Write ServiceNow client scripts (onLoad/onChange/onSubmit/onCellEdit) using gform, guser, GlideAjax, field visibility/mandatory toggles, and validation with debounced server calls.
split-to-prs
Split current work into small reviewable PRs. Use when the user asks to split a chat, set of changes, branch, or PR.