Installation¶
Prerequisites¶
- Go 1.21 or later (for building from source)
- Git (for cloning the repository)
Install with Go¶
The simplest way to install prdtool:
This installs the prdtool binary to your $GOPATH/bin directory.
Build from Source¶
Clone and build both the CLI and MCP server:
git clone https://github.com/agentplexus/agent-team-prd.git
cd agent-team-prd
# Build CLI
go build -o bin/prdtool ./cmd/prdtool
# Build MCP server (for AI assistant integrations)
go build -o bin/prdtool-mcp ./cmd/prdtool-mcp
Verify Installation¶
Shell Completion¶
Generate shell completion scripts for your shell:
MCP Server Installation¶
The MCP server (prdtool-mcp) is required for AI assistant integrations. Build it alongside the CLI:
Place the binary in a location accessible to your AI assistant. See Claude Code Integration or Kiro IDE Integration for setup instructions.
Updating¶
To update to the latest version:
Or if building from source: