@koriit/opencode-claude-bridge 0.1.1 → 0.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koriit/opencode-claude-bridge",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "An OpenCode plugin that bridges enabled Claude Code plugins (commands, agents, skills, MCP, LSP) into OpenCode at runtime, namespaced so they never shadow your existing items.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -455,12 +455,12 @@ export async function injectSkills(
455
455
 
456
456
  const skillsCfg = guardSkillsConfig(mutableCfg)
457
457
 
458
- // Warn about URL-sourced skills — their names are not knowable at hook time
459
- // without triggering the lazy Skill-service fetch (§6.3).
458
+ // Note (not a warning): URL-sourced skill names aren't knowable at hook time
459
+ // without triggering the lazy Skill-service fetch (§6.3). The bridge proceeds
460
+ // without collision-detection for those skills — a normal, acceptable limitation.
460
461
  if (skillsCfg.urls.length > 0) {
461
- logger.warn(
462
+ logger.info(
462
463
  "cfg.skills.urls is non-empty; URL-sourced skill names are not available at hook time — bridge cannot detect collisions against URL-sourced skills",
463
- { fatalInStrict: false },
464
464
  )
465
465
  }
466
466