From deep-work
Detects project ecosystems and runs linters, type checkers, and coverage sensors. Reports status, errors, warnings, fixes per file/line/rule. Supports --detect, --lint, --typecheck, --coverage flags.
npx claudepluginhub sungmin-cho/claude-deep-suite --plugin deep-work# /deep-sensor-scan Manual computational sensor scanning. Can be used inside or outside deep-work sessions. ## Usage ## How It Works ### Step 1: Ecosystem Detection Run detection engine: Display detected ecosystems and tool availability. If `--detect` flag, stop here. ### Step 2: Sensor Execution For each detected ecosystem with available tools, run sensors in order: 1. **Linter** (if available and not `--typecheck`/`--coverage` only): 2. **Type checker** (if available and not `--lint`/`--coverage` only): 3. **Coverage** (if available and not `--lint`/`--typecheck` onl...
Manual computational sensor scanning. Can be used inside or outside deep-work sessions.
/deep-sensor-scan # Full sensor scan (detect + run all)
/deep-sensor-scan --detect # Show detected ecosystems only (no sensor execution)
/deep-sensor-scan --lint # Run linter only
/deep-sensor-scan --typecheck # Run type checker only
/deep-sensor-scan --coverage # Run coverage measurement only
Run detection engine:
node "$PLUGIN_DIR/sensors/detect.js" "$PROJECT_ROOT"
Display detected ecosystems and tool availability. If --detect flag, stop here.
For each detected ecosystem with available tools, run sensors in order:
Linter (if available and not --typecheck/--coverage only):
node "$PLUGIN_DIR/sensors/run-sensors.js" "<lint_cmd>" "<parser>" "lint" "required" 30
Type checker (if available and not --lint/--coverage only):
node "$PLUGIN_DIR/sensors/run-sensors.js" "<typecheck_cmd>" "<parser>" "typecheck" "required" 60
Coverage (if available and not --lint/--typecheck only):
Run test command with coverage flag appended.
Show results in a clear format: