See agent_docs/README.md for full documentation.
plan-tui can be configured using a YAML file located at ~/.planner/config.yml.
Example ~/.planner/config.yml for Gemini:
plans_dir: "~/.planner/plans"
llm:
provider: "gemini"
model: "gemini-3.1-flash-lite-preview"
api_key: "YOUR_API_KEY_HERE"Example ~/.planner/config.yml for GitHub Copilot:
plans_dir: "~/.planner/plans"
llm:
provider: "copilot"
model: "claude-sonnet-4.5"Example ~/.planner/config.yml for opencode:
plans_dir: "~/.planner/plans"
llm:
provider: "opencode"
model: "google/gemini-3.1-pro-preview"If configured, the planner automatically fetches content from Jira or Confluence URLs found in tasks or details.
atlassian:
base_url: "https://your-atlassian-instance.atlassian.net"
user: "your-email@example.com"
api_key: "YOUR_API_TOKEN_HERE"Example usage:
./bin/plan-tui "Implement task from https://your-atlassian-instance.atlassian.net/browse/PROJ-123"See agent_docs/config.md for full configuration options.