resources/opencode
An interactive CLI agent that helps with software engineering tasks directly from your terminal. OpenCode runs in a persistent shell, understands your codebase, and can autonomously execute multi-step workflows.
Themes
OpenCode supports customizable UI themes that adapt to your terminal color scheme and personal preferences.
opencode
┌ opencode --agent explore "Find all TODO comments"
│
│ Found 3 TODO comments in your project:
// src/app/page.tsx:15
const result = await fetchData("/api/users");
// TODO: add error handling <--
└
>
opencode
┌ opencode "Add error handling to fetchData"
│
│ I will add a try/catch block:
const result = await fetchData("/api/users");
if (!result.ok) throw new Error("Request failed");
│ Changes applied to src/app/page.tsx
└
>
opencode
┌ opencode "Run tests and report"
│
│$ npm run test -- --coverage
│ ✓ 42 passed, 0 failed
│ ✓ Coverage: 94%
│
│ ✗ 1 flaky test detected
│ src/tests/api.spec.ts:87 — timeout > 5s
└
>
opencode
┌ opencode --help
│
│ Available commands:
│ explore Search & analyze codebase
│ edit Read-write-edit files
│ run Execute shell commands
│ ask Ask questions about code
│ config View or edit configuration
└
>
opencode
Ask anything... 'Fix broken tests'
BuildDeepSeek V4 Flashmax
Installation
You can install Xscriptor themes for OpenCode in several ways, depending on your workflow and preferences.
Remote Install
curl -fsSL https://raw.githubusercontent.com/xscriptor/opencode/main/themes/xscriptor-themes/install.sh | bashDownload & Install
git clone https://github.com/opencode/themes/xscriptor-themes.git
cd xscriptor-themes
opencode themes install .Manual Setup
# Copy theme files to your OpenCode config directory
cp -r ./themes ~/.config/opencode/themes/