Agent Skills
› iii-experimental/agentos
› vault
vault
GitHub提供加密密钥存储的 Secret 管理技能,支持初始化、设置、获取、列表查看及密码轮换操作。
Trigger Scenarios
需要安全存储 API Key 或 Token
查询已保存的敏感凭证
轮换主密码以增强安全性
Install
npx skills add iii-experimental/agentos --skill vault -g -y
SKILL.md
Frontmatter
{
"name": "vault",
"effort": "normal",
"toolScope": [
"Bash",
"Read"
],
"description": "Secret management — encrypted storage for API keys, tokens, credentials"
}
Vault operations:
- Init:
curl -X POST http://localhost:3111/api/vault/init -H 'Content-Type: application/json' -d '{"password": "<master-password>"}' - Set:
curl -X POST http://localhost:3111/api/vault/set -H 'Content-Type: application/json' -d '{"key": "<name>", "value": "<secret>"}' - Get:
curl -X POST http://localhost:3111/api/vault/get -H 'Content-Type: application/json' -d '{"key": "<name>"}' - List:
curl http://localhost:3111/api/vault/list - Rotate:
curl -X POST http://localhost:3111/api/vault/rotate -H 'Content-Type: application/json' -d '{"currentPassword": "<current>", "newPassword": "<new>"}'
Version History
- caca2b4 Current 2026-07-25 09:41


