init

init is a command for Claude Code from shashikirandevadiga/apply-pilot. It costs 0 tokens per session (1,538 once invoked), scanned A, original, MIT.

A setup and health-check command for a job-application automation system. It checks that required software, folders, profile files, and agent and command files are present.

In plain words
What is it for?
Use /init to check Python, the python-docx library for creating Word documents, application folders, profile folders, playbooks, and configuration files.
Why use it?
It identifies missing dependencies or files before you try to create an application package. This helps explain whether the system is ready to use.

Command for Claude Code

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.

agentmods
npx agentmods add commands/shashikirandevadiga/apply-pilot/init
Clone the repo
git clone --depth 1 https://github.com/shashikirandevadiga/apply-pilot

Made for: Claude Code.

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 init

README.md
[![agentmods](https://agentmods.dev/badge/commands/shashikirandevadiga/apply-pilot/init.svg)](https://agentmods.dev/commands/shashikirandevadiga/apply-pilot/init)
Your own site
<a href="https://agentmods.dev/commands/shashikirandevadiga/apply-pilot/init"><img src="https://agentmods.dev/badge/commands/shashikirandevadiga/apply-pilot/init.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,538 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00000 $0.01538
Opus 5 $0.00000 $0.00769
Sonnet 5 $0.00000 $0.00308
Haiku 4.5 $0.00000 $0.00154

Measured 5d ago against content hash 58ead6a2c6aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

init 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 5d 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.

.claude/commands/init.md · 198 lines

How it starts

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

/init - System Setup & Validation

Initialize and validate the job application automation system.


What This Command Does

  1. Validates dependencies (python3, python-docx)
  2. Checks folder structure (APPLICATIONS/, YOUR_PROFILE/, PLAYBOOK/)
  3. Verifies core files (.claude/agents/, .claude/commands/)
  4. Checks user profile (USER_PROFILE.md, USER_BULLETS.md)
  5. Reports setup status

Execution Steps

Step 1: Check Python Dependencies

# Check Python 3 installed
python3 --version

# Check python-docx library
python3 -c "import docx; print('python-docx installed')" 2>/dev/null || echo "python-docx NOT installed"

If python-docx missing:

pip3 install python-docx

Step 2: Verify Folder Structure

Check these folders exist:

  • APPLICATIONS/
  • YOUR_PROFILE/
  • YOUR_PROFILE/examples/
  • PLAYBOOK/
  • .claude/commands/
  • .claude/agents/
# Verify folders
test -d "APPLICATIONS" && echo "APPLICATIONS/ exists" || echo "APPLICATIONS/ MISSING"
test -d "YOUR_PROFILE" && echo "YOUR_PROFILE/ exists" || echo "YOUR_PROFILE/ MISSING"
test -d "YOUR_PROFILE/examples" && echo "YOUR_PROFILE/examples/ exists" || echo "YOUR_PROFILE/examples/ MISSING"
test -d "PLAYBOOK" && echo "PLAYBOOK/ exists" || echo "PLAYBOOK/ MISSING"
test -d ".claude/commands" && echo ".claude/commands/ exists" || echo ".claude/commands/ MISSING"
test -d ".claude/agents" && echo ".claude/agents/ exists" || echo ".claude/agents/ MISSING"

Step 3: Verify Core Files

.claude/commands/ (2 files):

  • .claude/commands/apply.md
  • .claude/commands/init.md

.claude/agents/ (8 files):

  • .claude/agents/application-orchestrator.md
  • .claude/agents/jd-assessor.md
  • .claude/agents/resume-creator.md
  • .claude/agents/resume-verifier.md
  • .claude/agents/coverletter-creator.md
  • .claude/agents/coverletter-verifier.md
  • .claude/agents/outreach-creator.md
  • .claude/agents/outreach-verifier.md

Read the full file on GitHub · 198 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. 5d ago First seen · 198 lines · 0 tokens per session scan A 58ead6a2c6aa

Subscribe to this mod's changes

init is a command published in the GitHub repository shashikirandevadiga/apply-pilot (5 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,538 tokens. 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.