@psnext/slingcli 2.5.20260718-1 → 2.5.20260719-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.
Files changed (39) hide show
  1. package/bin/sling.js +1 -1
  2. package/node_modules/@earendil-works/pi-ai/dist/providers/data/openrouter.json +1 -1
  3. package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +10 -10
  4. package/node_modules/@earendil-works/pi-coding-agent/docs/compaction.md +396 -0
  5. package/node_modules/@earendil-works/pi-coding-agent/docs/containerization.md +111 -0
  6. package/node_modules/@earendil-works/pi-coding-agent/docs/custom-provider.md +763 -0
  7. package/node_modules/@earendil-works/pi-coding-agent/docs/docs.json +147 -0
  8. package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +2943 -0
  9. package/node_modules/@earendil-works/pi-coding-agent/docs/images/doom-extension.png +0 -0
  10. package/node_modules/@earendil-works/pi-coding-agent/docs/images/exy.png +0 -0
  11. package/node_modules/@earendil-works/pi-coding-agent/docs/images/interactive-mode.png +0 -0
  12. package/node_modules/@earendil-works/pi-coding-agent/docs/images/tree-view.png +0 -0
  13. package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +80 -0
  14. package/node_modules/@earendil-works/pi-coding-agent/docs/json.md +82 -0
  15. package/node_modules/@earendil-works/pi-coding-agent/docs/keybindings.md +198 -0
  16. package/node_modules/@earendil-works/pi-coding-agent/docs/llama-cpp.md +99 -0
  17. package/node_modules/@earendil-works/pi-coding-agent/docs/mcp.md +383 -0
  18. package/node_modules/@earendil-works/pi-coding-agent/docs/models.md +540 -0
  19. package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +228 -0
  20. package/node_modules/@earendil-works/pi-coding-agent/docs/prompt-templates.md +96 -0
  21. package/node_modules/@earendil-works/pi-coding-agent/docs/providers.md +297 -0
  22. package/node_modules/@earendil-works/pi-coding-agent/docs/quickstart.md +165 -0
  23. package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +1480 -0
  24. package/node_modules/@earendil-works/pi-coding-agent/docs/security.md +59 -0
  25. package/node_modules/@earendil-works/pi-coding-agent/docs/session-format.md +422 -0
  26. package/node_modules/@earendil-works/pi-coding-agent/docs/sessions.md +145 -0
  27. package/node_modules/@earendil-works/pi-coding-agent/docs/settings.md +319 -0
  28. package/node_modules/@earendil-works/pi-coding-agent/docs/shell-aliases.md +13 -0
  29. package/node_modules/@earendil-works/pi-coding-agent/docs/skills.md +231 -0
  30. package/node_modules/@earendil-works/pi-coding-agent/docs/terminal-setup.md +142 -0
  31. package/node_modules/@earendil-works/pi-coding-agent/docs/termux.md +127 -0
  32. package/node_modules/@earendil-works/pi-coding-agent/docs/themes.md +297 -0
  33. package/node_modules/@earendil-works/pi-coding-agent/docs/tmux.md +63 -0
  34. package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +942 -0
  35. package/node_modules/@earendil-works/pi-coding-agent/docs/usage.md +311 -0
  36. package/node_modules/@earendil-works/pi-coding-agent/docs/windows.md +17 -0
  37. package/package.json +2 -2
  38. package/sling-default-packages.json +3 -1
  39. package/slingshot/index.js +59 -59
@@ -0,0 +1,147 @@
1
+ {
2
+ "navigation": [
3
+ {
4
+ "title": "Start here",
5
+ "items": [
6
+ {
7
+ "title": "Overview",
8
+ "path": "index.md"
9
+ },
10
+ {
11
+ "title": "Quickstart",
12
+ "path": "quickstart.md"
13
+ },
14
+ {
15
+ "title": "Using sling",
16
+ "path": "usage.md"
17
+ },
18
+ {
19
+ "title": "Providers",
20
+ "path": "providers.md"
21
+ },
22
+ {
23
+ "title": "Security",
24
+ "path": "security.md"
25
+ },
26
+ {
27
+ "title": "Containerization",
28
+ "path": "containerization.md"
29
+ },
30
+ {
31
+ "title": "Settings",
32
+ "path": "settings.md"
33
+ },
34
+ {
35
+ "title": "Keybindings",
36
+ "path": "keybindings.md"
37
+ },
38
+ {
39
+ "title": "Sessions",
40
+ "path": "sessions.md"
41
+ },
42
+ {
43
+ "title": "Compaction",
44
+ "path": "compaction.md"
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "title": "Customization",
50
+ "items": [
51
+ {
52
+ "title": "Extensions",
53
+ "path": "extensions.md"
54
+ },
55
+ {
56
+ "title": "Skills",
57
+ "path": "skills.md"
58
+ },
59
+ {
60
+ "title": "Prompt Templates",
61
+ "path": "prompt-templates.md"
62
+ },
63
+ {
64
+ "title": "Themes",
65
+ "path": "themes.md"
66
+ },
67
+ {
68
+ "title": "Pi Packages",
69
+ "path": "packages.md"
70
+ },
71
+ {
72
+ "title": "MCP Servers",
73
+ "path": "mcp.md"
74
+ },
75
+ {
76
+ "title": "Custom Models",
77
+ "path": "models.md"
78
+ },
79
+ {
80
+ "title": "Custom Providers",
81
+ "path": "custom-provider.md"
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "title": "Reference",
87
+ "items": [
88
+ {
89
+ "title": "Session Format",
90
+ "path": "session-format.md"
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "title": "Programmatic Usage",
96
+ "items": [
97
+ {
98
+ "title": "RPC Mode",
99
+ "path": "rpc.md"
100
+ },
101
+ {
102
+ "title": "JSON Event Stream Mode",
103
+ "path": "json.md"
104
+ },
105
+ {
106
+ "title": "TUI Components",
107
+ "path": "tui.md"
108
+ }
109
+ ]
110
+ },
111
+ {
112
+ "title": "Platform Setup",
113
+ "items": [
114
+ {
115
+ "title": "Windows",
116
+ "path": "windows.md"
117
+ },
118
+ {
119
+ "title": "Termux on Android",
120
+ "path": "termux.md"
121
+ },
122
+ {
123
+ "title": "tmux",
124
+ "path": "tmux.md"
125
+ },
126
+ {
127
+ "title": "Terminal Setup",
128
+ "path": "terminal-setup.md"
129
+ },
130
+ {
131
+ "title": "Shell Aliases",
132
+ "path": "shell-aliases.md"
133
+ }
134
+ ]
135
+ }
136
+ ],
137
+ "redirects": [
138
+ {
139
+ "from": "session.md",
140
+ "to": "session-format.md"
141
+ },
142
+ {
143
+ "from": "tree.md",
144
+ "to": "sessions.md"
145
+ }
146
+ ]
147
+ }