pi-soly 1.11.1 → 1.11.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/index.ts +13 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -746,4 +746,17 @@ export default function solyExtension(pi: ExtensionAPI) {
746
746
 
747
747
  // Mount built-in sub-features
748
748
  piAskExtension(pi);
749
+
750
+ // MCP adapter (was: separate pi-mcp-adapter plugin by nicobailon).
751
+ // Bundled into pi-soly as of v1.11.0 with UE5 session-retry fix + framed
752
+ // notifications + compact per-server status footer.
753
+ // We import dynamically because mcp/ has heavy deps (modelcontextprotocol/sdk)
754
+ // and we want soly to still load if MCP fails for any reason.
755
+ void import("./mcp/index.ts").then((m) => {
756
+ try {
757
+ m.default(pi);
758
+ } catch (err) {
759
+ console.error("[soly] MCP adapter failed to initialize:", err);
760
+ }
761
+ });
749
762
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-soly",
3
- "version": "1.11.1",
3
+ "version": "1.11.2",
4
4
  "description": "Project management + workflow engine for pi-coding-agent. Plans, state, MANDATORY rules, multi-question picker — one npm install, zero config. LLM is the executor (no subagent layer).",
5
5
  "type": "module",
6
6
  "main": "index.ts",