ワンクリックで
cred-proxy
Transparent authentication proxy — injects credentials into HTTP traffic automatically
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Transparent authentication proxy — injects credentials into HTTP traffic automatically
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | cred-proxy |
| description | Transparent authentication proxy — injects credentials into HTTP traffic automatically |
| user-invocable | false |
All outbound HTTP traffic from this environment flows through cred-proxy, a transparent authentication injection proxy. When a request matches a configured domain, the proxy automatically adds the correct credentials on the wire. You do not need to manage secrets yourself.
gh auth login, ~/.npmrc, curl Authorization header), use placeholder or PLACEHOLDER_TOKEN. The proxy overwrites them before the request reaches the upstream server.Authorization and other auth mechanisms. Manual headers may conflict.To check which domains have credentials configured:
GET http://any-host/__auth/credentials
Returns a JSON array of {"id", "domain", "enabled"} objects. You can filter by domain with ?domain=example.com.
If you need credentials for a domain that isn't configured yet:
POST http://any-host/__auth/request
Content-Type: application/json
{"domain": "api.example.com", "reason": "Need to fetch user data"}
The response includes a setup_url for the human operator and a token to poll for status:
GET http://any-host/__auth/request/{token}/status
Poll until status is "fulfilled" or "expired".
The proxy may enforce access rules that restrict which URL paths you can access on certain domains. If a request is blocked by an access rule, you'll receive a 403 response with "error": "access_denied". This means the domain is configured but your requested path is not permitted. You cannot override access rules — they are set by the operator.
See API-REFERENCE.md for full /__auth/* endpoint details including request/response schemas and error codes.