一键导入
op
Access secrets from 1Password using the op CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Access secrets from 1Password using the op CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build, install, and operate the cc-disco Discord server
Periodic repo gardening — commit/push loose files, prune stale docs, surface undocumented knowledge, and sync with upstream. Run when things feel messy or when prompted to "do housekeeping".
Anything related to scheduled or recurring tasks — checking what's set up, creating new ones, or modifying existing ones. Triggers on questions like "do we have any recurring tasks?", "is X scheduled?", or "set up a daily job".
Headless browser automation via agent-browser CLI. Use for any web interaction: filling forms, clicking buttons, scraping, navigating multi-step flows.
| name | op |
| description | Access secrets from 1Password using the op CLI |
Secrets are stored in 1Password and accessed via the op CLI.
op CLI installedOP_SERVICE_ACCOUNT_TOKEN set in the environment (usually via /etc/environment or systemd EnvironmentFile)op read "op://vault-name/item-name/field-name"
op read "op://openclaw/Discord Bot Token/password" op read "op://openclaw/Brave Search API Key/password" op read "op://openclaw/Anthropic API Key/password"
op item list --vault vault-name
op item create --category=password --title="Item Name" --vault=vault-name password='secret-value'
TOKEN=$(op read "op://openclaw/Discord Bot Token/password") curl -H "Authorization: Bearer $TOKEN" ...