@gethmy/mcp 2.5.5 → 2.5.6

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 CHANGED
@@ -6,7 +6,7 @@ Enables AI coding agents (Claude Code, OpenAI Codex, Cursor) to interact with yo
6
6
  ## Features
7
7
 
8
8
  - **56 MCP Tools** for full board control, knowledge graph, and workflow plans
9
- - **4 Global Skills** — `/hmy`, `/hmy-plan`, `/hmy-cleanup`, `/hmy-standup`, served from the DB-backed [skill hub](../../docs/skills.md) with auto-update and admin-managed versioning
9
+ - **5 Global Skills** — `/hmy`, `/hmy-plan`, `/hmy-cleanup`, `/hmy-standup`, `/hmy-memory-prune`, served from the DB-backed [skill hub](../../docs/skills.md) with auto-update and admin-managed versioning
10
10
  - **Knowledge Graph Memory** — Phase 1 surface: hybrid retrieval (vector + lexical + RRF), session-scoped working memory, activity feed. See [docs/memory.md](../../docs/memory.md)
11
11
  - **GSD Workflow Plans** - plan/execute/verify/done lifecycle with auto card creation
12
12
  - **Card Linking** - create relationships between cards (blocks, relates_to, duplicates, is_part_of)
@@ -154,7 +154,7 @@ npx @gethmy/mcp serve # Start MCP server
154
154
 
155
155
  ## Skills
156
156
 
157
- Four global skills ship with the MCP server and are installed automatically by `npx @gethmy/mcp setup`. They live in the `skill_resource` Postgres table, are fetched via `GET /v1/skills/<name>`, and render-time composed with a shared auto-update preamble.
157
+ Five global skills ship with the MCP server and are installed automatically by `npx @gethmy/mcp setup`. They live in the `skill_resource` Postgres table, are fetched via `GET /v1/skills/<name>`, and render-time composed with a shared auto-update preamble.
158
158
 
159
159
  For the full skill hub architecture (storage, versioning, auto-update, admin management), see [docs/skills.md](../../docs/skills.md).
160
160
 
package/dist/cli.js CHANGED
@@ -5028,7 +5028,7 @@ import { isAbsolute, join as join4, resolve, sep as sep2 } from "node:path";
5028
5028
  import * as p from "@clack/prompts";
5029
5029
 
5030
5030
  // src/tui/theme.ts
5031
- import * as pc from "picocolors";
5031
+ import pc from "picocolors";
5032
5032
  var symbols = {
5033
5033
  harmony: "▲",
5034
5034
  check: "✓",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gethmy/mcp",
3
- "version": "2.5.5",
3
+ "version": "2.5.6",
4
4
  "description": "MCP server for Harmony Kanban board - enables AI coding agents to manage your boards",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/tui/theme.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as pc from "picocolors";
1
+ import pc from "picocolors";
2
2
 
3
3
  /**
4
4
  * Consistent theme for Harmony MCP TUI