You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MCP server starts disabled — Every other tool in the installer configures MCP as ready-to-use. OpenCode starts with enabled = $false, which is inconsistent UX. Consider enabling by default to match other tools, or document why it's different.
Missing instruction file — Other tools get instruction markdown files (CLAUDE.md, CURSOR.md, etc.) written by Write-InstructionFiles. OpenCode should get an equivalent if the tool supports it.
Context
PR #386 adds OpenCode support to
install.ps1— nice community contribution from @Pitusiray. A few follow-up items to round it out:Improvements needed
Whitespace consistency — PR uses tabs in some places where the rest of
install.ps1uses spaces. Should be normalized before merge.install.shcounterpart — Update install.ps1 to include OpenCode support #386 only covers Windows. Linux/Mac users should get the same OpenCode support ininstall.sh(detection, MCP config, skills path).MCP server starts disabled — Every other tool in the installer configures MCP as ready-to-use. OpenCode starts with
enabled = $false, which is inconsistent UX. Consider enabling by default to match other tools, or document why it's different.Missing instruction file — Other tools get instruction markdown files (
CLAUDE.md,CURSOR.md, etc.) written byWrite-InstructionFiles. OpenCode should get an equivalent if the tool supports it.Related