CtrlK
BlogDocsLog inGet started
Tessl Logo

tessleng/skill-insights

Scan a directory or workspace for SKILL.md files across all agents and repos, capture supporting files (references, scripts, linked docs), dedupe vendored copies, enrich each Tessl tile with registry signals, and emit a canonical JSON inventory validated by JSON Schema. Then run four analytical phases in parallel against the inventory — staleness + git provenance (history, broken refs, contributors), quality (Tessl `skill review`), duplicates (similarity + LLM judgement), registry-search (per-standalone-skill registry suggestions, HTTP only) — and render a self-contained interactive HTML report with a top-of-report health overview, top-issues panel, recently-changed list, and per-tessl.json manifests view.

84

1.44x
Quality

90%

Does it follow best practices?

Impact

97%

1.44x

Average score across 2 eval scenarios

SecuritybySnyk

Advisory

Suggest reviewing before use

Overview
Quality
Evals
Security
Files

README.mdreferences/schemas/

Skill Insights — Schemas

JSON Schema definitions for every phase output and cross-phase intermediate produced by the skill-insights pipeline. Each phase script validates inputs and outputs against these schemas at the IO boundary; bad shape aborts the run before downstream phases can read it.

Files

FileSchemaProduced byConsumed by
[discovery.schema.json](discovery.schema.json)1.3discover-skills/scripts/discover_skills.pyevery analytical phase
[staleness.schema.json](staleness.schema.json)1.1analyze-skill-staleness/scripts/analyze_staleness.pyrender step
[quality.schema.json](quality.schema.json)2.0analyze-skill-quality/scripts/analyze_quality.pyrender step
[duplicates.schema.json](duplicates.schema.json)1.0detect-skill-duplicates/scripts/finalize_duplicates.pyrender step
[registry-search.schema.json](registry-search.schema.json)1.2registry-search/scripts/registry_search.pyrender step
[duplicates-prompts-index.schema.json](duplicates-prompts-index.schema.json)1.0detect-skill-duplicates/scripts/prepare_duplicates.py (writes index.json)duplicate-judge subagents and finalize_duplicates.py (read it)
[duplicate-verdict.schema.json](duplicate-verdict.schema.json)each duplicate-judge subagent (one verdict per pair)finalize_duplicates.py
[org-usage.schema.json](org-usage.schema.json)1.3posthog-skill-query/scripts/fetch_org_usage.pycross-reference / render step (also linked from posthog-skill-query/SKILL.md)

Validator

[_validate.py](_validate.py) is the shared helper used by every phase script. It:

  • imports jsonschema if available; otherwise prints a single stderr warning and skips validation (preserves the stdlib-only fallback that the rest of the pipeline aims for)
  • caches schemas across calls
  • formats validation errors as one concise line per error with the JSON Pointer-style path
  • runs strict by default (failing fast with SystemExit(2) so downstream phases never read malformed output) but supports a strict=False mode used for per-pair duplicate verdicts, where one bad subagent shouldn't abort the whole run

How this directory is bundled

This README is linked from skills/discover-skills/SKILL.md, so Tessl's graph traversal (markdown-link reachability from manifest entrypoints) reaches it and pulls in every file linked from here — the JSON schemas and _validate.py. If you add a new schema, link it from this README so it ends up in the published tile.

README.md

tile.json