agentsclimarketplace

Verify

Skill chrisdothtml/ai-job-finder/.claude/skills/verify

How to run and drive this app to verify UI/server changes at runtimeFrom its SKILL.md

Install
npx -y skills add chrisdothtml/ai-job-finder --skill verify

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `yarn app:dev` and 1 more.
  • fetches URLsInstructs the agent to fetch 1 URL, including http://localhost:8000.

SKILL.md

1.4 KB, 340 tokens by cl100k_base, as published. Nobody here has run it

Verifying job-finder changes

Launch

  • Dev server: yarn app:dev (nodemon) or yarn server:start; serves at http://localhost:8000 (PORT env, default 8000). Check first — it's often already running.
  • In dev mode the UI is bundled from src/ui per request via esbuild middleware, so UI edits are picked up on page reload — no rebuild step.

Drive

  • The app blocks on onboarding unless localStorage has ai-job-finder-storage with {"isOnboarded":true,...}. To skip onboarding in a fresh Playwright profile: localStorage.setItem('ai-job-finder-storage', JSON.stringify({ isOnboarded: true, settings: {} })) then reload. Restore {"isOnboarded":false,"partialSettings":{}} when done.
  • Jobs data comes from /api/jobs, companies from /api/companies — both already populated locally.
  • Jobs-list view prefs persist under localStorage key ai-job-finder-ui-prefs.

Gotchas

  • Playwright MCP screenshots with relative paths land in the repo root, not .playwright-mcp/ — use absolute scratchpad paths.
  • Job cards animate in (cardIn, staggered by index); screenshot right after reload catches half-faded cards. Wait a beat before capturing.
  • The server on :8000 is usually the user's own dev server — never kill or restart it. Close the Playwright browser when done.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.