Skip to content

Instantly share code, notes, and snippets.

View ShamanicArts's full-sized avatar

Lucas Shamanic ShamanicArts

View GitHub Profile
@ShamanicArts
ShamanicArts / awesome.ts
Created January 22, 2026 02:19
awesome-opencode browser plugin - browse plugins, agents, themes from awesome-opencode collection
import type { Plugin } from "@opencode-ai/plugin"
interface AwesomeEntry {
name: string
repo: string
tagline: string
description: string
homepage?: string
installation?: string
tags?: string[]
@ShamanicArts
ShamanicArts / dialog-test.ts
Created January 22, 2026 00:53
Dialog API test plugin for opencode PR #9910
/**
* Dialog Test Plugin
*
* Template plugin demonstrating various dialog patterns for plugin developers.
* Each handler shows a different approach to using the dialog API.
*/
import type { Plugin } from "@opencode-ai/plugin"
export const dialogTestPlugin: Plugin = async ({ client, dialog }) => {
return {