career-agent

career-agent is a skill for Claude Code from younnieCutler/japan-career-agent. It costs 76 tokens per session (3,660 once invoked), scanned A, original, MIT.

A local career assistant for people searching for jobs in Japan. It routes different job-search situations to relevant workflows, keeps a record of career events, and suggests evidence-based next actions.

In plain words
What is it for?
It is for setting up a career record, checking its status, discussing job-search needs, and planning grounded next steps for new-graduate or experienced hiring.
Why use it?
It gives career work a structured place to start without relying on guesses or loading every workflow at once. It also keeps job-search decisions under the user's control.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/e2e_artifact.py prepare-worktree --repo . --commit "$SHA" \.

Part of the japan-career-agent plugin — 18 skills, 1 hook shipped together

Good fit It is for setting up a career record, checking its status, discussing job-search needs, and planning grounded next steps for new-graduate or experienced hiring.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/younnieCutler/japan-career-agent
agentmods
npx agentmods add skills/younniecutler/japan-career-agent/career-agent

Made for: Claude Code.

Or install japan-career-agent, the plugin that ships this one along with the rest of its 18 skills, 1 hook.

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 career-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/younniecutler/japan-career-agent/career-agent/github.svg)](https://agentmods.dev/skills/younniecutler/japan-career-agent/career-agent)
Your own site
<a href="https://agentmods.dev/skills/younniecutler/japan-career-agent/career-agent"><img src="https://agentmods.dev/badge/skills/younniecutler/japan-career-agent/career-agent/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 career-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/younniecutler/japan-career-agent/career-agent"><img src="https://agentmods.dev/badge/skills/younniecutler/japan-career-agent/career-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,660 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.00076 $0.03660
Opus 5 $0.00038 $0.01830
Sonnet 5 $0.00015 $0.00732
Haiku 4.5 $0.00008 $0.00366

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

Security

Grade A, and why

career-agent 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 12d ago.

The scan reads SKILL.md. This mod also ships 54 executable files (approvals.py, artifact_store.py, career_agent.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/career-agent/SKILL.md · 252 lines

How it starts

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

Career Agent

This is the orchestration layer for the existing eight domain skills. It does not replace them and does not inject every SKILL.md into every run.

Run

First time, one shot:

python skills/career-agent/career_agent.py setup --track chuto --target-role "LLMOps Engineer"

setup inits a Vault (defaults to ~/.career-agent-vault if --vault/CAREER_VAULT isn't set), fills in the profile fields given, and runs doctor, returning next so the caller knows whether to go straight to chat or fill in whatever doctor still flags. It never picks the current working directory as the Vault — only an explicit --vault, CAREER_VAULT, or the ~/.career-agent-vault default.

Everything below is the same runtime, spelled out step by step, from the repository root:

VAULT=/path/to/career-agent-vault
python skills/career-agent/career_agent.py init --vault "$VAULT"
# Fill 00-control/career-profile.toml, then verify it.
python skills/career-agent/career_agent.py doctor --vault "$VAULT"
# If an older install warns about pipeline: {companies: ...}, migrate it once:
python skills/career-agent/career_agent.py doctor --vault "$VAULT" --fix
python skills/career-agent/career_agent.py run --vault "$VAULT" --mode chat --message "신졸이고 学チカ 경험을 정리하고 싶어요"
python skills/career-agent/career_agent.py run --vault "$VAULT" --mode heartbeat
python skills/career-agent/career_agent.py run --vault "$VAULT" --mode discover --source postings.json
python skills/career-agent/career_agent.py status --vault "$VAULT"
python skills/career-agent/career_agent.py guided --vault "$VAULT"
python skills/career-agent/career_agent.py approve --vault "$VAULT" --workspace "/path/to/job-search-workspace" <proposal-id> --evidence "resume line 12" --next-action "Prepare interview notes"
python skills/career-agent/career_agent.py restore-state --vault "$VAULT" <version>
python skills/career-agent/career_agent.py index --vault "$VAULT"
python skills/career-agent/career_agent.py context --vault "$VAULT"
python skills/career-agent/career_agent.py propose-context --vault "$VAULT" --source data/self_analysis_profile.yml

Read the full file on GitHub · 252 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 252 lines · 76 tokens per session scan A 6eb33f259843

Subscribe to this mod's changes

career-agent is a skill published in the GitHub repository younnieCutler/japan-career-agent (6 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 3,660 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories