AI Configuration
Hyprlayer requires AI tool configuration before initializing thoughts in a repository. This step installs the slash commands and agent files that power the development workflow.
Configure
Section titled “Configure”hyprlayer ai configureThis interactive command will:
- Ask you to select an AI tool (Claude Code, GitHub Copilot, or OpenCode)
- For OpenCode, ask you to select a provider (GitHub Copilot, Anthropic, or Abacus)
- Download and install agent files to the appropriate directory
Where Files Are Installed
Section titled “Where Files Are Installed”| AI Tool | Install Location |
|---|---|
| Claude Code | ~/.claude/ |
| GitHub Copilot | ~/.config/Code/User/ (Linux) or ~/Library/Application Support/Code/User/ (macOS) |
| OpenCode | ~/.config/opencode/ |
The installer creates commands/ and agents/ subdirectories containing the slash command definitions and sub-agent configurations.
OpenCode Providers
Section titled “OpenCode Providers”When using OpenCode, you select a provider that determines which model endpoints are used:
| Provider | Sonnet Model | Opus Model |
|---|---|---|
| GitHub Copilot | github-copilot/claude-sonnet-4.5 | github-copilot/claude-opus-4.5 |
| Anthropic | anthropic/claude-sonnet-4-5 | anthropic/claude-opus-4-5 |
| Abacus | abacus/claude-sonnet-4-5-20250929 | abacus/claude-opus-4-5-20251101 |
Opus models are used for research-heavy commands (/research_codebase, /create_plan, /iterate_plan). Sonnet models are used for everything else.
Check Status
Section titled “Check Status”hyprlayer ai statusShows the current AI tool configuration, installation status, and (for OpenCode) the configured provider and models.
hyprlayer ai status --jsonOutputs status as JSON for scripting.
Reinstall Agent Files
Section titled “Reinstall Agent Files”hyprlayer ai reinstallForce re-downloads and installs agent files. Useful after updating Hyprlayer to get the latest command definitions.
Change AI Tool
Section titled “Change AI Tool”hyprlayer ai configure --forceUse --force to reconfigure after initial setup, for example to switch from Claude Code to OpenCode.
Next Steps
Section titled “Next Steps”After configuring your AI tool, initialize thoughts in a project.