Agent skill · Code Review & Quality

monitoring

Monitor Hawk job status, view logs, and diagnose issues. Use when the user wants to check job progress, view error logs, debug a failing job, or generate a monitoring report for a Hawk evaluation run.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill hawk-monitoring --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/hawk-monitoring/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hawk Job Monitoring Monitor running or completed Hawk jobs using the `hawk logs` command or `hawk status` subcommands. ## Job ID The `JOB_ID` parameter is the **eval_set_id** or **scan_run_id** from when the job was submitted. **JOB_ID is optional.** If omitted, uses the last eval set ID that was used or received. ## Available Commands ### 1. View Logs (Shorthand) The `hawk logs` command shows logs: ```bash hawk logs # Show last 100 logs (all types) hawk logs <JOB_ID> # Show last 100 logs for job hawk logs -n 50 # Show last 50 lines ``` **Options:** - `-n, --lines N` - Number of lines to show (default: 100) **Note:** Do NOT use the `-f/--follow` flag - it blocks indefinitely and is intended for interactive terminal use only. ### 2. View status Generate a full monitoring report with logs, metrics, and other details: ```bash hawk status # Use last job ID hawk status <JOB_ID> # Print report to stdout hawk status <JOB_ID> > report.json # Save to file ``` **Options:** - `--hours {hours}` - Fetch logs from last N hours (default: 24 hours) ## Common Workflows ### Check job progress ```bash hawk logs ``` ### Generate full report for analysis ```bash hawk status > report.status ```

What's inside
Steps it walks through
  1. Job ID
  2. Available Commands
  3. 1. View Logs (Shorthand)
  4. 2. View status
  5. Common Workflows
  6. Check job progress
  7. Generate full report for analysis
Ships with 1 file
  • metadata.json
Commands it runs
hawk logs                             # Show last 100 logs (all types)
hawk logs <JOB_ID>                    # Show last 100 logs for job
hawk logs -n 50                       # Show last 50 lines
hawk status                           # Use last job ID
hawk status <JOB_ID>                  # Print report to stdout
hawk status <JOB_ID> > report.json      # Save to file
hawk logs
hawk status > report.status
More from claude-skill-registry
All skills →
About this skill
What does the monitoring skill do?

Monitor Hawk job status, view logs, and diagnose issues. Use when the user wants to check job progress, view error logs, debug a failing job, or generate a monitoring report for a Hawk evaluation run.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill hawk-monitoring --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going