crawlforge-mcp: Skill for Claude Code

.claude/skills/next-phase/SKILL.md

next-phase is a skill for Claude Code from mysleekdesigns/crawlforge-mcp. It costs 105 tokens per session (2,975 once invoked), scanned A, original, MIT.

A workflow command that completes the next unfinished phase in a remediation plan. A remediation plan is a list of fixes and verification checks, and this command delegates the phase to specialist agents before testing and committing it.

In plain words
What is it for?
Advancing phases 0 through 6 in the project's plan folder, assigning phase work to agents, running verification and npm tests, updating planning documents, and creating a commit.
Why use it?
It provides a repeatable way to move through planned fixes one phase at a time while preserving the specified failure details and running the required verification.

Skill for Claude Code

Written for Claude Code: context: fork in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents; names the AskUserQuestion tool.

This is mysleekdesigns/crawlforge-mcp's own configuration. It tells Claude Code how to work on crawlforge-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything crawlforge-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to mysleekdesigns/crawlforge-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mysleekdesigns/crawlforge-mcp/main/.claude/skills/next-phase/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcp

Made for: Claude Code.

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 next-phase

README.md
[![agentmods](https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/next-phase/github.svg)](https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/next-phase)
Your own site
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/next-phase"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/next-phase/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 next-phase

Your own site · 80×15
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/next-phase"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/next-phase.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,975 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.00105 $0.02975
Opus 5 $0.00053 $0.01488
Sonnet 5 $0.00021 $0.00595
Haiku 4.5 $0.00011 $0.00298

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

Security

Grade A, and why

next-phase 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 9d 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.

.claude/skills/next-phase/SKILL.md · 160 lines

How it starts

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

/next-phase — Ship the next phase of the plan/ folder

You orchestrate exactly one phase of the remediation plan in plan/ from start to push, then stop. Repeated invocations walk the plan in order: Phase 0 → 1 → 2 → 3 → 4 → 5 → 6. You do not implement the work yourself — you delegate to specialized sub-agents in parallel and integrate their work.

The plan lives in plan/:

  • plan/README.md — index + sequencing + the phase table.
  • plan/phase-0-dependency-currency.mdplan/phase-6-mcp-competitive.md — one file per phase.
  • Full failure detail for every finding: docs/CODEBASE_AUDIT_2026-08.md.

Each phase file has a ## Checklist of - [ ] items and a ## Verification gate of - [ ] items. A code finding looks like:

- [ ] 🔴 **<title>** · CONFIRMED
  - `src/utils/ssrfGuard.js:129`
  - Failure: <concrete failure scenario>
  - Fix: <the fix>

The `file:line` and Fix: sub-bullets are the contract you hand to the sub-agent — copy them verbatim, don't paraphrase.

Hard rules

  • One phase per invocation. Detect the lowest-numbered incomplete phase, ship it, stop.
  • Never amend. Always create a new commit.
  • Never --no-verify, --no-gpg-sign, or force-push.
  • Never git add -A / git add . — stage files by name.
  • If the working tree is dirty before Step 1 (anything other than the plan files themselves), stop and report — don't sweep other work into the commit.
  • If any verification step fails, stop before commit, leave the tree as-is, and report the failure with output.
  • All sub-agent calls in Step 3 go out in a single message with multiple Agent tool calls so they run in parallel.
  • Disjoint file ownership. No two parallel agents may edit the same file (they share the real working tree, not worktrees — concurrent edits to one file corrupt it). server.js and shared src/utils/* are hotspots; give each hot file to a single agent.
  • In this environment, git, npm install/update, and the test suites may fail under a restrictive sandbox (listen EPERM / write EPERM are artifacts, not real failures). If a step fails that way, re-run it with the sandbox disabled. Append --test-force-exit to node --test runs (a Playwright handle otherwise delays exit ~100s — see CLAUDE.md).

Read the full file on GitHub · 160 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. 9d ago First seen · 160 lines · 105 tokens per session scan A 92ebe4765cba

Subscribe to this mod's changes

next-phase is a skill published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed yesterday), licensed MIT. It adds 105 tokens to every session and 2,975 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

skillnote

Self-hosted skill registry for OpenClaw. Stores procedures your team writes (name, description, body), syncs them to disk before each task, and collects which-helped/which-failed signals from the agent so the registry improves over time.

luna-prompts/skillnote · 54 tokens

chatcrystal-debug-recall

Recall ChatCrystal memories for debugging tasks involving failing tests, compiler errors, runtime exceptions, dependency issues, environment breakage, or performance regressions. Use when historical root causes, fixes, or pitfalls may accelerate diagnosis before proposing a fix.

ZengLiangYi/ChatCrystal · 54 tokens

collection

Choose which SkillNote skill collection is active for this Codex project. Use when the user says "change collection", "switch skills", "use frontend skills", or "show collections".

luna-prompts/skillnote · 39 tokens

healthcare-providers-enrich

Fills gaps in existing healthcare practitioner lists — adds missing phone numbers, credentials, specialties, contact info, education, reviews, and regulatory data. Triggers: "enrich my provider list", "fill in missing data", "add phone numbers to these doctors", "complete this practitioner database", "enrich CRM…

Nimbleway/agent-skills · 194 tokens

healthcare-providers-extract

Extracts structured practitioner data from healthcare practice websites. Returns names, credentials, specialties, contact info, and education for every provider on a practice's site. Use when user asks to extract, pull, or list doctors, providers, or staff from practice websites. Triggers: "extract doctors from"…

Nimbleway/agent-skills · 206 tokens

talent-sourcing

Finds qualified candidates for a role by searching LinkedIn, Indeed, GitHub, and other professional platforms using Nimble Web Search Agents. Accepts a job description, role title, or freeform request and returns a ranked candidate list with profiles, skills, and contact signals. Use this skill when the user wants to…

Nimbleway/agent-skills · 210 tokens