# Gwvault

> Use this skill when the user wants to encrypt or decrypt files using Ansible vault format without Ansible installed.

- Skill: `javimosch/gwvault` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/gwvault`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/gwvault/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector CAUTION)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/gwvault

---


# gwvault Plugin

Ansible vault compatible encrypt/decrypt tool written in Go. Manage encrypted secrets without requiring Python or Ansible.

## Commands

### Vault Operations
- `gwvault vault encrypt` — Encrypt files using Ansible vault format

## Usage Examples
- "Encrypt this secrets file with Ansible vault"
- "Decrypt this vault-encrypted file"
- "View the contents of an Ansible vault"

## Installation

```bash
go install github.com/nicm/gwvault@latest
```

## Examples

```bash
gwvault encrypt secrets.yml
gwvault decrypt secrets.yml -o decrypted.yml
gwvault view secrets.yml
gwvault encrypt --vault-password-file .pass secrets.yml
```

## Key Features
- Ansible vault format compatibility
- Go binary (no Python dependency)
- Encrypt, decrypt, and view operations
- Vault password file support
- Cross-platform support

