@psnext/slingcli 2.4.20260525-2 → 2.4.20260525-4
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 +20 -11
- package/bin/sling.js +4 -0
- package/node_modules/@babel/runtime/package.json +1 -1
- package/package.json +2 -2
- package/slingshot/index.js +150 -151
package/README.md
CHANGED
|
@@ -58,28 +58,37 @@ sling
|
|
|
58
58
|
|
|
59
59
|
| Sling Command | Description |
|
|
60
60
|
| ------------------- | ---------------------------------------- |
|
|
61
|
-
| `/s:debug`
|
|
62
|
-
| `/s:footer`
|
|
63
|
-
| `/s:skills-manager | Open Skill Manager |
|
|
64
|
-
| `/s:filechanges | Toggle file changes tracking |
|
|
65
|
-
| `/s:context | Visualize context |
|
|
66
|
-
| `/s:acm | Toggle Agentic Context Management |
|
|
61
|
+
| `/s:debug` | Toggle Slingshot debug logging |
|
|
62
|
+
| `/s:footer` | Toggle custom footer with Slingshot info |
|
|
63
|
+
| `/s:skills-manager` | Open Skill Manager |
|
|
64
|
+
| `/s:filechanges` | Toggle file changes tracking |
|
|
65
|
+
| `/s:context` | Visualize context |
|
|
66
|
+
| `/s:acm` | Toggle Agentic Context Management |
|
|
67
67
|
|
|
68
68
|
## Available models
|
|
69
69
|
|
|
70
70
|
| Model | Reasoning |
|
|
71
71
|
| -------------------------- | --------- |
|
|
72
|
-
|
|
|
73
|
-
|
|
|
74
|
-
| claude-sonnet-4-5@20250929 | Yes |
|
|
72
|
+
| gpt-5.4-nano | Yes |
|
|
73
|
+
| gpt-4.1 | No |
|
|
75
74
|
| gpt-5 | Yes |
|
|
75
|
+
| gpt-5-mini | Yes |
|
|
76
|
+
| gpt-5-nano | Yes |
|
|
76
77
|
| gpt-5.1 | Yes |
|
|
77
78
|
| gpt-5.2 | Yes |
|
|
79
|
+
| gpt-5.4-mini | Yes |
|
|
78
80
|
| gpt-5.4 | Yes |
|
|
79
81
|
| gpt-5.5 | Yes |
|
|
80
|
-
| gpt-
|
|
82
|
+
| gpt-5.2-codex | Yes |
|
|
83
|
+
| gpt-5.3-codex | Yes |
|
|
84
|
+
| claude-opus-4@20250514 | Yes |
|
|
85
|
+
| claude-sonnet-4@20250514 | Yes |
|
|
86
|
+
| claude-sonnet-4-5@20250929 | Yes |
|
|
87
|
+
| claude-sonnet-4-6 | Yes |
|
|
88
|
+
| claude-opus-4-6 | Yes |
|
|
81
89
|
| o3 | Yes |
|
|
82
|
-
|
|
|
90
|
+
| o3-mini | Yes |
|
|
91
|
+
| o4-mini | Yes |
|
|
83
92
|
| gemini-2.5-flash | Yes |
|
|
84
93
|
|
|
85
94
|
## Environment variables
|
package/bin/sling.js
CHANGED
|
@@ -353,6 +353,8 @@ async function promptInstallScopeIfNeeded(args) {
|
|
|
353
353
|
|
|
354
354
|
function updateSettings() {
|
|
355
355
|
const configPath = path.resolve(homedir(), ".sling/agent/settings.json");
|
|
356
|
+
mkdirSync(path.dirname(configPath), { recursive: true });
|
|
357
|
+
|
|
356
358
|
let config = { customItems: [] };
|
|
357
359
|
if (existsSync(configPath)) {
|
|
358
360
|
try {
|
|
@@ -361,6 +363,8 @@ function updateSettings() {
|
|
|
361
363
|
console.error("Failed to update settings.json:", err.message);
|
|
362
364
|
}
|
|
363
365
|
}
|
|
366
|
+
config.enableInstallTelemetry = false;
|
|
367
|
+
|
|
364
368
|
config.powerline ={...{
|
|
365
369
|
"preset": "default",
|
|
366
370
|
"customItems": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@psnext/slingcli",
|
|
3
|
-
"version": "2.4.20260525-
|
|
3
|
+
"version": "2.4.20260525-4",
|
|
4
4
|
"description": "Connects Sling CLI to Publicis Sapient Slingshot enterprise LLM gateway. Bundles the pi coding-agent runtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"type": "git",
|
|
30
30
|
"url": "git+https://pscode.lioncloud.net/psaiproducts/slingcli.git"
|
|
31
31
|
},
|
|
32
|
-
"slingVersion": "2.4.20260525-
|
|
32
|
+
"slingVersion": "2.4.20260525-4",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@earendil-works/pi-tui": "file:../.sling-pack/earendil-works-pi-tui-0.75.4.tgz",
|
|
35
35
|
"@earendil-works/pi-ai": "file:../.sling-pack/earendil-works-pi-ai-0.75.4.tgz",
|