@principle2026/vault 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SKILL.md +17 -6
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vault
|
|
3
3
|
description: |
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
Secure vault for storing passwords, API keys, tokens, and other sensitive data with AES-256 encryption.
|
|
5
|
+
|
|
6
|
+
**Use Vault for:**
|
|
7
|
+
- Passwords ("保存密码", "记住密码")
|
|
8
|
+
- API keys ("保存 API key", "OpenAI 密钥是...")
|
|
9
|
+
- Tokens ("GitHub token", "认证令牌")
|
|
10
|
+
- Any sensitive credentials that need encryption
|
|
11
|
+
|
|
12
|
+
**Do NOT use Vault for:**
|
|
13
|
+
- General notes ("今天是4月1日") — use other note-taking methods
|
|
14
|
+
- Non-sensitive information
|
|
15
|
+
- Temporary data
|
|
16
|
+
|
|
17
|
+
**How it works:**
|
|
18
|
+
1. First time: Ask user for Vault passphrase
|
|
19
|
+
2. Use VAULT_PASSPHRASE env var for all commands
|
|
20
|
+
3. Data syncs via iCloud across all devices
|
|
10
21
|
---
|
|
11
22
|
|
|
12
23
|
# Vault — AI Secret Management
|