@testchimp/cli 0.1.0 → 0.1.1

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
@@ -33,8 +33,6 @@ Example `mcpServers.testchimp`:
33
33
 
34
34
  The config **file path** depends on the host (e.g. Cursor often uses `<repo>/.cursor/mcp.json`). Tool names use **kebab-case** (e.g. `get-requirement-coverage`, `create-user-story`).
35
35
 
36
- Legacy binary: **`testchimp-mcp`** runs the same MCP server as `testchimp mcp`.
37
-
38
36
  ## CLI
39
37
 
40
38
  ```bash
@@ -1,3 +1,3 @@
1
1
  import { Command } from "commander";
2
- export declare const PACKAGE_VERSION = "0.1.0";
2
+ export declare const PACKAGE_VERSION = "0.1.1";
3
3
  export declare function buildCliProgram(): Command;
@@ -5,7 +5,7 @@ import { DEFAULT_BACKEND, postMcp } from "../core/client.js";
5
5
  import { deepMerge } from "../core/merge.js";
6
6
  import { runTool } from "../core/tools.js";
7
7
  import { TOOL_DEFINITIONS } from "../core/tools.js";
8
- export const PACKAGE_VERSION = "0.1.0";
8
+ export const PACKAGE_VERSION = "0.1.1";
9
9
  function parseJsonInput(raw) {
10
10
  if (raw == null || raw.trim() === "")
11
11
  return {};
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@testchimp/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TestChimp CLI and MCP server — coverage, plans, EaaS, TrueCoverage (calls /api/mcp/*)",
5
5
  "type": "module",
6
6
  "main": "dist/bin/testchimp.js",
7
7
  "types": "dist/bin/testchimp.d.ts",
8
8
  "bin": {
9
- "testchimp": "dist/bin/testchimp.js",
10
- "testchimp-mcp": "dist/bin/legacy-mcp.js"
9
+ "testchimp": "dist/bin/testchimp.js"
11
10
  },
12
11
  "files": [
13
12
  "dist/"