This showcase packages OpenCode configuration as a catalog of installable profiles. A profile is a directory that contains operating instructions, agent definitions, skills, themes, and runtime config.
Each installable profile must provide:
AGENTS.md
agents/
skills/
opencode.jsonA profile may also provide:
themes/
tui.jsonThe CLI validates this contract before installing a profile.
Minimal baseline for teams that want OpenCode configured without a heavy workflow model.
Best fit:
- first-time evaluation;
- low-friction onboarding;
- teams that prefer to add their own instructions gradually.
Lightweight starter profile with three core agents:
plan: read-only planning and analysis;build: implementation and validation;explorer: explicit evidence-gathering pass.
Best fit:
- teams adopting agentic workflows for the first time;
- projects that need a shared baseline without strict orchestration;
- workshops or internal enablement sessions.
Direct implementation profile where the primary agents can work in the main thread while specialist agents remain available through explicit user instruction.
Best fit:
- experienced users who want speed and direct control;
- day-to-day feature work;
- small teams that prefer fewer handoffs.
Plan-first workflow with specialized agents for exploration, implementation, testing, debugging, and review.
Best fit:
- complex changes;
- review-heavy workflows;
- teams that want stronger separation between planning and execution.
Educational profile focused on concept breakdown, tutorials, research, and diagrams.
Best fit:
- onboarding;
- architecture explanations;
- learning a new codebase;
- preparing technical documentation.
- Create a new directory under
frameworks/. - Add the required managed entries.
- Keep examples generic and public-safe.
- Avoid credentials, local paths, logs, and generated files.
- Run the CLI tests and sanitization checks before publishing.