AI agent skill

Auth Failure Log Triage

Investigate reported auth, credential, permission, API proxy, 401, 403, 503, OAuth, token, or secret-resolution failures by querying VictoriaLogs first. Use when a user says an integration auth failed, a tool got unauthorized/forbidden/service unavailable, an api-proxy request failed, or asks why credentials/secrets are not working.

·

When to use this skill

Use Auth Failure Log Triage when an AI agent needs a reusable SKILL.md workflow for this job: Investigate reported auth, credential, permission, API proxy, 401, 403, 503, OAuth, token, or secret-resolution failures by querying VictoriaLogs first. Use when a user says an integration auth failed, a tool got unauthorized/forbidden/service unavailable, an api-proxy request failed, or asks why credentials/secrets are not working.

When not to use it

Skip Auth Failure Log Triage when the task is outside the coding category, or when a more specific skill in this directory already covers the same workflow with clearer triggers.

How to install

  1. Personal install: create ~/.claude/skills/auth-failure-log-triage/SKILL.md (and any bundled scripts) so Claude Code, Claude Desktop, and compatible agents can load it in every project.
  2. Project install: commit the same folder at .claude/skills/auth-failure-log-triage/ so teammates get the skill with the repo.
  3. Restart the agent session after copying files so it re-scans the skills directory, then ask for the task in words that match the skill description.

Full install guide for Claude, Cursor, and Codex

What this skill does

# Auth Failure Log Triage

When a user reports an auth, permission, credential, API proxy, OAuth, token, secret, `401`, `403`, or `503` failure, inspect live runtime evidence before proposing secret or permission changes.

## Workflow

1. Confirm the affected surface from the user message: tool/integration name, URL host, thread key, execution id, pod/service, and rough time window. 2. Discover `vlogs` if needed:

```bash call discover vlogs ```

3. Query likely auth failures in the last 24h, narrowing when the user gave a host, pod, thread, or execution id.

For Centaur API proxy / Iron Proxy issues:

```bash call vlogs query '{"query":"kubernetes.pod_name:centaur-api-proxy-* AND (audit.status_code:401 OR audit.status_code:403 OR audit.status_code:503 OR \"failed to fetch secret\" OR unauthorized OR forbidden OR auth OR oauth OR token OR secret)","start":"24h","limit":100}' ```

For a specific thread:

```bash call vlogs thread_trace '{"thread_key":"THREAD_KEY","start":"24h","limit":500}' call vlogs tool_usage_by_thread '{"thread_key":"THREAD_KEY","start":"24h","limit":200}' ```

For a specific execution:

```bash call vlogs execution_timeline '{"execution_id":"EXECUTION_ID"}' ```

4. If the direct query is empty, find labels first:

```bash call vlogs field_values '{"field":"service","query":"*proxy*","start":"24h","limit":200}' call vlogs field_names '{"query":"service:iron-proxy","start":"24h"}' call vlogs streams '{"query":"proxy","start":"24h"}' ```

5. Summarize only what the logs support:

- Counts by status code: `401`, `403`, `503`. - Secret-resolution errors and the secret reference name, without exposing secret values. - Timestamp, pod, service, host, method, path, and status for concrete failures. - Whether auth transforms injected credentials, if shown by proxy fields such as `request_transforms`. - Distinguish upstream denial (`audit.status_code=403`) from local proxy/secret resolution failure (`failed to fetch secret`).

## Output Rules

- Lead with whether log evidence was found. - Do not claim a secret or permission is wrong unless logs show that. - Do not recommend secret rewiring until you have checked live `vlogs` evidence and compared the relevant error shape. - If no logs are found, say which query/window was checked and ask for the missing discriminator: time, thread key, execution id, host, or integration name.

Intended uses

  • Confirm the affected surface from the user message: tool/integration name, URL host, thread key, execution id, pod/service, and rough time window.
  • Discover vlogs if needed:
  • Query likely auth failures in the last 24h, narrowing when the user gave a host, pod, thread, or execution id.
  • If the direct query is empty, find labels first:
  • Summarize only what the logs support:
  • Counts by status code: 401, 403, 503.
  • Secret-resolution errors and the secret reference name, without exposing secret values.
  • Timestamp, pod, service, host, method, path, and status for concrete failures.
  • Whether auth transforms injected credentials, if shown by proxy fields such as requesttransforms.
  • Distinguish upstream denial (audit.statuscode=403) from local proxy/secret resolution failure (failed to fetch secret).

Related skills

Related skills in this directory, for comparison before you install another skill.

coding

Add Backend

Guide for adding a backend (Rust or Python) to the agent-sec-core security middleware. Use when creating new backends, integrating Rust or Python code into the security middleware, or extending with new backend actions.

View skill

coding

Agent Device

Drive iOS and Android devices for the Expensify App - testing, debugging, performance profiling, bug reproduction, and feature verification. Use when the developer needs to interact with the mobile app on a device.

View skill

Ranked Claude skills