@gethmy/mcp 2.1.0 → 2.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/README.md +5 -0
- package/dist/cli.js +1977 -1573
- package/dist/index.js +16 -0
- package/dist/lib/api-client.js +2 -0
- package/dist/lib/cli.js +2 -0
- package/dist/lib/context-assembly.js +21 -0
- package/dist/lib/skills.js +569 -0
- package/dist/lib/tui/docs.js +207 -21
- package/dist/lib/tui/setup.js +4 -308
- package/package.json +5 -4
- package/src/api-client.ts +6 -0
- package/src/cli.ts +2 -0
- package/src/context-assembly.ts +21 -0
- package/src/skills.ts +607 -0
- package/src/tui/docs.ts +241 -28
- package/src/tui/setup.ts +4 -311
package/README.md
CHANGED
|
@@ -20,6 +20,11 @@ Enables AI coding agents (Claude Code, OpenAI Codex, Cursor, Windsurf) to intera
|
|
|
20
20
|
- **Smart Setup** - one command configures everything
|
|
21
21
|
- **API Key Authentication** - no database credentials required
|
|
22
22
|
|
|
23
|
+
## Prerequisites
|
|
24
|
+
|
|
25
|
+
- [Node.js](https://nodejs.org) >= 20 or [Bun](https://bun.sh) >= 1.0
|
|
26
|
+
- A [Harmony](https://gethmy.com) account with an API key
|
|
27
|
+
|
|
23
28
|
## Quick Start
|
|
24
29
|
|
|
25
30
|
### 1. Get an API Key
|