@hone-ai/cli 1.18.0 → 1.20.0

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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+ // HC-COMM-012 (A1 P1): entry point for the Hone MCP server (stdio).
4
+ // Registered by the Claude Code plugin's .mcp.json as `npx -y @hone-ai/cli hone-mcp`
5
+ // (or `hone-mcp` once installed). Delegates to ../mcp-server.js `start()`.
6
+ require('../mcp-server.js').start().catch((e) => {
7
+ process.stderr.write(`hone-mcp failed: ${e && e.message ? e.message : String(e)}\n`);
8
+ process.exit(1);
9
+ });