psycgod-sage 1.0.23 → 1.0.25

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
@@ -9,15 +9,15 @@ and PyPI behavior stay identical. ML V1 is included. ML V2 remains optional.
9
9
 
10
10
  ```bash
11
11
  npm install -g psycgod-sage
12
- npx -y psycgod-sage activate
12
+ npx -y psycgod-sage install
13
13
  ```
14
14
 
15
- `activate` is compulsory before you expect Claude, Codex, Cursor, Windsurf, OpenCode, Cline, or other AI agents to use SAGE automatically. It writes/repairs local AI-agent memory files and supported shell-wrapper hooks, then prints a verification report. It does **not** auto-enable SAGE MCP. Restart open AI-agent sessions after activation.
15
+ `install` is the explicit one-command onboarding step before you expect Claude, Codex, Cursor, Windsurf, OpenCode, Cline, or other AI agents to use SAGE automatically. It connects this machine, writes/repairs local AI-agent memory files and supported shell-wrapper hooks, then prints a verification report. It does **not** auto-enable SAGE MCP. Restart open AI-agent sessions after install.
16
16
 
17
17
  One-shot npx usage:
18
18
 
19
19
  ```bash
20
- npx -y psycgod-sage activate
20
+ npx -y psycgod-sage install
21
21
  npx -y psycgod-sage run -- npm test
22
22
  ```
23
23
 
@@ -25,14 +25,14 @@ Equivalent Python install:
25
25
 
26
26
  ```bash
27
27
  pip install psycgod-sage
28
- sage activate
28
+ sage install
29
29
  sage run -- npm test
30
30
  ```
31
31
 
32
32
  ## Usage
33
33
 
34
34
  ```bash
35
- npx -y psycgod-sage activate
35
+ npx -y psycgod-sage install
36
36
  npx -y psycgod-sage run -- npm test
37
37
  npx -y psycgod-sage history
38
38
  npx -y psycgod-sage explain --failed
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 = "1.0.14";
2
+ export declare const VERSION = "1.0.25";
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 = '1.0.14';
2
+ export const VERSION = '1.0.25';
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "psycgod-sage",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "mcpName": "io.github.PsYcGoD/sage",
5
5
  "description": "npm/npx launcher for the canonical PyPI SAGE CLI wrapper for AI coding agents",
6
6
  "author": "PsYcGoD",