一键导入
agentsecrets
Zero-knowledge secrets infrastructure — AI agents manage the complete credential lifecycle without ever seeing values
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Zero-knowledge secrets infrastructure — AI agents manage the complete credential lifecycle without ever seeing values
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
The ultimate network troubleshooting skill — a CCIE/RHCE-level reference and decision engine for diagnosing ANY network, connectivity, bandwidth, latency, DNS, TLS, or security problem. Covers packet-level sensors (NetWatch, RustNet, tshark, ngrep, Pktmon), all capture architectures (SPAN/RSPAN/ERSPAN, transparent Linux bridge, L3 gateway, host-based, one-armed SPAN), Windows AND Linux sensor builds, and Cisco native telemetry (SNMP/NETCONF/gNMI/CLI/pyATS). Includes a decision framework that picks the best tool + architecture per symptom, multi-platform command references, and 20+ worked incident scenarios with implementation details, commands, and scripts. Use whenever something is slow, down, dropping, flapping, unreachable, mis-behaving on the wire, or you need to plan/scale a monitoring sensor fleet.
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Create AiderDesk agent profiles via interactive Q&A.
Comprehensive Agentspan durable workflow orchestration skill for creating, running, scheduling, monitoring, and debugging AI agent workflows using the Agentspan Python SDK and CLI. Covers agents, tools, multi-agent strategies, guardrails, memory, streaming, human-in-the-loop, testing, and production deployment.
Submit software to antivirus vendors to prevent false positive detections. Use when releasing new software that triggers AV warnings, submitting binaries for whitelisting, or checking VirusTotal detection status.
AI browser automation agent — navigate websites, fill forms, extract data, click elements, search the web, take screenshots, download files, and automate any browser task using natural language. Uses anthropic/claude-sonnet-4.6 via OpenRouter with Playwright Chromium. Use when asked to browse websites, scrape data, fill web forms, automate repetitive browser tasks, search and extract information from web pages, or interact with any web application programmatically.
| name | agentsecrets |
| description | Zero-knowledge secrets infrastructure — AI agents manage the complete credential lifecycle without ever seeing values |
| version | 2.0.0 |
| tags | ["security","credentials","api","secrets","mcp","zero-knowledge"] |
| homepage | https://github.com/The-17/agentsecrets |
| registry | https://clawhub.ai/SteppaCodes/agentsecrets |
| metadata | {"clawdbot":{"summary":"Zero-knowledge secrets infrastructure — the agent manages credentials autonomously without ever seeing values","author":"The Seventeen","license":"MIT"}} |
| requires | {"env":[{"name":"AGENTSECRETS_INSTALLED","description":"Set to \"true\" once agentsecrets is installed (auto-detected)","required":false}],"binaries":[{"name":"agentsecrets","description":"The AgentSecrets CLI binary","install":"- npx @the-17/agentsecrets (Run without install)\n- brew install The-17/tap/agentsecrets (macOS/Linux)\n- pip install agentsecrets-cli (Python/Universal)\n- go install github.com/The-17/agentsecrets/cmd/agentsecrets@v2.0.0 (Go devs - prefer pinned version)\n"}]} |
| files | ["scripts/*"] |
You manage the full credentials lifecycle autonomously using the agentsecrets CLI.
You are the operator. You never see the actual credential values.
agentsecrets call, but you are cryptographically bound by the workspace domain allowlist.STRIPE_KEY, not STRIPE_sk_live...). Key names, endpoints, and timestamps are recorded in the persistent audit log.development, staging, or production. Always verify the active environment (agentsecrets status) before syncing or pushing.Always start by verifying context:
agentsecrets status # Shows workspace, project, environment
agentsecrets secrets list # Lists available keys
If not initialized or logged out, tell the user to run agentsecrets login. For new projects, run agentsecrets init --storage-mode 1.
# User runs this in their terminal (do not ask them to paste it in chat)
agentsecrets secrets set KEY_NAME=value
# You can run these
agentsecrets secrets get KEY_NAME # Shows value to user
agentsecrets secrets list
agentsecrets secrets diff
agentsecrets secrets push
agentsecrets secrets pull
Instead of using curl, always use the call proxy. The proxy injects the secret securely:
agentsecrets call --url https://api.stripe.com/v1/balance --bearer STRIPE_KEY
agentsecrets call --url https://api.example.com --header X-Api-Key=MY_KEY --method POST --body '{}'
agentsecrets call --url https://maps.example.com --query key=MAPS_KEY
agentsecrets call --url https://jira.example.com --basic JIRA_CREDS
To wrap standard tools so they receive secrets as environment variables:
agentsecrets env -- npm run dev
agentsecrets env -- stripe mcp
For OpenClaw SecretRef injection, run:
agentsecrets exec
agentsecrets environment switch production # (Ask for confirmation first)
agentsecrets project create OPENCLAW_MANAGER
agentsecrets project use OPENCLAW_MANAGER
Use agentsecrets proxy logs --last 10 to view the local audit trail for failed requests.
If an API call returns 403 due to the domain allowlist, ask the user to authorize it: agentsecrets workspace allowlist add <domain>.
If you need to know a command, run agentsecrets --help.
To search the official AgentSecrets documentation, use the API below to get a list of matching topics and snippets. You can then curl the specific URL from the results to read the full page:
curl -G "https://agentsecrets.theseventeen.co/api/search" --data-urlencode "q=your query here"
If you need to read the full, complete documentation in a single Markdown file, curl:
curl -s "https://agentsecrets.theseventeen.co/llms-full.txt"