v0.1.5
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 fallbackdevtap drain -q: outputs raw build lines without[devtap: tag]headers or source banners, for agents that prefer undecorated output
Other
FormatMessagesRaw()added to themcppackage for raw line formatting without tag headers- SKILL.md documents MCP tool → CLI subcommand mapping (
get_build_status→devtap status,get_build_errors→devtap drain) - README: added skill installation instructions and
--quietflag documentation