psycgod-sage 1.0.24 → 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 +5 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
|
12
|
+
npx -y psycgod-sage install
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
`
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
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
|