dev-doctor

dev-doctor is a skill for Claude Code, Codex from jmagly/aiwg. It costs 16 tokens per session (2,676 once invoked), scanned A, original, MIT.

A development health-check tool for an AIWG repository, which is the project folder containing its code and add-ons. It checks the repository's structure, TypeScript compilation, and test-coverage requirements.

In plain words
What is it for?
It helps run a full health report or check specific issues such as placement violations, orphaned skills, TypeScript compilation, or pre-commit readiness.
Why use it?
It helps find misplaced or unlinked components and other development problems before they cause failures or block a commit.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions CLAUDE.md.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jmagly/aiwg/dev-doctor
Any agent
npx skills add jmagly/aiwg --skill dev-doctor
Clone the repo
git clone --depth 1 https://github.com/jmagly/aiwg

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 dev-doctor

README.md
[![agentmods](https://agentmods.dev/badge/skills/jmagly/aiwg/dev-doctor.svg)](https://agentmods.dev/skills/jmagly/aiwg/dev-doctor)
Your own site
<a href="https://agentmods.dev/skills/jmagly/aiwg/dev-doctor"><img src="https://agentmods.dev/badge/skills/jmagly/aiwg/dev-doctor.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,676 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00016 $0.02676
Opus 5 $0.00008 $0.01338
Sonnet 5 $0.00003 $0.00535
Haiku 4.5 $0.00002 $0.00268

Measured 7d ago against content hash 579f888d3a9f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

dev-doctor 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 7d 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.

agentic/code/addons/aiwg-dev/skills/dev-doctor/SKILL.md · 282 lines

How it starts

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

Dev Doctor

You run a comprehensive development-environment health check on the AIWG repository, checking structural integrity across all addons and frameworks, catching orphaned and misplaced components, and validating TypeScript compilation and test coverage gates. You produce a structured health report with pass/fail per check and actionable remediation steps for every failure.

Triggers

  • "run dev doctor" → full health check
  • "check aiwg dev health" → full health check
  • "are there any placement violations" → run placement check section only
  • "find orphaned skills" → run orphan check section only
  • "is the repo in a good state" → full health check
  • "pre-commit health check" → run dev-doctor before committing
  • "dev health" → full health check

Trigger Patterns Reference

Pattern Example Action
Full check "run dev doctor" All sections
Placement focus "placement violations?" Placement check only
Orphan focus "find orphaned skills" Orphan detection only
Pre-commit "pre-commit health check" Full check
TypeScript "does TypeScript compile" Compilation check only
Quick "dev health" Full check, condensed output

Process

Run the following checks in sequence. Collect all results before generating the report.

Section 1: agentic/code/ Structure Integrity

  1. Read agentic/code/addons/ — list all addon directories
  2. For each addon directory:
    • manifest.json present and valid JSON
    • manifest.json has id, type, name, version, description
    • README.md present
  3. Read agentic/code/frameworks/ — list all framework directories
  4. For each framework directory:
    • manifest.json present and valid JSON
    • Required fields present

Section 2: Manifest vs Filesystem Consistency (Orphan Detection)

For each addon and framework:

Orphaned skills (SKILL.md exists but not in manifest):

  • List all skills/*/SKILL.md files under the addon
  • For each: verify the skill name appears in manifest.json skills array
  • Any SKILL.md without a manifest entry is an orphan

Read the full file on GitHub · 282 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. 7d ago First seen · 282 lines · 16 tokens per session scan A 579f888d3a9f

Subscribe to this mod's changes

dev-doctor is a skill published in the GitHub repository jmagly/aiwg (209 stars, last pushed today), licensed MIT. It adds 16 tokens to every session and 2,676 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

debug

Perform an evidence-based Parallax diagnosis or post-build audit and verify the repair.

Master0fFate/parallax-claudecode · 18 tokens

parallax-core

Apply session-safe Parallax reasoning and verification to code changes.

Master0fFate/parallax-claudecode · 16 tokens

typescript-circular-dependency

Detect and resolve TypeScript/JavaScript circular import dependencies. Use when: (1) "Cannot access 'X' before initialization" at runtime, (2) Import returns undefined unexpectedly, (3) "ReferenceError: Cannot access X before initialization", (4) Type errors that disappear when you change import order, (5) Jest/Vitest…

Wania-Kazmi/claude-code-autonomous-agent-workflow · 88 tokens

nextjs-server-side-error-debugging

Debug getServerSideProps and getStaticProps errors in Next.js. Use when: (1) Page shows generic error but browser console is empty, (2) API routes return 500 with no details, (3) Server-side code fails silently, (4) Error only occurs on refresh not client navigation. Check terminal/server logs instead of browser for…

Wania-Kazmi/claude-code-autonomous-agent-workflow · 87 tokens

agent-introspection-debugging

Structured self-debugging workflow for AI agent failures using capture, diagnosis, contained recovery, and introspection reports. Use when an agent run fails and you need a reproducible diagnosis instead of a retry.

affaan-m/ECC · 46 tokens

triage-issue

Analyze a GitHub issue, verify claims against the codebase, and close invalid issues with a technical response.

aden-hive/hive · 0 tokens