Skip to content

v0.1.5

Choose a tag to compare

@killme2008 killme2008 released this 07 Feb 13:46
ff96f6e

What's New

Skill (CLI fallback for non-MCP agents)

devtap now ships a built-in skill at skills/devtap-get-build-errors/. When the MCP server is unavailable, AI agents can invoke the bundled get_build_errors.sh script to fetch pending build output via CLI. The script checks the pending count first and only drains when messages are available.

Install by copying into your tool's skills directory:

mkdir -p ~/.claude/skills && cp -r skills/devtap-get-build-errors ~/.claude/skills/

Quiet mode for status and drain

Both commands now support --quiet / -q:

  • devtap status -q: outputs only the total pending message count as a single number (e.g. 3), useful for scripting and the skill fallback
  • devtap drain -q: outputs raw build lines without [devtap: tag] headers or source banners, for agents that prefer undecorated output

Other

  • FormatMessagesRaw() added to the mcp package for raw line formatting without tag headers
  • SKILL.md documents MCP tool → CLI subcommand mapping (get_build_statusdevtap status, get_build_errorsdevtap drain)
  • README: added skill installation instructions and --quiet flag documentation