Install
$ agentstack add skill-joaquimscosta-arkhe-claude-plugins-sops-decrypt ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
SOPS Decrypt
Decrypt .enc.yaml files back to their plaintext .env originals.
Workflow
- Detect current state:
``bash python3 ${CLAUDE_SKILL_DIR}/../sops-setup/scripts/detect_sops.py ``
- Verify prerequisites:
tools.sops.installedmust be true — if not, tell user to install:brew install sops(macOS) or download binary (Linux)age_key.existsmust be true — if not, guide user to place their age private key at the expected path, or setSOPS_AGE_KEY_FILEenv var
- Show encrypted files from
project.encrypted_files. If empty, report "No encrypted files found" and exit.
- Use
AskUserQuestion(multiSelect: true) — which files to decrypt. For each, show the target output name (e.g.,.env.local.enc.yaml→.env.local). If the target file already exists, note it will be overwritten.
- Decrypt each selected file (decrypt YAML, then convert to dotenv):
``bash sops --decrypt .enc.yaml > .dec.yaml.tmp python3 ${CLAUDE_SKILL_DIR}/../sops-setup/scripts/dotenv_yaml.py to-dotenv .dec.yaml.tmp > rm .dec.yaml.tmp ` Where is the encrypted filename with .enc.yaml suffix removed. Example: .env.local.enc.yaml → .env.local`
- Verify each decrypted file exists and is non-empty.
- Summary:
`` | Encrypted File | Decrypted To | Status | |---------------|--------------|--------| | .env.local.enc.yaml | .env.local | done | ` Remind user: **Do NOT commit the decrypted .env files** — they should be in .gitignore`.
Key Rules
- Always check that the age private key exists before attempting decryption
- Always convert YAML→dotenv after decrypting (use the helper script)
- Warn if a decrypted file will overwrite an existing one
- Clean up
.tmpfiles even if decryption fails - After decryption, remind user that plaintext
.envfiles must stay out of git - If decryption fails with "no identity matched", the machine's key is not authorized — suggest running
/devtools:sops-add-keyon a machine that has access
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: joaquimscosta
- Source: joaquimscosta/arkhe-claude-plugins
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.