Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add younnieCutler/japan-career-agent/plugin install japan-career-agentWrote 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.
[](https://agentmods.dev/hooks/younniecutler/japan-career-agent/user-prompt-submit)<a href="https://agentmods.dev/hooks/younniecutler/japan-career-agent/user-prompt-submit"><img src="https://agentmods.dev/badge/hooks/younniecutler/japan-career-agent/user-prompt-submit/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.
<a href="https://agentmods.dev/hooks/younniecutler/japan-career-agent/user-prompt-submit"><img src="https://agentmods.dev/badge/hooks/younniecutler/japan-career-agent/user-prompt-submit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>Grade A, and why
UserPromptSubmit 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 11d ago.
A static scan of the commands this hook runs, not an audit. A hook is shell that executes on your machine at the event it names, which is why every command in it is printed with what was found.
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.
How it starts
The opening of the file, as written. The whole thing — 14 lines — stays where its author put it; the contents beside it link to each section on GitHub.
{
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "degraded_status() { case \"${JAPAN_CAREER_LANGUAGE:-ko}\" in ja) label='ステータス表示を利用できません'; message='実行条件と期限を確認できませんでした。Career Agentプラグインを再起動するか更新してください。' ;; en) label='Career status unavailable'; message='Execution gates and deadlines were not checked. Restart or update the Career Agent plugin.' ;; *) label='경력 상태를 표시할 수 없음'; message='실행 조건과 마감을 확인하지 못했습니다. Career Agent 플러그인을 다시 시작하거나 업데이트해 주세요.' ;; esac; printf '%s\\n' '<career_status>' \"$label\" \"$message\" '</career_status>'; }; plugin_root=\"${CLAUDE_PLUGIN_ROOT:-}\"; status_bar=\"${plugin_root}/scripts/status_bar.py\"; if [ -z \"$plugin_root\" ] || [ ! -f \"$status_bar\" ]; then degraded_status; exit 0; fi; if ! command -v python3 >/dev/null 2>&1; then degraded_status; exit 0; fi; status_output=\"$(python3 \"$status_bar\" 2>/dev/null)\"; status_code=$?; if [ \"$status_code\" -eq 0 ]; then printf '%s\\n' \"$status_output\"; else degraded_status; fi; exit 0",
"commandWindows": "function Write-DegradedStatus { switch ($env:JAPAN_CAREER_LANGUAGE) { 'ja' { $label = 'ステータス表示を利用できません'; $message = '実行条件と期限を確認できませんでした。Career Agentプラグインを再起動するか更新してください。' } 'en' { $label = 'Career status unavailable'; $message = 'Execution gates and deadlines were not checked. Restart or update the Career Agent plugin.' } default { $label = '경력 상태를 표시할 수 없음'; $message = '실행 조건과 마감을 확인하지 못했습니다. Career Agent 플러그인을 다시 시작하거나 업데이트해 주세요.' } }; Write-Output '<career_status>'; Write-Output $label; Write-Output $message; Write-Output '</career_status>' }; $pluginRoot = $env:CLAUDE_PLUGIN_ROOT; if ([string]::IsNullOrWhiteSpace($pluginRoot)) { Write-DegradedStatus; exit 0 }; $statusBar = Join-Path -Path $pluginRoot -ChildPath 'scripts/status_bar.py'; if (-not (Test-Path -LiteralPath $statusBar -PathType Leaf)) { Write-DegradedStatus; exit 0 }; $python = Get-Command python -ErrorAction SilentlyContinue; if ($null -eq $python) { WritWhat 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.
- 11d ago First seen · 14 lines scan A c5aa17b2a2fe
UserPromptSubmit is a hook published in the GitHub repository younnieCutler/japan-career-agent (6 stars, last pushed today), licensed MIT. Its token cost is not measured: a hook is shell that never enters the context. 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.
Other hooks, from other repositories
PostToolUse
Runs after a tool call finishes for Write and Edit tool calls, executing format_and_lint.sh. From supabase/supabase.
SessionStart
Runs when a session starts on startup, executing install_pkgs.sh. From supabase/supabase.
SessionStart
Runs when a session starts, executing on-start.js via node. From google-gemini/gemini-cli.
PreToolUse
Runs before the agent uses a tool for Bash tool calls, running an inline shell check. From apache/superset.
PreToolUse
Runs before the agent uses a tool for Bash tool calls, executing enforce-tools.mjs via node. From prisma/orm.
PostToolUse
Runs after a tool call finishes for Write and Edit tool calls, executing format-ts.mjs via node. From prisma/orm.