.claude/skills/ecosystem-integrity-scanner/SKILL.md
Deeply analyzes Agent Studio framework structural health: catching phantom require() references, wrong module depth paths, missing skill/agent dependencies, bloated configurations, archived references in active code, stale catalog counts, and empty tool/skill directories.
npx skillsauth add oimiragieo/agent-studio ecosystem-integrity-scannerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automated structural integrity scanner for the entire Agent Studio framework.
Catches issues that silently break agent workflows: wrong require() paths that
crash at runtime, phantom skills referenced in agent frontmatter that don't exist
on disk, stale agent registry counts, archived references still active in
production code, UTF-16 encoding that breaks parsers, and bloated agent configs.
Core principle: Framework structural issues are pre-production bugs. A phantom
skill reference means an agent will fail silently. A broken require() means a hook
crashes at the wrong moment. The scanner enforces zero-tolerance for these.
Skill({ skill: 'ecosystem-integrity-scanner' });
Invoke proactively after:
Invoke before starting this skill:
| Skill | Purpose | When |
| -------------------------------- | ------------------------------ | -------------------- |
| task-management-protocol | Track scan progress | Always |
| ripgrep | Fast targeted code search | When investigating |
| code-semantic-search | Concept discovery | When pattern hunting |
| context-compressor | Compress large audit results | When output is large |
| verification-before-completion | Gate completion on zero errors | Before marking done |
| memory-search | Check prior audit patterns | At start |
Always run from project root. validate-ecosystem-integrity.cjs resolves all
paths relative to process.cwd(). Running from a subdirectory corrupts all path
resolution. Never invoke from a non-root directory.
Never ignore PHANTOM_REQUIRE errors. A [PHANTOM_REQUIRE] error means a hook
or script will throw MODULE_NOT_FOUND at runtime. These always represent real
breakage — no false positives once the scanner is properly calibrated.
Never mark scan complete while errors > 0. Warnings are advisory; errors are blocking. Report path and severity but do not call the pipeline done until errors reach zero or are explicitly accepted as known exceptions with owner annotation.
Always route HIGH errors to specialist agents. Phantom skills → qa agent.
Broken require() → developer agent. Archive refs in production → developer.
Never attempt to remediate complex structural failures inline without delegation.
Always save the audit report before completing. Write the categorized findings
to .claude/context/reports/qa/ecosystem-integrity-report-{ISO-date}.md before
calling TaskUpdate(completed). Evidence must persist across context resets.
| Anti-Pattern | Risk | Correct Approach |
| ----------------------------------------------------- | -------------------------------------------------------------- | --------------------------------------------------------- |
| Treating [STALE_CATALOG] as informational noise | Registry drifts from reality; agents get wrong counts | Always update agent-registry.json when agent files change |
| Skipping scan after bulk framework batch ops | Batch ops most commonly create phantom refs | Run scan as the FINAL step of every batch operation |
| Manually patching require() paths without re-scanning | One fix may mask three new breaks | Always re-run full scan after patching paths |
| Running scanner against _archive/ subtrees | Archive content has intentionally broken refs; false positives | Scanner skip rules handle this; trust the skip list |
| Adding to DYNAMIC_SCRIPT_GENERATORS without review | Accidentally suppressing real phantom detections | Only add files that provably generate child scripts |
node scripts/validation/validate-ecosystem-integrity.cjs
The script performs six targeted checks:
[PHANTOM_REQUIRE] — Broken require() / import paths that resolve to
non-existent files (after trying .js, .cjs, .mjs, .json extensions).[PHANTOM_SKILL] — Skills listed in agent frontmatter skills: arrays that
have no corresponding .claude/skills/{name}/ directory.[EMPTY_DIR] — Empty directories in .claude/tools/ or .claude/skills/
that indicate abandoned scaffolding creating registry footprinting issues.[ENCODING] — Files with UTF-16 BOM (0xFEFF/0xFFFE) that break JSON/MD
parsers silently.[ARCHIVED_REF] — Production .claude/ code that still references
_archive/ or .claude/archive/ paths — active code pointing at dead modules.[STALE_CATALOG] — agent-registry.json entry count differs from actual
agent .md file count on disk (drift between manifest and reality).Parse outputs into a structured report at
.claude/context/reports/qa/ecosystem-integrity-report-{ISO-date}.md:
# Ecosystem Integrity Report
<!-- Agent: qa | Task: #{id} | Session: {date} -->
**Date:** YYYY-MM-DD
**Overall Status:** PASS / FAIL
**Errors:** N | **Warnings:** N
## HIGH — Runtime Blocking (must fix before deployment)
- `[PHANTOM_REQUIRE]` — Module resolution failures that crash hooks/scripts
- `[PHANTOM_SKILL]` — Missing skills that break agent workflows silently
## MEDIUM — Structural Integrity (fix in current sprint)
- `[ARCHIVED_REF]` — Active code pointing at archived/dead modules
- `[STALE_CATALOG]` — Registry count mismatch with actual agent files
## LOW — Housekeeping (fix in next maintenance window)
- `[EMPTY_DIR]` — Ghost directories creating registry noise
- `[ENCODING]` — UTF-16 files that may break parsers
Delegate fixes to the correct specialist:
| Error Type | Spawn Agent | Task Description |
| ------------------- | ----------- | --------------------------------------- |
| [PHANTOM_REQUIRE] | developer | Fix broken require() path in {file} |
| [PHANTOM_SKILL] | qa | Remove or create missing skill {name} |
| [ARCHIVED_REF] | developer | Replace archive reference in {file} |
| [STALE_CATALOG] | developer | Regenerate agent-registry.json |
| [EMPTY_DIR] | developer | Remove empty directory {path} |
| [ENCODING] | developer | Re-encode {file} as UTF-8 |
After fixes, re-run the scanner and verify errors reach zero before completion.
Before starting:
cat .claude/context/memory/learnings.md
cat .claude/context/memory/issues.md
Review prior audit patterns and known suppressed false positives.
After completing:
.claude/context/memory/learnings.md.claude/context/memory/decisions.md.claude/context/memory/issues.mdAssume interruption: If the audit report isn't saved to disk, it didn't happen.
tools
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
tools
Comprehensive toolkit for creating, analyzing, and visualizing complex networks and graphs in Python. Use when working with network/graph data structures, analyzing relationships between entities, computing graph algorithms (shortest paths, centrality, clustering), detecting communities, generating synthetic networks, or visualizing network topologies. Applicable to social networks, biological networks, transportation systems, citation networks, and any domain involving pairwise relationships.
data-ai
Molecular featurization for ML (100+ featurizers). ECFP, MACCS, descriptors, pretrained models (ChemBERTa), convert SMILES to features, for QSAR and molecular ML.
development
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.