Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    mgreenly

    bugs

    mgreenly/bugs
    Coding
    1

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • 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
    ├─
    ├─
    └─

    About

    Known bugs and quirks in dependencies and tools

    SKILL.md

    Bugs

    Known issues, quirks, and workarounds for dependencies and tooling used in the ikigai project.

    lcov Version Reporting Bug

    Issue: The lcov --version command reports an incorrect version string that doesn't match the installed package version.

    Evidence:

    Host system (Debian 13.2):

    • Package version: lcov 2.3.1-1
    • Binary reports: lcov: LCOV version 2.0-1

    Debian 13.2 container:

    • Package version: lcov 2.3.1-1
    • Binary reports: lcov: LCOV version 2.0-1

    Root cause: The version string is hardcoded in /usr/lib/lcov/lcovutil.pm:

    our $VERSION = "2.0-1";
    

    This hardcoded value is not updated when the package version changes.

    Impact:

    • Cannot rely on lcov --version to determine actual lcov version
    • Must use dpkg -l lcov (Debian/Ubuntu) to get true package version
    • Scripts that check lcov version via --version may make incorrect decisions

    Workaround: Use package manager to check version instead of binary:

    dpkg -l lcov | grep lcov  # Shows actual package version
    

    Status: This appears to be an upstream packaging issue in Debian lcov 2.3.1-1.

    Recommended Servers
    Gitlab
    Gitlab
    ClickUp
    ClickUp
    Docfork
    Docfork
    Repository
    mgreenly/ikigai
    Files