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.
npx agentmods add skills/jasonchen0604/codebase-to-portfolio/batch-initnpx skills add jasonChen0604/codebase-to-portfolio --skill batch-initgit clone --depth 1 https://github.com/jasonChen0604/codebase-to-portfolioWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00057 | $0.00874 |
| Opus 5 | $0.00028 | $0.00437 |
| Sonnet 5 | $0.00011 | $0.00175 |
| Haiku 4.5 | $0.00006 | $0.00087 |
Grade A, and why
batch-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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Batch Init Skill
Goal
Find valid projects in projects-list.md that need their project doc initialized or updated, run the init-project-doc skill in parallel (max 3 per batch), and update projects-list.md after each batch completes.
Step 0: Read config
Read profile.config.json from the current working directory. If missing, tell the user to copy examples/profile.config.example.json to profile.config.json and fill it in, then stop.
doc_filename(defaultCLAUDE.md)agent_command— the shell command template used to runinit-project-docnon-interactively in a project directory. Default:claude --dangerously-skip-permissions -p "/init-project-doc". Other CLIs can be substituted, e.g.codex exec "/init-project-doc"(seedocs/installation.mdfor per-tool examples). This flag skips interactive permission/trust prompts — only use it in directories you trust.
Execution Steps
Step 1: Get the latest version number
Run the /get-latest-version skill to get the version string to use as the "latest version" baseline.
- Return format is a string (e.g.
"2.0") - If
noneis returned, all projects with a doc file are treated as "outdated"
Step 2: Filter candidate projects
From the table in projects-list.md, filter rows that satisfy all of the following:
- "Active" column is ✅ (skip ❌)
- Matches at least one of:
- Doc-file column is ❌ (not yet initialized)
- Doc-file column is ✅ but "Version" column is not the latest (including
—)
Sort by table order, take the first N (default N=5; user can specify in prompt, e.g. "batch init 3").
Step 3: Run init-project-doc in parallel (max 3 per batch)
Split candidate projects into batches of max 3, run within each batch in parallel, batches run sequentially:
cd <project path> && <agent_command>
<project path>is the "Path" column value from the table; expand~to$HOME- Issue all 3 commands in the same batch simultaneously via Bash tool with
run_in_background: true, then wait for all to complete - After each batch finishes, read each project's
<doc_filename>frontmatter to getskill_version, then proceed to the next batch
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.
- 2d ago First seen · 67 lines · 57 tokens per session scan A f4cf13ea8b6c
batch-init is a skill published in the GitHub repository jasonChen0604/codebase-to-portfolio (2 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 874 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-31.
Other skills, from other repositories
a11y-analyzer
Accessibility analysis from session data — keyboard-only navigation patterns, focus order issues, screen reader compatibility, and accessibility regressions. Use when auditing a11y compliance, investigating accessibility bugs, or validating inclusive design.
campaign-tracker
Track marketing campaign performance — UTM-tagged traffic, landing page conversion, campaign cohort behavior, and ROI signals. Use when analyzing campaign performance, measuring landing page effectiveness, or comparing marketing channels.
changelog-detective
Detect what changed in the product by comparing before and after a deploy or date — find new behaviors, new errors, changed user flows, and unexpected side effects that weren't in the release notes. Use after a deploy or when the user suspects something changed but doesn't know what.
form-analyzer
Form field-level analysis — abandonment by field, validation errors, time-to-complete, and which fields cause users to leave. Use when investigating form performance, signup drop-off, or checkout form friction.
heatmap-generator
Generate click and interaction heatmaps from session data — visualize where users click, tap, and hover on any page. Use when asking "what do users click on most", "are users clicking non-clickable elements", or "where should we place the CTA".
incident-responder
Structured incident response workflow — detect, investigate, communicate, and resolve using session data as evidence. Use when an incident is declared, a production issue is reported, or the on-call engineer needs session evidence.