From pcl-carbon
Verify pcl-carbon is installed correctly. Checks Node version, binary executable, and runs a self-test against a bundled fixture. Run after installing the plugin.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pcl-carbon:doctorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run the pcl-carbon doctor checks in order. For each step, print the check name and a ✓ or ✗.
Run the pcl-carbon doctor checks in order. For each step, print the check name and a ✓ or ✗.
node --version. Must be v18.0.0 or higher. Parse major version, compare.which carbon-inspect. Must exit 0.carbon-inspect --help. Must exit 0 and print usage.carbon-inspect "$PLUGIN_DIR/fixtures/sample.json" (resolve $PLUGIN_DIR via ${CLAUDE_PLUGIN_ROOT} env var if set, else find the plugin dir via which carbon-inspect then ../). The output must contain the string "input-sequence B2" (the fixture has a cell-write event at B2).If all 4 pass, print: "✓ pcl-carbon 0.1.0 ready. Try: /pcl-carbon:inspect <path-to-your-export.json>"
If any fail, print the exact failing step and the stderr output, then suggest a fix:
npx claudepluginhub teren-papercutlabs/pcl-carbon-plugin --plugin pcl-carbonGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.