psycgod-sage 2.6.0 → 2.6.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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ensurePythonSage, findPython, runPythonSage, setupPythonSage, showPythonSageApiStatus } from './python/bridge.js';
2
- export declare const VERSION = "2.6.0";
2
+ export declare const VERSION = "2.6.1";
3
3
  export declare const PYPI_PACKAGE = "psycgod-sage";
4
4
  export declare const NPM_RUN_PREFIX = "npx -y psycgod-sage run --";
5
5
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ensurePythonSage, findPython, runPythonSage, setupPythonSage, showPythonSageApiStatus } from './python/bridge.js';
2
- export const VERSION = '2.6.0';
2
+ export const VERSION = '2.6.1';
3
3
  export const PYPI_PACKAGE = 'psycgod-sage';
4
4
  export const NPM_RUN_PREFIX = 'npx -y psycgod-sage run --';
5
5
  //# sourceMappingURL=index.js.map
@@ -1,4 +1,4 @@
1
- export declare const EXPECTED_SAGE_VERSION = "2.6.0";
1
+ export declare const EXPECTED_SAGE_VERSION = "2.6.1";
2
2
  interface PythonCommand {
3
3
  command: string;
4
4
  prefixArgs: string[];
@@ -1,6 +1,6 @@
1
1
  import { spawnSync } from 'child_process';
2
2
  import { existsSync, statSync } from 'fs';
3
- export const EXPECTED_SAGE_VERSION = '2.6.0';
3
+ export const EXPECTED_SAGE_VERSION = '2.6.1';
4
4
  const PYTHON_CANDIDATES = [
5
5
  ...(process.env.PYTHON ? [{ command: process.env.PYTHON, prefixArgs: [] }] : []),
6
6
  { command: 'python', prefixArgs: [] },
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "psycgod-sage",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
+ "mcpName": "io.github.PsYcGoD/sage",
4
5
  "mcpName": "io.github.PsYcGoD/sage",
5
6
  "description": "npm/npx launcher for the canonical PyPI SAGE CLI wrapper for AI coding agents",
6
7
  "author": "PsYcGoD",