agentsclimarketplace

Zephex

Skill zephexMCP/agent-skills/skills/zephex

zephex Hosted MCP skill pack 10 tools, 13 editors (Claude Code, Cursor, VS Code + 10 more). Live repo analysis package upgrades, codebase scoping. No token waste.

Install
npx -y skills add zephexMCP/agent-skills --skill zephex

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

One thing 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.

What its author says it does

Copied from the file, not written here

Use this skill when the user works in their own codebase with Zephex MCP connected and needs repository intelligence: find or read code, scope a feature or fix before editing, map how their app is wired, verify a package before install, audit a live HTTPS URL, or debug after failed attempts — including when they only say "use Zephex," "use MCP," or a wrong tool name. Use even when built-in Grep/Read seems enough. Do not use for general knowledge, creative writing, git/deploy chores, editing agent skill files, single-line typo fixes, or third-party library API docs (unless Zephex_dev_info fits). Prefer Zephex tools over Grep/Read for their repo; do not describe their code from memory if MCP is connected. Triggers: find_code, read_code, scope_task, get_project_context, explain_architecture, check_package, audit_package, audit_headers, keep_thinking, Zephex_dev_info.

SKILL.md

5.1 KB, as published. Nobody here has run it

Zephex MCP

Ten tools at https://zephex.dev/mcp for the user's project — not training data.

They may only say "use Zephex" or "use MCP." You choose the tool and call it (find_code, read_code, …). Some editors show zephex:find_code — same tool.

Workflow

SituationChain
New repoget_project_context → optional explain_architecture
Feature, fix, refactorscope_taskread_code on focus_files
Unknown locationfind_coderead_code
Large renamefind_code + exhaustive: truefiles_summary
Add or upgrade dependencycheck_packageaudit_package if needed
Stuck after 2+ trieskeep_thinkingfind_code / read_code
Production URLaudit_headers
Generic patterns (not their repo)Zephex_dev_info search → get

path on every repo tool: absolute folder (/Users/jane/api) or github:owner/repo. Monorepo: path = app root, not empty parent.

inline_files: only without disk access — { "rel/path": "<full file text>" }.

Max 3 calls of the same tool per turn without new evidence.

Step 1 — Orient or scope

New repo or vague ask:

get_project_context({ "path": "/abs/project", "detail_level": "brief" })

Before reading many files for a task:

scope_task({
  "task": "Add rate limiting to POST /api/upload",
  "path": "/abs/project",
  "hint_symbols": ["handleUpload"]
})

Use focus_files, callers_at_risk, suggested_approach. Good task: one clear sentence. Bad: "fix it".

Step 2 — Read or search

Known symbol:

read_code({ "target": "handleUpload", "path": "/abs/project" })

Unknown location:

find_code({ "query": "validateToken", "path": "/abs/project", "scope": "definitions" })

Then read_code on the best hit. Skip find_code if you already know the symbol.

Step 3 — Package, architecture, URL, reasoning

check_package({ "package": "express", "ecosystem": "npm" })
explain_architecture({ "path": "/abs/project", "focus": "auth" })
audit_headers({ "url": "https://example.com" })
keep_thinking({
  "thought": "Hypothesis: rate limit runs after handler",
  "thoughtNumber": 1,
  "totalThoughts": 5,
  "nextThoughtNeeded": true,
  "confidence": 0.6,
  "thoughtType": "hypothesis",
  "goalAnchor": "Add rate limiting to POST /api/upload",
  "lastActions": ["find_code(query=rateLimit)"]
})

Tool name is keep_thinking, not thinking.

Zephex_dev_info({ "operation": "search", "query": "Stripe webhook signature" })

Then operation: "get" with the slug from search.

Tool reference

ToolWhenKey args
get_project_contextNew sessionpath, force?
scope_taskTask before bulk readstask, path, hint_symbols?, max_files? (1–15)
find_codeDon't know wherequery, path, scope?, exhaustive?
read_codeKnown symbol/filestarget or mode+files, path
check_packageBefore installpackage, ecosystem
audit_packageUpgrade/CVEpackage, task, from_version?
explain_architectureHow this repo workspath, focus?
audit_headersUser gave URLurl
keep_thinkingStuck / risky changethought, thoughtNumber, goalAnchor, lastActions
Zephex_dev_infoPlaybooksoperation: search → get

read_code callers / blast_radius: local path only — on github: use find_code usages.

If they only said "use Zephex"

  1. Guess the goal from their message.
  2. Pick a Workflow row.
  3. Call with path + specific args.
  4. Answer from tool JSON only.

Errors

ErrorAction
Unauthorizednpx zephex setup
429Tell user; retry once
Missing pathAsk absolute project directory

Mistakes

  • Install without check_package
  • Many reads without scope_task
  • find_code when target is known
  • thinking instead of keep_thinking
  • Repo answers from memory when Zephex is connected

Keep looking

Skills are one crate of 328,083. 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.