track

track is a skill for Claude Code from andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-. It costs 53 tokens per session (853 once invoked), scanned A, original, MIT.

A tracker for job applications, stored in a Markdown file. It lets you view applications, filter them, update their status, remove entries, and see search statistics.

In plain words
What is it for?
Use it to list applications, filter by company or status, change an application from one stage to another, remove an entry, and review totals.
Why use it?
It keeps application progress in one place, so you do not have to remember which companies you contacted or what stage each application reached.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the career-ops-plugin-do-not-fork-currently-updating-v2- plugin — 10 skills, 2 commands, 1 agent shipped together

Good fit Use it to list applications, filter by company or status, change an application from one stage to another, remove an entry, and review totals.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2- --skill track
Clone the repo
git clone --depth 1 https://github.com/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-

Made for: Claude Code.

Or install career-ops-plugin-do-not-fork-currently-updating-v2-, the plugin that ships this one along with the rest of its 10 skills, 2 commands, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for track

README.md
[![agentmods](https://agentmods.dev/badge/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track/github.svg)](https://agentmods.dev/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track)
Your own site
<a href="https://agentmods.dev/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track"><img src="https://agentmods.dev/badge/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for track

Your own site · 80×15
<a href="https://agentmods.dev/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track"><img src="https://agentmods.dev/badge/skills/andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2-/track.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 853 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00853
Opus 5 $0.00026 $0.00426
Sonnet 5 $0.00011 $0.00171
Haiku 4.5 $0.00005 $0.00085

Measured 13d ago against content hash b2d5bc8d035b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

track scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/track/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Application Tracker

View and manage your job applications in one place.

Step 0: Load Tracker

Read data/applications.md. If it doesn't exist, create it with the header:

# Job Applications

| Date Added | Date Applied | Company | Role | Score | Status | Evaluation | Notes |
|---|---|---|---|---|---|---|---|

Then tell the user:

"Your tracker is empty. Evaluate a job posting to get started, or paste a JD and I'll score it for you."

Step 1: Parse User Intent

  • No argument / "show tracker" / "my applications": Display full table + stats
  • Status filter ("show applied" / "what's in interview"): Filter by status
  • Company filter ("show Stripe"): Filter by company name
  • Update ("update Acme PM to Interview"): Change status of matching row
  • Stats ("how's my search going" / "search stats"): Show summary statistics
  • Delete ("remove the Acme entry"): Confirm, then remove row

Step 2: Display

Full View

Show the table as-is from applications.md, then show stats below it.

Filtered View

Show only matching rows, then summary:

"Showing {n} applications with status '{status}'."

Update Flow

  1. Find the matching row (by company + role, fuzzy match OK)
  2. Show current status and proposed new status
  3. Ask for confirmation:

    "Update {Company} - {Role} from {old status} to {new status}?"

  4. On confirmation, update the row
  5. If transitioning to "Applied", set Date Applied to today
  6. If transitioning to "Accepted", congratulate them!

Validate transitions against references/states.md. If invalid:

"Can't move from {old} to {new}. Valid next steps: {list}."

Step 3: Statistics

## Your Job Search Dashboard

| Metric | Count |
|---|---|
| Total evaluated | {n} |
| Resumes tailored | {n with status >= Resume Ready} |
| Applied | {n} |
| Response rate | {responses / applied}% |
| Interviews | {n} |
| Offers | {n} |
| Average score (applied) | {avg}/5.0 |
| Active (not resolved) | {n non-terminal} |

**Top scoring opportunities:**
1. {Company} - {Role} ({score}/5.0) - {status}
2. ...
3. ...

**Needs attention (applied but no response > 7 days):**
- {Company} - {Role} - applied {date}

Read the full file on GitHub · 105 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 105 lines · 53 tokens per session scan A b2d5bc8d035b

Subscribe to this mod's changes

track is a skill published in the GitHub repository andrew-shwetzer/career-ops-plugin-do-not-fork-currently-updating-v2- (490 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 853 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.