Smithery Logo
MCPsSkillsDocsPricing
Login
NewFlame, an assistant that learns and improves. Available onTelegramSlack
    unknownbreaker

    validate-schema

    unknownbreaker/validate-schema
    Coding
    1

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─
    Smithery Logo

    Give agents more agency

    Resources

    DocumentationPrivacy PolicySystem Status

    Company

    PricingAboutBlog

    Connect

    © 2026 Smithery. All rights reserved.

    About

    Validate TCL AST against Lua schema definitions

    SKILL.md

    Usage

    • /validate-schema - Validate all fixture files against schema
    • /validate-schema <file.tcl> - Validate a specific TCL file

    What This Does

    This skill validates that the TCL parser output conforms to the expected AST schema defined in Lua. It helps detect serialization drift between the TCL and Lua components.

    Implementation

    1. Parse TCL file(s) with the TCL parser to get JSON AST
    2. Validate the JSON against lua/tcl-lsp/parser/schema.lua
    3. Report any schema violations with paths and error messages

    Commands

    # Validate all fixtures
    ./scripts/validate-schema.sh
    
    # Validate specific file
    ./scripts/validate-schema.sh path/to/file.tcl
    
    # Run via make
    make validate-schema
    

    Output

    • OK: File validates successfully against schema
    • ERROR: Schema violation found with path and message

    Example

    $ /validate-schema
    
    [INFO] Starting schema validation...
    [INFO] Valid: basic.tcl
    [INFO] Valid: procedures.tcl
    [ERROR] Validation failed: namespace.tcl
      ERROR: Missing required field 'name' for node type 'namespace' at root.children[1]
    [ERROR] Schema validation failed: 1/3 file(s) with drift
    
    Recommended Servers
    vastlint - IAB XML VAST validator and linter
    vastlint - IAB XML VAST validator and linter
    VAT Validator MCP
    VAT Validator MCP
    Bizfile MCP — Global Company Intelligence
    Bizfile MCP — Global Company Intelligence
    Repository
    unknownbreaker/tcl-lsp.nvim
    Files