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/yogasw/wick/encrypted-fieldsnpx skills add yogasw/wick --skill encrypted-fieldsgit clone --depth 1 https://github.com/yogasw/wickWhat 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.00085 | $0.02072 |
| Opus 5 | $0.00043 | $0.01036 |
| Sonnet 5 | $0.00017 | $0.00414 |
| Haiku 4.5 | $0.00009 | $0.00207 |
Grade A, and why
encrypted-fields 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.
Encrypted Fields
Wick has a built-in encrypted-fields layer that lets credentials flow between an LLM and a connector without ever appearing as plaintext in the LLM's context window or in the audit log. Treat this as the default for any sensitive value.
When this skill activates
- Adding a new connector that takes a credential, API key, or token (Configs field).
- Adding an operation whose response includes a credential, OTP, session token, JWT, refresh token, or any value the LLM should pass forward but not learn.
- Reviewing an existing connector for plaintext-leak risk.
- The user mentions
wick_enc_, "encrypt this value", "hide this from the LLM", or asks why a credential is showing up unmasked. - Adding a sensitive
Inputfield that the LLM may receive in a previous response and replay in a later call.
If the work has nothing to do with credentials or sensitive output, skip this skill.
How the layer works (in 30 seconds)
- Tag the field
secretin the Configs / Input struct. connectors.Service.Executeautomatically:- decrypts any
wick_enc_<...>token in the input map (and the stored configs map) before callingExecuteFunc, so your code only ever sees plaintext. - masks every occurrence of those plaintext values in the marshaled response with
wick_enc_<token>, so the LLM never sees plaintext.
- decrypts any
- The audit log stores
wick_enc_(pre-decrypt) inrequest_jsonandwick_enc_(post-encrypt) inresponse_json. Retry from history works because Execute re-decrypts under the retrier's key. - Keys are per-user —
HKDF(master_key, salt=user_uuid, info="wick-enc"). A token issued for user A cannot be decrypted under user B's session.
The token format is wick_enc_<base64url(nonce ‖ AES-256-GCM(plaintext, nonce, derived_key))>. AES-256-GCM, 12-byte random nonce per encrypt, 32-byte derived key.
Recipes
Recipe 1: a Configs credential (most common)
type Creds struct {
Endpoint string `wick:"required"`
APIKey string `wick:"required;secret"` // ← auto-masked in every response
}
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 · 85 tokens per session scan A 01ae2c0f19ac
encrypted-fields is a skill published in the GitHub repository yogasw/wick (5 stars, last pushed 4d ago), licensed MIT. It adds 85 tokens to every session and 2,072 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-31.
Other skills, from other repositories
golden-rss
Use when testing the rss golden build.
omh-code-review
This is a Hermes-native code-review workflow skill.
redteam-web-detail-pack
Routing and boundary guidance for authorized general web application security testing. Use as a web testing router when the attack surface should be dispatched to more specific web vulnerability skills.
android-pentest
安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.
studio
Architecture Studio control plane — initialize or inspect a studio workspace, create and register projects, or route an architecture/AEC task to the right agent or skill. Use when the user runs /as:studio, asks to set up or open their studio, manage its projects, or describes a task without naming a skill.
mnemon
Persistent memory for MiniMax Code. Recall durable context, store important facts and decisions, and link related memories with the mnemon CLI.