@plannotator/opencode 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2799,6 +2799,11 @@ var PlannotatorPlugin = async (ctx) => {
2799
2799
  }
2800
2800
  return {
2801
2801
  "experimental.chat.system.transform": async (_input, output) => {
2802
+ const existingSystem = output.system.join(`
2803
+ `).toLowerCase();
2804
+ if (existingSystem.includes("title generator") || existingSystem.includes("generate a title")) {
2805
+ return;
2806
+ }
2802
2807
  output.system.push(`
2803
2808
  ## Plan Submission
2804
2809
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plannotator/opencode",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Plannotator plugin for OpenCode - interactive plan review with visual annotation",
5
5
  "author": "backnotprop",
6
6
  "license": "BSL-1.1",