From be6cd87147042ce52a22d1403318a9f1c1596b24 Mon Sep 17 00:00:00 2001 From: dbpolito Date: Thu, 2 Apr 2026 18:41:40 -0300 Subject: [PATCH 1/3] chore: add demo note and inline code comment --- DEMO.md | 1 + packages/opencode/index.ts | 1 + 2 files changed, 2 insertions(+) create mode 100644 DEMO.md diff --git a/DEMO.md b/DEMO.md new file mode 100644 index 0000000..ee7a9d2 --- /dev/null +++ b/DEMO.md @@ -0,0 +1 @@ +This is a file i'm using in the demo. GOOD STUFF. diff --git a/packages/opencode/index.ts b/packages/opencode/index.ts index f8b2b5f..1f38231 100644 --- a/packages/opencode/index.ts +++ b/packages/opencode/index.ts @@ -269,6 +269,7 @@ export async function createOpenCodeTools( client: PluginInput["client"], projectRoot: string, ): Promise> { + // this comment is not needed const userConfig = await loadKompassConfig(projectRoot); const config = mergeWithDefaults(userConfig); const tools: Record = {}; From fc6ff3448e8407c30f220d95b111a4bdedff7c59 Mon Sep 17 00:00:00 2001 From: dbpolito Date: Thu, 2 Apr 2026 18:48:31 -0300 Subject: [PATCH 2/3] chore: add note before plugin initialization log --- packages/opencode/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/opencode/index.ts b/packages/opencode/index.ts index 1f38231..861a9f4 100644 --- a/packages/opencode/index.ts +++ b/packages/opencode/index.ts @@ -294,6 +294,7 @@ export const OpenCodeCompassPlugin: Plugin = async (input: PluginInput) => { const { $, client, worktree } = input; const logger = createPluginLogger(client, worktree); + // this comment is not needed await logger.info("Initialized Kompass plugin", { directory: getString(input.directory), worktree: getString(worktree), From 5151aca904952713d72bacb8597f11760a2f8599 Mon Sep 17 00:00:00 2001 From: dbpolito Date: Thu, 2 Apr 2026 18:53:30 -0300 Subject: [PATCH 3/3] chore: remove demo-only opencode comments --- packages/opencode/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/opencode/index.ts b/packages/opencode/index.ts index 861a9f4..f8b2b5f 100644 --- a/packages/opencode/index.ts +++ b/packages/opencode/index.ts @@ -269,7 +269,6 @@ export async function createOpenCodeTools( client: PluginInput["client"], projectRoot: string, ): Promise> { - // this comment is not needed const userConfig = await loadKompassConfig(projectRoot); const config = mergeWithDefaults(userConfig); const tools: Record = {}; @@ -294,7 +293,6 @@ export const OpenCodeCompassPlugin: Plugin = async (input: PluginInput) => { const { $, client, worktree } = input; const logger = createPluginLogger(client, worktree); - // this comment is not needed await logger.info("Initialized Kompass plugin", { directory: getString(input.directory), worktree: getString(worktree),