CodeShuX__mockhunter

CodeShuX__mockhunter is a skill for Claude Code, Codex from Bilal140202/the-lord-of-the-skills. It costs 90 tokens per session (4,825 once invoked), scanned A, original, MIT.

A live web-page audit that traces visible values and interactions back to their source. It checks whether data comes from a real database or API, mock data, generated text, hard-coded values, or a broken endpoint.

In plain words
What is it for?
Use it to inspect a page in a browser, test its interactive controls, and produce a report about the source and reliability of what users see.
Why use it?
It helps catch pages that look functional but display fabricated, fixed, or disconnected data. It also exposes interactions and endpoints that do not work as expected.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool; positional $N argument.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is 📸 Screenshots: ./mockhunter-screenshots/.

Good fit Use it to inspect a page in a browser, test its interactive controls, and produce a report about the source and reliability of what users see.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills
agentmods
npx agentmods add skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter

Made for: Claude Code, Codex.

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 CodeShuX__mockhunter

README.md
[![agentmods](https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter/github.svg)](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter)
Your own site
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter/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 CodeShuX__mockhunter

Your own site · 80×15
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/codeshux__mockhunter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,825 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00090 $0.04825
Opus 5 $0.00045 $0.02413
Sonnet 5 $0.00018 $0.00965
Haiku 4.5 $0.00009 $0.00483

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

Security

Grade A, and why

CodeShuX__mockhunter scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- A Supabase HTTP endpoint with service role key (use `curl`)
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/gondor/claude-code/CodeShuX__mockhunter/SKILL.md · 413 lines

How it starts

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

MockHunter — Live Page Reality Check

Audit a web page in five phases. For every value visible on screen, classify its source as one of: REAL / MOCK / LLM / HARDCODED / BROKEN / UNKNOWN.

Output: a markdown report the user can read in two minutes.

Philosophy: A rendered value is not verified until you've traced it to its source. "It looks like a number" is not evidence that a number was computed.


Quickstart

User invokes /mockhunter:mockhunter. Skill collects inputs, runs all five phases, writes mockhunter-report.md to the current directory.

If the user provides only a URL, ask the smart questions (Phase 1). If the user provides full config upfront, skip directly to Phase 2.


Inputs

Collect these in Phase 1. Required unless marked optional.

Input Required Default
Target URL Yes
Auth mode Yes skip (one of: public, localhost, form, skip)
Auth credentials If form
Has database? Yes N
DB connection (string OR shell command) If has DB
Stack hint (optional) No autodetect from URL
Suspicions (optional) No
Money page (optional) No target URL

Auto-detect stack from URL pattern when not provided:

  • *.lovable.app → Lovable
  • *.bolt.new, *.stackblitz.io → Bolt
  • *.v0.app, *.v0.dev → v0
  • *.replit.app, *.repl.co → Replit
  • aistudio.google.com/* → Google AI Studio
  • everything else → Custom

The Five Phases

Phase 1 — Setup & Smart Questions

  1. Greet the user in one line: "MockHunter — I'll audit a page and tell you what's real, what's mocked, and what's broken."
  2. Ask for the target URL if not supplied.
  3. Ask up to 5 smart questions, picked from this pool based on context:
    • "What is this page supposed to do for the user?" (frames audit)
    • "Which numbers, badges, or sections do you most suspect are mocked?" (focuses scrutiny)
    • "Do you have a way to query the database directly? If yes, paste the command (e.g., psql ..., docker exec ..., Supabase SQL link)." (enables deep trace)
    • "What stack is this built with?" (skip if auto-detected)
    • "Are any sections intentionally AI-generated content (so I don't false-flag them)?"
  4. Ask about auth mode if URL looks like it might require login (presence of /login, /auth, /dashboard in path; or stack hint suggests authenticated app).
  5. Confirm the audit plan with one short summary, then proceed.

Read the full file on GitHub · 413 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. 8d ago First seen · 413 lines · 90 tokens per session scan A f252668a24ed

Subscribe to this mod's changes

CodeShuX__mockhunter is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 90 tokens to every session and 4,825 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

tool-calling-tutor

Use when a tool-calling agent does not call a tool, sends wrong arguments, loops without stopping, or needs a function schema. Guides a four-branch diagnosis and five-step schema repair. Do not use for framework-specific, MCP-server, or production-observability questions.

WenyuChiou/awesome-agentic-ai-zh · 62 tokens

detecting-process-injection-techniques

Detects and analyzes process injection techniques used by malware including classic DLL injection, process hollowing, APC injection, thread hijacking, and reflective loading. Uses memory forensics, API monitoring, and behavioral analysis to identify injection artifacts. Activates for requests involving process…

adriannoes/awesome-agentic-ai · 78 tokens

node-inspect-debugger

Debug Node.js via --inspect + Chrome DevTools Protocol.

HezaoHezao/poirot · 18 tokens

generate

Generate Playwright tests. Use when user says "write tests", "generate tests", "add tests for", "test this component", "e2e test", "create test for", "test this page", or "test this feature".

adriannoes/awesome-agentic-ai · 51 tokens

init

Set up Playwright in a project. Use when user says "set up playwright", "add e2e tests", "configure playwright", "testing setup", "init playwright", or "add test infrastructure".

adriannoes/awesome-agentic-ai · 44 tokens

playwright-pro

Production-grade Playwright testing toolkit. Use when the user mentions Playwright tests, end-to-end testing, browser automation, fixing flaky tests, test migration, CI/CD testing, or test suites. Generate tests, fix flaky failures, migrate from Cypress/Selenium, sync with TestRail, run on BrowserStack. 55 templates…

adriannoes/awesome-agentic-ai · 77 tokens