
abczsl520 skills on Claude Market
3 skills published by abczsl520. Each listing includes a one-command install for Claude Code, OpenClaw, Codex, and Hermes, plus a link to the upstream source.
debug-methodology
A structured debugging approach built around root cause analysis. Forces a stop-and-assess phase before any fix attempt, enforces the 5 Whys for non-obvious bugs, and cuts off patch-chaining after two failed attempts. Distinguishes genuine fixes from workarounds using a concrete self-check test.
bug-audit
A structured 6-phase audit methodology for Node.js web projects. It reads the codebase to build 7 project-specific tables covering API endpoints, state machines, timers, numeric values, data flows, resource ledgers, and concurrency hotspots, then verifies each row exhaustively. Supports games, data tools, WeChat apps, API services, bots, and dashboards.
nodejs-project-arch
Architecture standards for Node.js projects designed to keep individual files under 400 lines so AI agents can read and edit them without exceeding context limits. Covers route modularization, config externalization via config.json, and a built-in admin dashboard for hot-reloading settings. Applies to REST APIs, H5 games, scrapers, dashboards, and SDK libraries.