@psnext/slingcli 2.5.20260718-1 → 2.5.20260718-2

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 (35) hide show
  1. package/node_modules/@earendil-works/pi-ai/dist/providers/data/openrouter.json +1 -1
  2. package/node_modules/@earendil-works/pi-coding-agent/docs/compaction.md +396 -0
  3. package/node_modules/@earendil-works/pi-coding-agent/docs/containerization.md +111 -0
  4. package/node_modules/@earendil-works/pi-coding-agent/docs/custom-provider.md +763 -0
  5. package/node_modules/@earendil-works/pi-coding-agent/docs/docs.json +143 -0
  6. package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +2943 -0
  7. package/node_modules/@earendil-works/pi-coding-agent/docs/images/doom-extension.png +0 -0
  8. package/node_modules/@earendil-works/pi-coding-agent/docs/images/exy.png +0 -0
  9. package/node_modules/@earendil-works/pi-coding-agent/docs/images/interactive-mode.png +0 -0
  10. package/node_modules/@earendil-works/pi-coding-agent/docs/images/tree-view.png +0 -0
  11. package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +79 -0
  12. package/node_modules/@earendil-works/pi-coding-agent/docs/json.md +82 -0
  13. package/node_modules/@earendil-works/pi-coding-agent/docs/keybindings.md +198 -0
  14. package/node_modules/@earendil-works/pi-coding-agent/docs/llama-cpp.md +99 -0
  15. package/node_modules/@earendil-works/pi-coding-agent/docs/models.md +540 -0
  16. package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +228 -0
  17. package/node_modules/@earendil-works/pi-coding-agent/docs/prompt-templates.md +96 -0
  18. package/node_modules/@earendil-works/pi-coding-agent/docs/providers.md +297 -0
  19. package/node_modules/@earendil-works/pi-coding-agent/docs/quickstart.md +165 -0
  20. package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +1480 -0
  21. package/node_modules/@earendil-works/pi-coding-agent/docs/security.md +59 -0
  22. package/node_modules/@earendil-works/pi-coding-agent/docs/session-format.md +422 -0
  23. package/node_modules/@earendil-works/pi-coding-agent/docs/sessions.md +145 -0
  24. package/node_modules/@earendil-works/pi-coding-agent/docs/settings.md +319 -0
  25. package/node_modules/@earendil-works/pi-coding-agent/docs/shell-aliases.md +13 -0
  26. package/node_modules/@earendil-works/pi-coding-agent/docs/skills.md +231 -0
  27. package/node_modules/@earendil-works/pi-coding-agent/docs/terminal-setup.md +142 -0
  28. package/node_modules/@earendil-works/pi-coding-agent/docs/termux.md +127 -0
  29. package/node_modules/@earendil-works/pi-coding-agent/docs/themes.md +297 -0
  30. package/node_modules/@earendil-works/pi-coding-agent/docs/tmux.md +63 -0
  31. package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +942 -0
  32. package/node_modules/@earendil-works/pi-coding-agent/docs/usage.md +311 -0
  33. package/node_modules/@earendil-works/pi-coding-agent/docs/windows.md +17 -0
  34. package/package.json +2 -2
  35. package/slingshot/index.js +57 -57
@@ -0,0 +1,143 @@
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": "Custom Models",
73
+ "path": "models.md"
74
+ },
75
+ {
76
+ "title": "Custom Providers",
77
+ "path": "custom-provider.md"
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ "title": "Reference",
83
+ "items": [
84
+ {
85
+ "title": "Session Format",
86
+ "path": "session-format.md"
87
+ }
88
+ ]
89
+ },
90
+ {
91
+ "title": "Programmatic Usage",
92
+ "items": [
93
+ {
94
+ "title": "RPC Mode",
95
+ "path": "rpc.md"
96
+ },
97
+ {
98
+ "title": "JSON Event Stream Mode",
99
+ "path": "json.md"
100
+ },
101
+ {
102
+ "title": "TUI Components",
103
+ "path": "tui.md"
104
+ }
105
+ ]
106
+ },
107
+ {
108
+ "title": "Platform Setup",
109
+ "items": [
110
+ {
111
+ "title": "Windows",
112
+ "path": "windows.md"
113
+ },
114
+ {
115
+ "title": "Termux on Android",
116
+ "path": "termux.md"
117
+ },
118
+ {
119
+ "title": "tmux",
120
+ "path": "tmux.md"
121
+ },
122
+ {
123
+ "title": "Terminal Setup",
124
+ "path": "terminal-setup.md"
125
+ },
126
+ {
127
+ "title": "Shell Aliases",
128
+ "path": "shell-aliases.md"
129
+ }
130
+ ]
131
+ }
132
+ ],
133
+ "redirects": [
134
+ {
135
+ "from": "session.md",
136
+ "to": "session-format.md"
137
+ },
138
+ {
139
+ "from": "tree.md",
140
+ "to": "sessions.md"
141
+ }
142
+ ]
143
+ }