opencode-sa-assistant 0.2.8 → 0.2.9

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/package.json +1 -1
  2. package/src/index.ts +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-sa-assistant",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "description": "OpenCode plugin for AWS Solutions Architect assistant with multi-agent Guru system",
package/src/index.ts CHANGED
@@ -28,7 +28,10 @@ export const SaAssistantPlugin: Plugin = async (ctx) => {
28
28
  };
29
29
  }
30
30
 
31
- console.log(`[SA Assistant] Registered ${SA_AGENTS.length} agents via config hook`);
31
+ console.log(`[SA Assistant] Registered ${SA_AGENTS.length} agents via config hook:`,
32
+ SA_AGENTS.map(a => a.name).join(", "));
33
+
34
+ return config; // IMPORTANT: Return modified config
32
35
  },
33
36
 
34
37
  "chat.message": chatMessageHook,