# Send Claude Usage Checker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claude-usage-checker",
    "name": "Claude Usage Checker",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/aligurelli/claude-usage-checker",
    "canonicalUrl": "https://clawhub.ai/aligurelli/claude-usage-checker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claude-usage-checker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-usage-checker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claude-usage-checker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:24:28.437Z",
      "expiresAt": "2026-05-06T10:24:28.437Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-usage-checker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-usage-checker",
        "contentDisposition": "attachment; filename=\"claude-usage-checker-1.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claude-usage-checker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claude-usage-checker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claude-usage-checker",
    "downloadUrl": "https://openagent3.xyz/downloads/claude-usage-checker",
    "agentUrl": "https://openagent3.xyz/skills/claude-usage-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-usage-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-usage-checker/agent.md"
  }
}
```
## Documentation

### Claude Usage Checker

Launches the Claude CLI interactively (PTY) and reads the /usage output to report your Claude Code / Claude Max quota.

### Prerequisites

Claude CLI must be installed (npm i -g @anthropic-ai/claude-code) and logged in
If running claude shows "Missing API key", the user must log in manually first: open a terminal, run claude, and complete the browser login flow
Requires an interactive PTY — the agent will launch a local process and read its output (quota info only)

### Steps

Launch claude with PTY
Wait for the welcome screen (poll until it appears)
Send /usage + Enter
Read the output (poll until usage data appears)
Close with Escape then /exit
Report the results

### Commands

# Launch claude with PTY
exec pty=true command="claude"

# Wait and check log
process action=poll sessionId=XXX timeout=5000

# Send /usage
process action=send-keys sessionId=XXX literal="/usage"
process action=send-keys sessionId=XXX keys=["Enter"]

# Read output
process action=poll sessionId=XXX timeout=5000

# Exit
process action=send-keys sessionId=XXX keys=["Escape"]
process action=send-keys sessionId=XXX literal="/exit"
process action=send-keys sessionId=XXX keys=["Enter"]

### Notes

If you see "Missing API key" → tell the user to log in; browser-based login won't work headlessly
Allow a few seconds between polls — Claude CLI starts slowly
"Current week" = weekly reset, not daily

### Output Format

Report in a table:

UsageResetsCurrent sessionX% usedtoday at HH:MM (timezone)Weekly (all models)X% usedHH:MM (timezone)Weekly (Sonnet only)X% usedHH:MM (timezone)Extra usageX% used / $X of $Y spentdate (timezone)

Always show reset times. The CLI displays them as "Resets Xpm" — convert to HH:MM format.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aligurelli
- Version: 1.3.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T10:24:28.437Z
- Expires at: 2026-05-06T10:24:28.437Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claude-usage-checker)
- [Send to Agent page](https://openagent3.xyz/skills/claude-usage-checker/agent)
- [JSON manifest](https://openagent3.xyz/skills/claude-usage-checker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claude-usage-checker/agent.md)
- [Download page](https://openagent3.xyz/downloads/claude-usage-checker)