@gethmy/mcp 2.21.0 → 2.22.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.
- package/package.json +4 -3
- package/src/api-client.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gethmy/mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.22.0",
|
|
4
4
|
"description": "MCP server for Harmony Kanban board - enables AI coding agents to manage your boards",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -63,8 +63,9 @@
|
|
|
63
63
|
"build:bun": "bun build src/index.ts src/http.ts src/remote.ts src/cli.ts --outdir dist --target bun",
|
|
64
64
|
"serve:remote": "bun src/remote.ts",
|
|
65
65
|
"dev": "bun --watch src/index.ts",
|
|
66
|
-
"test": "bun run test:unit
|
|
67
|
-
"test:unit": "bun
|
|
66
|
+
"test": "bun run test:unit",
|
|
67
|
+
"test:unit": "bun scripts/test-isolated.mjs",
|
|
68
|
+
"test:unit:fast": "bun test src/__tests__ --path-ignore-patterns='**/integration-*'",
|
|
68
69
|
"test:integration": "bun test src/__tests__/integration-memory-system.test.ts src/__tests__/integration-memory-crud.test.ts",
|
|
69
70
|
"typecheck": "tsc --noEmit",
|
|
70
71
|
"prepublishOnly": "bun run typecheck && bun run build"
|
package/src/api-client.ts
CHANGED
|
@@ -1081,6 +1081,13 @@ export class HarmonyApiClient {
|
|
|
1081
1081
|
currentTask?: string;
|
|
1082
1082
|
blockers?: string[];
|
|
1083
1083
|
estimatedMinutesRemaining?: number;
|
|
1084
|
+
/**
|
|
1085
|
+
* Model the run was spawned with (#819). Persisted to
|
|
1086
|
+
* `card_agent_context.model_name` at session creation so the board's
|
|
1087
|
+
* "Agent Stats" shows the model from run start — previously it stayed
|
|
1088
|
+
* NULL until the terminal cost frame reported the observed model.
|
|
1089
|
+
*/
|
|
1090
|
+
modelName?: string;
|
|
1084
1091
|
},
|
|
1085
1092
|
): Promise<{
|
|
1086
1093
|
session: unknown;
|