scythe-context-mcp 0.1.1 → 0.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/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ This project follows semantic versioning before npm publication where practical.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.2] - 2026-06-13
10
+
11
+ ### Fixed
12
+
13
+ - Ensure the npm bin entrypoint is executable so `npx -y scythe-context-mcp` works on Unix-like environments.
14
+
9
15
  ## [0.1.1] - 2026-06-13
10
16
 
11
17
  ### Added
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- export const PACKAGE_VERSION = "0.1.1";
1
+ export const PACKAGE_VERSION = "0.1.2";
2
2
  export function parseCliArgs(args) {
3
3
  if (args.length === 0)
4
4
  return { kind: "serve" };
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scythe-context-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local MCP context engine for Codex with Gemini Embedding 2 support.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -34,13 +34,13 @@
34
34
  ".env.example"
35
35
  ],
36
36
  "scripts": {
37
- "build": "tsc -p tsconfig.json",
37
+ "build": "tsc -p tsconfig.json && node scripts/bin-mode.mjs ensure",
38
38
  "dev": "tsx src/index.ts",
39
39
  "prepack": "npm run build",
40
40
  "smoke": "node dist/index.js --version && node dist/index.js --help",
41
41
  "test": "vitest run",
42
42
  "typecheck": "tsc -p tsconfig.json --noEmit",
43
- "verify": "npm test && npm run build && npm run smoke && npm audit --omit=dev && npm pack --dry-run"
43
+ "verify": "npm test && npm run build && node scripts/bin-mode.mjs check && npm run smoke && npm audit --omit=dev && npm pack --dry-run"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=24.11.0 <27"