workspace
Installation
SKILL.md
When to use this skill
- You want to run a Taskfile target or check git status/log/diff.
- You need to find the test file for a source file.
- You want a compact test failure report for a changed file.
How to use
- Build workspace:
cd mcp/workspace && go test ./... && go build. - Add the binary to your MCP client config as
workspace. - Call
task_listto see targets andtask_run {name}to execute. - Use
find_test {file}andtest_triage {file}for test workflows.
Examples
- "Run the
testtarget for this repo." - "Show the git status and recent log."
- "Find and run the tests for
internal/mcp/server.go."