rocketpunch-collect

rocketpunch-collect is a skill for Claude Code from itssosunny/job-searcher. It costs 80 tokens per session (695 once invoked), scanned A, original, MIT.

A read-only, best-effort collector for recent public job listings from RocketPunch, a Korean job-listing website. It searches the public jobs page by keyword and returns reachable results as normalized JSON.

In plain words
What is it for?
Use it to gather or search RocketPunch jobs by role, technology, or company without logging in, saving, messaging, or applying.
Why use it?
It removes manual scanning while clearly reporting when the site cannot be fetched because of its browser check. It does not invent listings or claim that a collected role is still open.

Skill for Claude Code

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

Part of the job-searcher plugin — 22 skills shipped together

Good fit Use it to gather or search RocketPunch jobs by role, technology, or company without logging in, saving, messaging, or applying.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/itssosunny/job-searcher/rocketpunch-collect
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 itssosunny/job-searcher --skill rocketpunch-collect
Clone the repo
git clone --depth 1 https://github.com/itssosunny/job-searcher

Made for: Claude Code.

Or install job-searcher, the plugin that ships this one along with the rest of its 22 skills.

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 rocketpunch-collect

README.md
[![agentmods](https://agentmods.dev/badge/skills/itssosunny/job-searcher/rocketpunch-collect/github.svg)](https://agentmods.dev/skills/itssosunny/job-searcher/rocketpunch-collect)
Your own site
<a href="https://agentmods.dev/skills/itssosunny/job-searcher/rocketpunch-collect"><img src="https://agentmods.dev/badge/skills/itssosunny/job-searcher/rocketpunch-collect/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 rocketpunch-collect

Your own site · 80×15
<a href="https://agentmods.dev/skills/itssosunny/job-searcher/rocketpunch-collect"><img src="https://agentmods.dev/badge/skills/itssosunny/job-searcher/rocketpunch-collect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 695 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.
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.00080 $0.00695
Opus 5 $0.00040 $0.00347
Sonnet 5 $0.00016 $0.00139
Haiku 4.5 $0.00008 $0.00069

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

Security

Grade A, and why

rocketpunch-collect 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.

The scan reads SKILL.md. This mod also ships 1 executable file (collect.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/rocketpunch-collect/SKILL.md · 59 lines

How it starts

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

RocketPunch Collect

Best-effort collector for RocketPunch's /jobs listing, normalized to docs/SCHEMA.md. Self-contained: this skill's collect.py carries its own fetch + parse and depends only on curl_cffi, beautifulsoup4, lxml.

Boundaries

  • Read-only. GET of the public /jobs listing only. Never log in, save a job, message, or apply. Do not submit any form.
  • No fabrication. When the listing is not reachable by fetch, collect.py reports the reason and returns no postings — it never invents rows.
  • A collected posting reflects the public page at run time; it is not proof the role is still open.

Run

If collect.py fails with ModuleNotFoundError, install the deps yourself (pip install curl_cffi beautifulsoup4 lxml) and retry — do not ask the user to install anything.

pip install curl_cffi beautifulsoup4 lxml   # or: pip install -r requirements.txt

python3 skills/rocketpunch-collect/collect.py --query "개발자" --limit 20
  • --query, -q — search keyword (default 개발자).
  • --limit, -n — max postings (default 20).
  • --pretty — indent the JSON.

Status: the listing needs a browser (needs_browser)

RocketPunch serves /jobs behind an AWS WAF JavaScript challenge (HTTP 202 with awsWafCookieDomainList, challenge.js, and AwsWafIntegration), so a plain read-only GET receives the challenge interstitial, not the job list. Solving it requires executing the challenge script in a real browser, which is out of scope for a fetch-only, read-only collector.

collect.py detects the challenge and exits 1 with a JSON error carrying "needs_browser": true on stderr — it does not fabricate postings. To actually collect RocketPunch, drive the listing in a browser (e.g. claude-in-chrome / Playwright) so the WAF cookie is issued, then hand the rendered HTML to the generic /jobs/<id> card parser already in collect.py.

Notes

  • Source: SRC-JOB-ROCKETPUNCHhttps://www.rocketpunch.com/jobs (needs_browser, verified 2026-07-07).
  • Detail URLs use the /jobs/<id> pattern; external_id is that numeric id.
  • The parser is intentionally generic (any /jobs/<id> card, no single-company hardcoding). If RocketPunch ever drops the WAF gate for server-rendered HTML, the same collect.py will return postings without changes.

Read the full file on GitHub · 59 lines

Files

What ships with it

1 file 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. 11d ago First seen · 59 lines · 80 tokens per session scan A d5f6205efbc9

Subscribe to this mod's changes

rocketpunch-collect is a skill published in the GitHub repository itssosunny/job-searcher (14 stars, last pushed 2mo ago), licensed MIT. It adds 80 tokens to every session and 695 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-30.

Related

Other skills, from other repositories

roast-cold-email

A Chinese-language writing guide for composing deliberately restrained cold emails that point out a company’s documented gap. A cold email is an unsolicited message to someone you do not already know.

Schlaflied/roast-cold-email-skill · 38 tokens

indeed-full

Complete Indeed job postings toolkit via RolesAPI.com. Search Indeed job postings by keyword and location, fetch full role details, look up salary for a job posting, and get descriptions, company info, and benefits across 60+ country editions.

nikhonit/indeed-skills · 52 tokens

indeed-search

Search Indeed job postings by keyword and location via RolesAPI.com. Get job listings as JSON, filter to postings from today, this week, or remote-only, across 60+ country editions.

nikhonit/indeed-skills · 43 tokens

chief-strategy-officer

Owns where the business plays and how it wins over a multi-year horizon — portfolio choices, corporate development, strategic partnerships, and planning under uncertainty. Use this for a decision about which markets or businesses to be in, whether to build, buy, or partner, how to allocate capital across business…

cbrock84/headcount · 93 tokens

seo-strategy

Audits and improves organic search performance — technical health, site architecture, internal linking, structured data, and the content decisions that determine what can rank. Use this to run an SEO audit, diagnose why pages are not ranking or were deindexed, plan a site's URL and navigation structure, add structured…

cbrock84/headcount · 74 tokens

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 tokens