@bolloon/bolloon-agent 0.4.4 → 0.4.5

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 (201) hide show
  1. package/README.md +135 -135
  2. package/bin/bolloon-cli.cjs +183 -183
  3. package/bin/bolloon-daemon.sh +207 -0
  4. package/bin/bolloon.cjs +0 -0
  5. package/dist/agents/constraint-layer.js +19 -19
  6. package/dist/agents/judgment-protocol.js +14 -14
  7. package/dist/agents/pi-sdk-types.js +12 -12
  8. package/dist/agents/pi-sdk.js +90 -90
  9. package/dist/agents/skill-organizer.js +19 -19
  10. package/dist/agents/workflow-pivot-loop.js +2 -2
  11. package/dist/bollharness/src/scripts/deploy-guard.js +8 -8
  12. package/dist/bollharness-integration/context-router-judgment.js +4 -4
  13. package/dist/bollharness-integration/context-router.js +292 -292
  14. package/dist/bollharness-integration/gate-state-machine.js +13 -13
  15. package/dist/bollharness-integration/llm-judgment-engine.js +134 -134
  16. package/dist/bollharness-integration/skill-adapter.js +21 -21
  17. package/dist/bootstrap/chat-archiver.js +14 -14
  18. package/dist/bootstrap/context-os.js +24 -24
  19. package/dist/bootstrap/memory-compressor.js +13 -13
  20. package/dist/cli-entry.js +36 -36
  21. package/dist/constraint-runtime/reference_data/archive_surface_snapshot.json +63 -0
  22. package/dist/constraint-runtime/reference_data/commands_snapshot.json +1037 -0
  23. package/dist/constraint-runtime/reference_data/subsystems/assistant.json +8 -0
  24. package/dist/constraint-runtime/reference_data/subsystems/bootstrap.json +8 -0
  25. package/dist/constraint-runtime/reference_data/subsystems/bridge.json +32 -0
  26. package/dist/constraint-runtime/reference_data/subsystems/buddy.json +13 -0
  27. package/dist/constraint-runtime/reference_data/subsystems/cli.json +26 -0
  28. package/dist/constraint-runtime/reference_data/subsystems/components.json +32 -0
  29. package/dist/constraint-runtime/reference_data/subsystems/constants.json +28 -0
  30. package/dist/constraint-runtime/reference_data/subsystems/coordinator.json +8 -0
  31. package/dist/constraint-runtime/reference_data/subsystems/entrypoints.json +15 -0
  32. package/dist/constraint-runtime/reference_data/subsystems/hooks.json +32 -0
  33. package/dist/constraint-runtime/reference_data/subsystems/keybindings.json +21 -0
  34. package/dist/constraint-runtime/reference_data/subsystems/memdir.json +15 -0
  35. package/dist/constraint-runtime/reference_data/subsystems/migrations.json +18 -0
  36. package/dist/constraint-runtime/reference_data/subsystems/moreright.json +8 -0
  37. package/dist/constraint-runtime/reference_data/subsystems/native_ts.json +11 -0
  38. package/dist/constraint-runtime/reference_data/subsystems/outputStyles.json +8 -0
  39. package/dist/constraint-runtime/reference_data/subsystems/plugins.json +9 -0
  40. package/dist/constraint-runtime/reference_data/subsystems/remote.json +11 -0
  41. package/dist/constraint-runtime/reference_data/subsystems/schemas.json +8 -0
  42. package/dist/constraint-runtime/reference_data/subsystems/screens.json +10 -0
  43. package/dist/constraint-runtime/reference_data/subsystems/server.json +10 -0
  44. package/dist/constraint-runtime/reference_data/subsystems/services.json +32 -0
  45. package/dist/constraint-runtime/reference_data/subsystems/skills.json +27 -0
  46. package/dist/constraint-runtime/reference_data/subsystems/state.json +13 -0
  47. package/dist/constraint-runtime/reference_data/subsystems/types.json +18 -0
  48. package/dist/constraint-runtime/reference_data/subsystems/upstreamproxy.json +9 -0
  49. package/dist/constraint-runtime/reference_data/subsystems/utils.json +32 -0
  50. package/dist/constraint-runtime/reference_data/subsystems/vim.json +12 -0
  51. package/dist/constraint-runtime/reference_data/subsystems/voice.json +8 -0
  52. package/dist/constraint-runtime/reference_data/tools_snapshot.json +922 -0
  53. package/dist/context-compaction/auto-compact.js +7 -7
  54. package/dist/electron/config.js.map +1 -0
  55. package/dist/electron/dialogs.js.map +1 -0
  56. package/dist/electron/first-run.js +54 -54
  57. package/dist/electron/first-run.js.map +1 -0
  58. package/dist/electron/ipc.js.map +1 -0
  59. package/dist/electron/logger.js.map +1 -0
  60. package/dist/electron/main.js.map +1 -0
  61. package/dist/electron/menu.js.map +1 -0
  62. package/dist/electron/paths.js.map +1 -0
  63. package/dist/electron/server.js.map +1 -0
  64. package/dist/electron/tray.js.map +1 -0
  65. package/dist/electron/window.js.map +1 -0
  66. package/dist/electron-build/electron/first-run.js +54 -54
  67. package/dist/electron-preload.js.map +1 -1
  68. package/dist/electron.js.map +1 -1
  69. package/dist/index.js +112 -112
  70. package/dist/llm/llm-judgment-client.js +102 -102
  71. package/dist/llm/pi-ai.js +48 -48
  72. package/dist/llm/system-prompt/layers/channel/human-async.md +41 -41
  73. package/dist/llm/system-prompt/layers/channel/local.md +14 -14
  74. package/dist/llm/system-prompt/layers/channel/p2p-agent.md +18 -18
  75. package/dist/llm/system-prompt/layers/channel/p2p-peer-sync.md +51 -51
  76. package/dist/llm/system-prompt/layers/channel/p2p-proactive.md +43 -43
  77. package/dist/llm/system-prompt/layers/channel/p2p-visitor.md +19 -19
  78. package/dist/llm/system-prompt/layers/channel/session-handoff.md +61 -61
  79. package/dist/llm/system-prompt/layers/core/artifacts_storage.md +89 -89
  80. package/dist/llm/system-prompt/layers/core/evenhandedness.md +21 -21
  81. package/dist/llm/system-prompt/layers/core/external-engagement.md +73 -73
  82. package/dist/llm/system-prompt/layers/core/hibs_reminders.md +15 -15
  83. package/dist/llm/system-prompt/layers/core/identity.md +48 -48
  84. package/dist/llm/system-prompt/layers/core/knowledge.md +17 -17
  85. package/dist/llm/system-prompt/layers/core/memory_system.md +12 -12
  86. package/dist/llm/system-prompt/layers/core/network_filesystem.md +28 -28
  87. package/dist/llm/system-prompt/layers/core/refusal.md +37 -37
  88. package/dist/llm/system-prompt/layers/core/tone.md +31 -31
  89. package/dist/llm/system-prompt/layers/core/tools.thin.md +13 -13
  90. package/dist/llm/system-prompt/layers/core/wellbeing.md +41 -41
  91. package/dist/llm/system-prompt/layers/role/architect.md +20 -20
  92. package/dist/llm/system-prompt/layers/role/expert.md +19 -19
  93. package/dist/llm/system-prompt/layers/role/implementer.md +15 -15
  94. package/dist/llm/system-prompt/layers/role/security.md +15 -15
  95. package/dist/llm/system-prompt/layers/tool/artifacts.md +72 -72
  96. package/dist/llm/system-prompt/layers/tool/bash.md +25 -25
  97. package/dist/llm/system-prompt/layers/tool/goal_handoff.md +77 -77
  98. package/dist/llm/system-prompt/layers/tool/hibs_api.md +171 -171
  99. package/dist/llm/system-prompt/layers/tool/image_search.md +70 -70
  100. package/dist/llm/system-prompt/layers/tool/manifest.md +89 -89
  101. package/dist/llm/system-prompt/layers/tool/mcp_apps.md +53 -53
  102. package/dist/llm/system-prompt/layers/tool/p2p_request.md +61 -61
  103. package/dist/llm/system-prompt/layers/tool/web_search.md +83 -83
  104. package/dist/llm/tool-manifest/ask_user_input.js +1 -1
  105. package/dist/llm/tool-manifest/bash.js +3 -3
  106. package/dist/llm/tool-manifest/create_file.js +4 -4
  107. package/dist/llm/tool-manifest/fetch_sports_data.js +3 -3
  108. package/dist/llm/tool-manifest/image_search.js +2 -2
  109. package/dist/llm/tool-manifest/index.js +59 -0
  110. package/dist/llm/tool-manifest/mcp.js +2 -2
  111. package/dist/llm/tool-manifest/message_compose.js +3 -3
  112. package/dist/llm/tool-manifest/places.js +2 -2
  113. package/dist/llm/tool-manifest/present_files.js +1 -1
  114. package/dist/llm/tool-manifest/recipe.js +2 -2
  115. package/dist/llm/tool-manifest/str_replace.js +5 -5
  116. package/dist/llm/tool-manifest/view.js +3 -3
  117. package/dist/llm/tool-manifest/weather.js +4 -4
  118. package/dist/llm/tool-manifest/web.js +4 -4
  119. package/dist/pi-ecosystem-judgment/causal-judge.js +51 -51
  120. package/dist/pi-ecosystem-judgment/distill-prompt.js +42 -42
  121. package/dist/pi-ecosystem-judgment/distillation.js +14 -14
  122. package/dist/pi-ecosystem-judgment/human-value-store.js +1 -1
  123. package/dist/pi-ecosystem-judgment/monitor-gate.js +28 -28
  124. package/dist/pi-ecosystem-judgment/value-injection.js +102 -102
  125. package/dist/pi-ecosystem-mcp/index.js +146 -5
  126. package/dist/security/context-router-tool.js +15 -15
  127. package/dist/utils/auto-update.js.map +1 -0
  128. package/dist/web/api-config.html +779 -779
  129. package/dist/web/client-hearth.js +10 -10
  130. package/dist/web/client.js.map +7 -0
  131. package/dist/web/components/wallet-viem.mjs +118 -118
  132. package/dist/web/edge-auth-client.js +120 -0
  133. package/dist/web/index.html +472 -472
  134. package/dist/web/manifest.json +20 -20
  135. package/dist/web/server.js +34 -67
  136. package/dist/web/style.css +4946 -4946
  137. package/package.json +195 -195
  138. package/scripts/build-cli.js +215 -215
  139. package/scripts/build-web.ts +130 -130
  140. package/scripts/postinstall.js +152 -152
  141. package/bin/bolloon.js +0 -157
  142. package/dist/pi-ecosystem-colony/index.js +0 -365
  143. package/dist/social/ant-colony/AdaptiveHeartbeat.js +0 -101
  144. package/dist/social/ant-colony/PheromoneEngine.js +0 -227
  145. package/dist/social/ant-colony/index.js +0 -6
  146. package/dist/social/ant-colony/types.js +0 -24
  147. package/dist/storage/trajectory.js +0 -101
  148. package/dist/test/ai-judgment-test.js +0 -80
  149. package/dist/test/bollharness-integration.test.js +0 -318
  150. package/dist/test/channel-agent-multi-dialogue.js +0 -205
  151. package/dist/test/channel-heartbeat-agent-test.js +0 -201
  152. package/dist/test/constraint-layer.test.js +0 -164
  153. package/dist/test/diap-identity-test.js +0 -172
  154. package/dist/test/diap-quick-test.js +0 -62
  155. package/dist/test/global-shared-context.test.js +0 -315
  156. package/dist/test/harness-judgment-injection.test.js +0 -246
  157. package/dist/test/harness-workflow-integrator-test.js +0 -228
  158. package/dist/test/human-value-store.test.js +0 -243
  159. package/dist/test/hybrid-integration-test.js +0 -118
  160. package/dist/test/hybrid-messenger-verify.js +0 -55
  161. package/dist/test/iroh-bistream-debug.js +0 -38
  162. package/dist/test/iroh-communication.test.js +0 -66
  163. package/dist/test/iroh-debug-test.js +0 -57
  164. package/dist/test/iroh-diap-test.js +0 -71
  165. package/dist/test/iroh-direct-connect.js +0 -55
  166. package/dist/test/iroh-e2e-fixed.js +0 -89
  167. package/dist/test/iroh-e2e-same-process.js +0 -63
  168. package/dist/test/iroh-e2e.js +0 -66
  169. package/dist/test/iroh-final-e2e.js +0 -72
  170. package/dist/test/iroh-relay-test.js +0 -37
  171. package/dist/test/iroh-simple-test.js +0 -41
  172. package/dist/test/iroh-transport-verify.js +0 -54
  173. package/dist/test/iroh-transport.test.js +0 -37
  174. package/dist/test/iroh-two-nodes.js +0 -70
  175. package/dist/test/iroh-verify.js +0 -44
  176. package/dist/test/judgment-decision.test.js +0 -219
  177. package/dist/test/llm-judgment-integration.test.js +0 -220
  178. package/dist/test/p2p-agent-complex-dialogue.js +0 -385
  179. package/dist/test/p2p-agent-dialogue.js +0 -341
  180. package/dist/test/p2p-agent-full-bidirectional.js +0 -510
  181. package/dist/test/p2p-agent-harness-flow.js +0 -437
  182. package/dist/test/p2p-agent-harness-single.js +0 -143
  183. package/dist/test/p2p-ai-dialogue-test.js +0 -318
  184. package/dist/test/p2p-cid-connect-test.js +0 -195
  185. package/dist/test/p2p-connect-receiver.js +0 -69
  186. package/dist/test/p2p-doc-transfer.js +0 -110
  187. package/dist/test/p2p-identity-page-test.js +0 -77
  188. package/dist/test/p2p-iroh-test.js +0 -171
  189. package/dist/test/p2p-minimal-test.js +0 -241
  190. package/dist/test/p2p-node-1.js +0 -148
  191. package/dist/test/p2p-node-2.js +0 -148
  192. package/dist/test/p2p-server.js +0 -281
  193. package/dist/test/p2p-two-nodes-test.js +0 -438
  194. package/dist/test/pi-sdk.test.js +0 -44
  195. package/dist/test/set-persona.js +0 -40
  196. package/dist/test/simple.test.js +0 -9
  197. package/dist/test/storage-integration.test.js +0 -150
  198. package/dist/test/subagent-manager.test.js +0 -276
  199. package/dist/test/test-gate-flow.test.js +0 -81
  200. package/dist/test/workflow-engine.test.js +0 -87
  201. package/dist/test/workflow-pivot-loop.test.js +0 -246
@@ -0,0 +1,1037 @@
1
+ [
2
+ {
3
+ "name": "add-dir",
4
+ "source_hint": "commands/add-dir/add-dir.tsx",
5
+ "responsibility": "Command module mirrored from archived TypeScript path commands/add-dir/add-dir.tsx"
6
+ },
7
+ {
8
+ "name": "add-dir",
9
+ "source_hint": "commands/add-dir/index.ts",
10
+ "responsibility": "Command module mirrored from archived TypeScript path commands/add-dir/index.ts"
11
+ },
12
+ {
13
+ "name": "validation",
14
+ "source_hint": "commands/add-dir/validation.ts",
15
+ "responsibility": "Command module mirrored from archived TypeScript path commands/add-dir/validation.ts"
16
+ },
17
+ {
18
+ "name": "advisor",
19
+ "source_hint": "commands/advisor.ts",
20
+ "responsibility": "Command module mirrored from archived TypeScript path commands/advisor.ts"
21
+ },
22
+ {
23
+ "name": "agents",
24
+ "source_hint": "commands/agents/agents.tsx",
25
+ "responsibility": "Command module mirrored from archived TypeScript path commands/agents/agents.tsx"
26
+ },
27
+ {
28
+ "name": "agents",
29
+ "source_hint": "commands/agents/index.ts",
30
+ "responsibility": "Command module mirrored from archived TypeScript path commands/agents/index.ts"
31
+ },
32
+ {
33
+ "name": "ant-trace",
34
+ "source_hint": "commands/ant-trace/index.js",
35
+ "responsibility": "Command module mirrored from archived TypeScript path commands/ant-trace/index.js"
36
+ },
37
+ {
38
+ "name": "autofix-pr",
39
+ "source_hint": "commands/autofix-pr/index.js",
40
+ "responsibility": "Command module mirrored from archived TypeScript path commands/autofix-pr/index.js"
41
+ },
42
+ {
43
+ "name": "backfill-sessions",
44
+ "source_hint": "commands/backfill-sessions/index.js",
45
+ "responsibility": "Command module mirrored from archived TypeScript path commands/backfill-sessions/index.js"
46
+ },
47
+ {
48
+ "name": "branch",
49
+ "source_hint": "commands/branch/branch.ts",
50
+ "responsibility": "Command module mirrored from archived TypeScript path commands/branch/branch.ts"
51
+ },
52
+ {
53
+ "name": "branch",
54
+ "source_hint": "commands/branch/index.ts",
55
+ "responsibility": "Command module mirrored from archived TypeScript path commands/branch/index.ts"
56
+ },
57
+ {
58
+ "name": "break-cache",
59
+ "source_hint": "commands/break-cache/index.js",
60
+ "responsibility": "Command module mirrored from archived TypeScript path commands/break-cache/index.js"
61
+ },
62
+ {
63
+ "name": "bridge",
64
+ "source_hint": "commands/bridge/bridge.tsx",
65
+ "responsibility": "Command module mirrored from archived TypeScript path commands/bridge/bridge.tsx"
66
+ },
67
+ {
68
+ "name": "bridge",
69
+ "source_hint": "commands/bridge/index.ts",
70
+ "responsibility": "Command module mirrored from archived TypeScript path commands/bridge/index.ts"
71
+ },
72
+ {
73
+ "name": "bridge-kick",
74
+ "source_hint": "commands/bridge-kick.ts",
75
+ "responsibility": "Command module mirrored from archived TypeScript path commands/bridge-kick.ts"
76
+ },
77
+ {
78
+ "name": "brief",
79
+ "source_hint": "commands/brief.ts",
80
+ "responsibility": "Command module mirrored from archived TypeScript path commands/brief.ts"
81
+ },
82
+ {
83
+ "name": "btw",
84
+ "source_hint": "commands/btw/btw.tsx",
85
+ "responsibility": "Command module mirrored from archived TypeScript path commands/btw/btw.tsx"
86
+ },
87
+ {
88
+ "name": "btw",
89
+ "source_hint": "commands/btw/index.ts",
90
+ "responsibility": "Command module mirrored from archived TypeScript path commands/btw/index.ts"
91
+ },
92
+ {
93
+ "name": "bughunter",
94
+ "source_hint": "commands/bughunter/index.js",
95
+ "responsibility": "Command module mirrored from archived TypeScript path commands/bughunter/index.js"
96
+ },
97
+ {
98
+ "name": "chrome",
99
+ "source_hint": "commands/chrome/chrome.tsx",
100
+ "responsibility": "Command module mirrored from archived TypeScript path commands/chrome/chrome.tsx"
101
+ },
102
+ {
103
+ "name": "chrome",
104
+ "source_hint": "commands/chrome/index.ts",
105
+ "responsibility": "Command module mirrored from archived TypeScript path commands/chrome/index.ts"
106
+ },
107
+ {
108
+ "name": "caches",
109
+ "source_hint": "commands/clear/caches.ts",
110
+ "responsibility": "Command module mirrored from archived TypeScript path commands/clear/caches.ts"
111
+ },
112
+ {
113
+ "name": "clear",
114
+ "source_hint": "commands/clear/clear.ts",
115
+ "responsibility": "Command module mirrored from archived TypeScript path commands/clear/clear.ts"
116
+ },
117
+ {
118
+ "name": "conversation",
119
+ "source_hint": "commands/clear/conversation.ts",
120
+ "responsibility": "Command module mirrored from archived TypeScript path commands/clear/conversation.ts"
121
+ },
122
+ {
123
+ "name": "clear",
124
+ "source_hint": "commands/clear/index.ts",
125
+ "responsibility": "Command module mirrored from archived TypeScript path commands/clear/index.ts"
126
+ },
127
+ {
128
+ "name": "color",
129
+ "source_hint": "commands/color/color.ts",
130
+ "responsibility": "Command module mirrored from archived TypeScript path commands/color/color.ts"
131
+ },
132
+ {
133
+ "name": "color",
134
+ "source_hint": "commands/color/index.ts",
135
+ "responsibility": "Command module mirrored from archived TypeScript path commands/color/index.ts"
136
+ },
137
+ {
138
+ "name": "commit-push-pr",
139
+ "source_hint": "commands/commit-push-pr.ts",
140
+ "responsibility": "Command module mirrored from archived TypeScript path commands/commit-push-pr.ts"
141
+ },
142
+ {
143
+ "name": "commit",
144
+ "source_hint": "commands/commit.ts",
145
+ "responsibility": "Command module mirrored from archived TypeScript path commands/commit.ts"
146
+ },
147
+ {
148
+ "name": "compact",
149
+ "source_hint": "commands/compact/compact.ts",
150
+ "responsibility": "Command module mirrored from archived TypeScript path commands/compact/compact.ts"
151
+ },
152
+ {
153
+ "name": "compact",
154
+ "source_hint": "commands/compact/index.ts",
155
+ "responsibility": "Command module mirrored from archived TypeScript path commands/compact/index.ts"
156
+ },
157
+ {
158
+ "name": "config",
159
+ "source_hint": "commands/config/config.tsx",
160
+ "responsibility": "Command module mirrored from archived TypeScript path commands/config/config.tsx"
161
+ },
162
+ {
163
+ "name": "config",
164
+ "source_hint": "commands/config/index.ts",
165
+ "responsibility": "Command module mirrored from archived TypeScript path commands/config/index.ts"
166
+ },
167
+ {
168
+ "name": "context-noninteractive",
169
+ "source_hint": "commands/context/context-noninteractive.ts",
170
+ "responsibility": "Command module mirrored from archived TypeScript path commands/context/context-noninteractive.ts"
171
+ },
172
+ {
173
+ "name": "context",
174
+ "source_hint": "commands/context/context.tsx",
175
+ "responsibility": "Command module mirrored from archived TypeScript path commands/context/context.tsx"
176
+ },
177
+ {
178
+ "name": "context",
179
+ "source_hint": "commands/context/index.ts",
180
+ "responsibility": "Command module mirrored from archived TypeScript path commands/context/index.ts"
181
+ },
182
+ {
183
+ "name": "copy",
184
+ "source_hint": "commands/copy/copy.tsx",
185
+ "responsibility": "Command module mirrored from archived TypeScript path commands/copy/copy.tsx"
186
+ },
187
+ {
188
+ "name": "copy",
189
+ "source_hint": "commands/copy/index.ts",
190
+ "responsibility": "Command module mirrored from archived TypeScript path commands/copy/index.ts"
191
+ },
192
+ {
193
+ "name": "cost",
194
+ "source_hint": "commands/cost/cost.ts",
195
+ "responsibility": "Command module mirrored from archived TypeScript path commands/cost/cost.ts"
196
+ },
197
+ {
198
+ "name": "cost",
199
+ "source_hint": "commands/cost/index.ts",
200
+ "responsibility": "Command module mirrored from archived TypeScript path commands/cost/index.ts"
201
+ },
202
+ {
203
+ "name": "createMovedToPluginCommand",
204
+ "source_hint": "commands/createMovedToPluginCommand.ts",
205
+ "responsibility": "Command module mirrored from archived TypeScript path commands/createMovedToPluginCommand.ts"
206
+ },
207
+ {
208
+ "name": "ctx_viz",
209
+ "source_hint": "commands/ctx_viz/index.js",
210
+ "responsibility": "Command module mirrored from archived TypeScript path commands/ctx_viz/index.js"
211
+ },
212
+ {
213
+ "name": "debug-tool-call",
214
+ "source_hint": "commands/debug-tool-call/index.js",
215
+ "responsibility": "Command module mirrored from archived TypeScript path commands/debug-tool-call/index.js"
216
+ },
217
+ {
218
+ "name": "desktop",
219
+ "source_hint": "commands/desktop/desktop.tsx",
220
+ "responsibility": "Command module mirrored from archived TypeScript path commands/desktop/desktop.tsx"
221
+ },
222
+ {
223
+ "name": "desktop",
224
+ "source_hint": "commands/desktop/index.ts",
225
+ "responsibility": "Command module mirrored from archived TypeScript path commands/desktop/index.ts"
226
+ },
227
+ {
228
+ "name": "diff",
229
+ "source_hint": "commands/diff/diff.tsx",
230
+ "responsibility": "Command module mirrored from archived TypeScript path commands/diff/diff.tsx"
231
+ },
232
+ {
233
+ "name": "diff",
234
+ "source_hint": "commands/diff/index.ts",
235
+ "responsibility": "Command module mirrored from archived TypeScript path commands/diff/index.ts"
236
+ },
237
+ {
238
+ "name": "doctor",
239
+ "source_hint": "commands/doctor/doctor.tsx",
240
+ "responsibility": "Command module mirrored from archived TypeScript path commands/doctor/doctor.tsx"
241
+ },
242
+ {
243
+ "name": "doctor",
244
+ "source_hint": "commands/doctor/index.ts",
245
+ "responsibility": "Command module mirrored from archived TypeScript path commands/doctor/index.ts"
246
+ },
247
+ {
248
+ "name": "effort",
249
+ "source_hint": "commands/effort/effort.tsx",
250
+ "responsibility": "Command module mirrored from archived TypeScript path commands/effort/effort.tsx"
251
+ },
252
+ {
253
+ "name": "effort",
254
+ "source_hint": "commands/effort/index.ts",
255
+ "responsibility": "Command module mirrored from archived TypeScript path commands/effort/index.ts"
256
+ },
257
+ {
258
+ "name": "env",
259
+ "source_hint": "commands/env/index.js",
260
+ "responsibility": "Command module mirrored from archived TypeScript path commands/env/index.js"
261
+ },
262
+ {
263
+ "name": "exit",
264
+ "source_hint": "commands/exit/exit.tsx",
265
+ "responsibility": "Command module mirrored from archived TypeScript path commands/exit/exit.tsx"
266
+ },
267
+ {
268
+ "name": "exit",
269
+ "source_hint": "commands/exit/index.ts",
270
+ "responsibility": "Command module mirrored from archived TypeScript path commands/exit/index.ts"
271
+ },
272
+ {
273
+ "name": "export",
274
+ "source_hint": "commands/export/export.tsx",
275
+ "responsibility": "Command module mirrored from archived TypeScript path commands/export/export.tsx"
276
+ },
277
+ {
278
+ "name": "export",
279
+ "source_hint": "commands/export/index.ts",
280
+ "responsibility": "Command module mirrored from archived TypeScript path commands/export/index.ts"
281
+ },
282
+ {
283
+ "name": "extra-usage-core",
284
+ "source_hint": "commands/extra-usage/extra-usage-core.ts",
285
+ "responsibility": "Command module mirrored from archived TypeScript path commands/extra-usage/extra-usage-core.ts"
286
+ },
287
+ {
288
+ "name": "extra-usage-noninteractive",
289
+ "source_hint": "commands/extra-usage/extra-usage-noninteractive.ts",
290
+ "responsibility": "Command module mirrored from archived TypeScript path commands/extra-usage/extra-usage-noninteractive.ts"
291
+ },
292
+ {
293
+ "name": "extra-usage",
294
+ "source_hint": "commands/extra-usage/extra-usage.tsx",
295
+ "responsibility": "Command module mirrored from archived TypeScript path commands/extra-usage/extra-usage.tsx"
296
+ },
297
+ {
298
+ "name": "extra-usage",
299
+ "source_hint": "commands/extra-usage/index.ts",
300
+ "responsibility": "Command module mirrored from archived TypeScript path commands/extra-usage/index.ts"
301
+ },
302
+ {
303
+ "name": "fast",
304
+ "source_hint": "commands/fast/fast.tsx",
305
+ "responsibility": "Command module mirrored from archived TypeScript path commands/fast/fast.tsx"
306
+ },
307
+ {
308
+ "name": "fast",
309
+ "source_hint": "commands/fast/index.ts",
310
+ "responsibility": "Command module mirrored from archived TypeScript path commands/fast/index.ts"
311
+ },
312
+ {
313
+ "name": "feedback",
314
+ "source_hint": "commands/feedback/feedback.tsx",
315
+ "responsibility": "Command module mirrored from archived TypeScript path commands/feedback/feedback.tsx"
316
+ },
317
+ {
318
+ "name": "feedback",
319
+ "source_hint": "commands/feedback/index.ts",
320
+ "responsibility": "Command module mirrored from archived TypeScript path commands/feedback/index.ts"
321
+ },
322
+ {
323
+ "name": "files",
324
+ "source_hint": "commands/files/files.ts",
325
+ "responsibility": "Command module mirrored from archived TypeScript path commands/files/files.ts"
326
+ },
327
+ {
328
+ "name": "files",
329
+ "source_hint": "commands/files/index.ts",
330
+ "responsibility": "Command module mirrored from archived TypeScript path commands/files/index.ts"
331
+ },
332
+ {
333
+ "name": "good-claude",
334
+ "source_hint": "commands/good-claude/index.js",
335
+ "responsibility": "Command module mirrored from archived TypeScript path commands/good-claude/index.js"
336
+ },
337
+ {
338
+ "name": "heapdump",
339
+ "source_hint": "commands/heapdump/heapdump.ts",
340
+ "responsibility": "Command module mirrored from archived TypeScript path commands/heapdump/heapdump.ts"
341
+ },
342
+ {
343
+ "name": "heapdump",
344
+ "source_hint": "commands/heapdump/index.ts",
345
+ "responsibility": "Command module mirrored from archived TypeScript path commands/heapdump/index.ts"
346
+ },
347
+ {
348
+ "name": "help",
349
+ "source_hint": "commands/help/help.tsx",
350
+ "responsibility": "Command module mirrored from archived TypeScript path commands/help/help.tsx"
351
+ },
352
+ {
353
+ "name": "help",
354
+ "source_hint": "commands/help/index.ts",
355
+ "responsibility": "Command module mirrored from archived TypeScript path commands/help/index.ts"
356
+ },
357
+ {
358
+ "name": "hooks",
359
+ "source_hint": "commands/hooks/hooks.tsx",
360
+ "responsibility": "Command module mirrored from archived TypeScript path commands/hooks/hooks.tsx"
361
+ },
362
+ {
363
+ "name": "hooks",
364
+ "source_hint": "commands/hooks/index.ts",
365
+ "responsibility": "Command module mirrored from archived TypeScript path commands/hooks/index.ts"
366
+ },
367
+ {
368
+ "name": "ide",
369
+ "source_hint": "commands/ide/ide.tsx",
370
+ "responsibility": "Command module mirrored from archived TypeScript path commands/ide/ide.tsx"
371
+ },
372
+ {
373
+ "name": "ide",
374
+ "source_hint": "commands/ide/index.ts",
375
+ "responsibility": "Command module mirrored from archived TypeScript path commands/ide/index.ts"
376
+ },
377
+ {
378
+ "name": "init-verifiers",
379
+ "source_hint": "commands/init-verifiers.ts",
380
+ "responsibility": "Command module mirrored from archived TypeScript path commands/init-verifiers.ts"
381
+ },
382
+ {
383
+ "name": "init",
384
+ "source_hint": "commands/init.ts",
385
+ "responsibility": "Command module mirrored from archived TypeScript path commands/init.ts"
386
+ },
387
+ {
388
+ "name": "insights",
389
+ "source_hint": "commands/insights.ts",
390
+ "responsibility": "Command module mirrored from archived TypeScript path commands/insights.ts"
391
+ },
392
+ {
393
+ "name": "ApiKeyStep",
394
+ "source_hint": "commands/install-github-app/ApiKeyStep.tsx",
395
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/ApiKeyStep.tsx"
396
+ },
397
+ {
398
+ "name": "CheckExistingSecretStep",
399
+ "source_hint": "commands/install-github-app/CheckExistingSecretStep.tsx",
400
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/CheckExistingSecretStep.tsx"
401
+ },
402
+ {
403
+ "name": "CheckGitHubStep",
404
+ "source_hint": "commands/install-github-app/CheckGitHubStep.tsx",
405
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/CheckGitHubStep.tsx"
406
+ },
407
+ {
408
+ "name": "ChooseRepoStep",
409
+ "source_hint": "commands/install-github-app/ChooseRepoStep.tsx",
410
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/ChooseRepoStep.tsx"
411
+ },
412
+ {
413
+ "name": "CreatingStep",
414
+ "source_hint": "commands/install-github-app/CreatingStep.tsx",
415
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/CreatingStep.tsx"
416
+ },
417
+ {
418
+ "name": "ErrorStep",
419
+ "source_hint": "commands/install-github-app/ErrorStep.tsx",
420
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/ErrorStep.tsx"
421
+ },
422
+ {
423
+ "name": "ExistingWorkflowStep",
424
+ "source_hint": "commands/install-github-app/ExistingWorkflowStep.tsx",
425
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/ExistingWorkflowStep.tsx"
426
+ },
427
+ {
428
+ "name": "InstallAppStep",
429
+ "source_hint": "commands/install-github-app/InstallAppStep.tsx",
430
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/InstallAppStep.tsx"
431
+ },
432
+ {
433
+ "name": "OAuthFlowStep",
434
+ "source_hint": "commands/install-github-app/OAuthFlowStep.tsx",
435
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/OAuthFlowStep.tsx"
436
+ },
437
+ {
438
+ "name": "SuccessStep",
439
+ "source_hint": "commands/install-github-app/SuccessStep.tsx",
440
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/SuccessStep.tsx"
441
+ },
442
+ {
443
+ "name": "WarningsStep",
444
+ "source_hint": "commands/install-github-app/WarningsStep.tsx",
445
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/WarningsStep.tsx"
446
+ },
447
+ {
448
+ "name": "install-github-app",
449
+ "source_hint": "commands/install-github-app/index.ts",
450
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/index.ts"
451
+ },
452
+ {
453
+ "name": "install-github-app",
454
+ "source_hint": "commands/install-github-app/install-github-app.tsx",
455
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/install-github-app.tsx"
456
+ },
457
+ {
458
+ "name": "setupGitHubActions",
459
+ "source_hint": "commands/install-github-app/setupGitHubActions.ts",
460
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-github-app/setupGitHubActions.ts"
461
+ },
462
+ {
463
+ "name": "install-slack-app",
464
+ "source_hint": "commands/install-slack-app/index.ts",
465
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-slack-app/index.ts"
466
+ },
467
+ {
468
+ "name": "install-slack-app",
469
+ "source_hint": "commands/install-slack-app/install-slack-app.ts",
470
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install-slack-app/install-slack-app.ts"
471
+ },
472
+ {
473
+ "name": "install",
474
+ "source_hint": "commands/install.tsx",
475
+ "responsibility": "Command module mirrored from archived TypeScript path commands/install.tsx"
476
+ },
477
+ {
478
+ "name": "issue",
479
+ "source_hint": "commands/issue/index.js",
480
+ "responsibility": "Command module mirrored from archived TypeScript path commands/issue/index.js"
481
+ },
482
+ {
483
+ "name": "keybindings",
484
+ "source_hint": "commands/keybindings/index.ts",
485
+ "responsibility": "Command module mirrored from archived TypeScript path commands/keybindings/index.ts"
486
+ },
487
+ {
488
+ "name": "keybindings",
489
+ "source_hint": "commands/keybindings/keybindings.ts",
490
+ "responsibility": "Command module mirrored from archived TypeScript path commands/keybindings/keybindings.ts"
491
+ },
492
+ {
493
+ "name": "login",
494
+ "source_hint": "commands/login/index.ts",
495
+ "responsibility": "Command module mirrored from archived TypeScript path commands/login/index.ts"
496
+ },
497
+ {
498
+ "name": "login",
499
+ "source_hint": "commands/login/login.tsx",
500
+ "responsibility": "Command module mirrored from archived TypeScript path commands/login/login.tsx"
501
+ },
502
+ {
503
+ "name": "logout",
504
+ "source_hint": "commands/logout/index.ts",
505
+ "responsibility": "Command module mirrored from archived TypeScript path commands/logout/index.ts"
506
+ },
507
+ {
508
+ "name": "logout",
509
+ "source_hint": "commands/logout/logout.tsx",
510
+ "responsibility": "Command module mirrored from archived TypeScript path commands/logout/logout.tsx"
511
+ },
512
+ {
513
+ "name": "addCommand",
514
+ "source_hint": "commands/mcp/addCommand.ts",
515
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mcp/addCommand.ts"
516
+ },
517
+ {
518
+ "name": "mcp",
519
+ "source_hint": "commands/mcp/index.ts",
520
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mcp/index.ts"
521
+ },
522
+ {
523
+ "name": "mcp",
524
+ "source_hint": "commands/mcp/mcp.tsx",
525
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mcp/mcp.tsx"
526
+ },
527
+ {
528
+ "name": "xaaIdpCommand",
529
+ "source_hint": "commands/mcp/xaaIdpCommand.ts",
530
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mcp/xaaIdpCommand.ts"
531
+ },
532
+ {
533
+ "name": "memory",
534
+ "source_hint": "commands/memory/index.ts",
535
+ "responsibility": "Command module mirrored from archived TypeScript path commands/memory/index.ts"
536
+ },
537
+ {
538
+ "name": "memory",
539
+ "source_hint": "commands/memory/memory.tsx",
540
+ "responsibility": "Command module mirrored from archived TypeScript path commands/memory/memory.tsx"
541
+ },
542
+ {
543
+ "name": "mobile",
544
+ "source_hint": "commands/mobile/index.ts",
545
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mobile/index.ts"
546
+ },
547
+ {
548
+ "name": "mobile",
549
+ "source_hint": "commands/mobile/mobile.tsx",
550
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mobile/mobile.tsx"
551
+ },
552
+ {
553
+ "name": "mock-limits",
554
+ "source_hint": "commands/mock-limits/index.js",
555
+ "responsibility": "Command module mirrored from archived TypeScript path commands/mock-limits/index.js"
556
+ },
557
+ {
558
+ "name": "model",
559
+ "source_hint": "commands/model/index.ts",
560
+ "responsibility": "Command module mirrored from archived TypeScript path commands/model/index.ts"
561
+ },
562
+ {
563
+ "name": "model",
564
+ "source_hint": "commands/model/model.tsx",
565
+ "responsibility": "Command module mirrored from archived TypeScript path commands/model/model.tsx"
566
+ },
567
+ {
568
+ "name": "oauth-refresh",
569
+ "source_hint": "commands/oauth-refresh/index.js",
570
+ "responsibility": "Command module mirrored from archived TypeScript path commands/oauth-refresh/index.js"
571
+ },
572
+ {
573
+ "name": "onboarding",
574
+ "source_hint": "commands/onboarding/index.js",
575
+ "responsibility": "Command module mirrored from archived TypeScript path commands/onboarding/index.js"
576
+ },
577
+ {
578
+ "name": "output-style",
579
+ "source_hint": "commands/output-style/index.ts",
580
+ "responsibility": "Command module mirrored from archived TypeScript path commands/output-style/index.ts"
581
+ },
582
+ {
583
+ "name": "output-style",
584
+ "source_hint": "commands/output-style/output-style.tsx",
585
+ "responsibility": "Command module mirrored from archived TypeScript path commands/output-style/output-style.tsx"
586
+ },
587
+ {
588
+ "name": "passes",
589
+ "source_hint": "commands/passes/index.ts",
590
+ "responsibility": "Command module mirrored from archived TypeScript path commands/passes/index.ts"
591
+ },
592
+ {
593
+ "name": "passes",
594
+ "source_hint": "commands/passes/passes.tsx",
595
+ "responsibility": "Command module mirrored from archived TypeScript path commands/passes/passes.tsx"
596
+ },
597
+ {
598
+ "name": "perf-issue",
599
+ "source_hint": "commands/perf-issue/index.js",
600
+ "responsibility": "Command module mirrored from archived TypeScript path commands/perf-issue/index.js"
601
+ },
602
+ {
603
+ "name": "permissions",
604
+ "source_hint": "commands/permissions/index.ts",
605
+ "responsibility": "Command module mirrored from archived TypeScript path commands/permissions/index.ts"
606
+ },
607
+ {
608
+ "name": "permissions",
609
+ "source_hint": "commands/permissions/permissions.tsx",
610
+ "responsibility": "Command module mirrored from archived TypeScript path commands/permissions/permissions.tsx"
611
+ },
612
+ {
613
+ "name": "plan",
614
+ "source_hint": "commands/plan/index.ts",
615
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plan/index.ts"
616
+ },
617
+ {
618
+ "name": "plan",
619
+ "source_hint": "commands/plan/plan.tsx",
620
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plan/plan.tsx"
621
+ },
622
+ {
623
+ "name": "AddMarketplace",
624
+ "source_hint": "commands/plugin/AddMarketplace.tsx",
625
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/AddMarketplace.tsx"
626
+ },
627
+ {
628
+ "name": "BrowseMarketplace",
629
+ "source_hint": "commands/plugin/BrowseMarketplace.tsx",
630
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/BrowseMarketplace.tsx"
631
+ },
632
+ {
633
+ "name": "DiscoverPlugins",
634
+ "source_hint": "commands/plugin/DiscoverPlugins.tsx",
635
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/DiscoverPlugins.tsx"
636
+ },
637
+ {
638
+ "name": "ManageMarketplaces",
639
+ "source_hint": "commands/plugin/ManageMarketplaces.tsx",
640
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/ManageMarketplaces.tsx"
641
+ },
642
+ {
643
+ "name": "ManagePlugins",
644
+ "source_hint": "commands/plugin/ManagePlugins.tsx",
645
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/ManagePlugins.tsx"
646
+ },
647
+ {
648
+ "name": "PluginErrors",
649
+ "source_hint": "commands/plugin/PluginErrors.tsx",
650
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/PluginErrors.tsx"
651
+ },
652
+ {
653
+ "name": "PluginOptionsDialog",
654
+ "source_hint": "commands/plugin/PluginOptionsDialog.tsx",
655
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/PluginOptionsDialog.tsx"
656
+ },
657
+ {
658
+ "name": "PluginOptionsFlow",
659
+ "source_hint": "commands/plugin/PluginOptionsFlow.tsx",
660
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/PluginOptionsFlow.tsx"
661
+ },
662
+ {
663
+ "name": "PluginSettings",
664
+ "source_hint": "commands/plugin/PluginSettings.tsx",
665
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/PluginSettings.tsx"
666
+ },
667
+ {
668
+ "name": "PluginTrustWarning",
669
+ "source_hint": "commands/plugin/PluginTrustWarning.tsx",
670
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/PluginTrustWarning.tsx"
671
+ },
672
+ {
673
+ "name": "UnifiedInstalledCell",
674
+ "source_hint": "commands/plugin/UnifiedInstalledCell.tsx",
675
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/UnifiedInstalledCell.tsx"
676
+ },
677
+ {
678
+ "name": "ValidatePlugin",
679
+ "source_hint": "commands/plugin/ValidatePlugin.tsx",
680
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/ValidatePlugin.tsx"
681
+ },
682
+ {
683
+ "name": "plugin",
684
+ "source_hint": "commands/plugin/index.tsx",
685
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/index.tsx"
686
+ },
687
+ {
688
+ "name": "parseArgs",
689
+ "source_hint": "commands/plugin/parseArgs.ts",
690
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/parseArgs.ts"
691
+ },
692
+ {
693
+ "name": "plugin",
694
+ "source_hint": "commands/plugin/plugin.tsx",
695
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/plugin.tsx"
696
+ },
697
+ {
698
+ "name": "pluginDetailsHelpers",
699
+ "source_hint": "commands/plugin/pluginDetailsHelpers.tsx",
700
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/pluginDetailsHelpers.tsx"
701
+ },
702
+ {
703
+ "name": "usePagination",
704
+ "source_hint": "commands/plugin/usePagination.ts",
705
+ "responsibility": "Command module mirrored from archived TypeScript path commands/plugin/usePagination.ts"
706
+ },
707
+ {
708
+ "name": "pr_comments",
709
+ "source_hint": "commands/pr_comments/index.ts",
710
+ "responsibility": "Command module mirrored from archived TypeScript path commands/pr_comments/index.ts"
711
+ },
712
+ {
713
+ "name": "privacy-settings",
714
+ "source_hint": "commands/privacy-settings/index.ts",
715
+ "responsibility": "Command module mirrored from archived TypeScript path commands/privacy-settings/index.ts"
716
+ },
717
+ {
718
+ "name": "privacy-settings",
719
+ "source_hint": "commands/privacy-settings/privacy-settings.tsx",
720
+ "responsibility": "Command module mirrored from archived TypeScript path commands/privacy-settings/privacy-settings.tsx"
721
+ },
722
+ {
723
+ "name": "rate-limit-options",
724
+ "source_hint": "commands/rate-limit-options/index.ts",
725
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rate-limit-options/index.ts"
726
+ },
727
+ {
728
+ "name": "rate-limit-options",
729
+ "source_hint": "commands/rate-limit-options/rate-limit-options.tsx",
730
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rate-limit-options/rate-limit-options.tsx"
731
+ },
732
+ {
733
+ "name": "release-notes",
734
+ "source_hint": "commands/release-notes/index.ts",
735
+ "responsibility": "Command module mirrored from archived TypeScript path commands/release-notes/index.ts"
736
+ },
737
+ {
738
+ "name": "release-notes",
739
+ "source_hint": "commands/release-notes/release-notes.ts",
740
+ "responsibility": "Command module mirrored from archived TypeScript path commands/release-notes/release-notes.ts"
741
+ },
742
+ {
743
+ "name": "reload-plugins",
744
+ "source_hint": "commands/reload-plugins/index.ts",
745
+ "responsibility": "Command module mirrored from archived TypeScript path commands/reload-plugins/index.ts"
746
+ },
747
+ {
748
+ "name": "reload-plugins",
749
+ "source_hint": "commands/reload-plugins/reload-plugins.ts",
750
+ "responsibility": "Command module mirrored from archived TypeScript path commands/reload-plugins/reload-plugins.ts"
751
+ },
752
+ {
753
+ "name": "remote-env",
754
+ "source_hint": "commands/remote-env/index.ts",
755
+ "responsibility": "Command module mirrored from archived TypeScript path commands/remote-env/index.ts"
756
+ },
757
+ {
758
+ "name": "remote-env",
759
+ "source_hint": "commands/remote-env/remote-env.tsx",
760
+ "responsibility": "Command module mirrored from archived TypeScript path commands/remote-env/remote-env.tsx"
761
+ },
762
+ {
763
+ "name": "api",
764
+ "source_hint": "commands/remote-setup/api.ts",
765
+ "responsibility": "Command module mirrored from archived TypeScript path commands/remote-setup/api.ts"
766
+ },
767
+ {
768
+ "name": "remote-setup",
769
+ "source_hint": "commands/remote-setup/index.ts",
770
+ "responsibility": "Command module mirrored from archived TypeScript path commands/remote-setup/index.ts"
771
+ },
772
+ {
773
+ "name": "remote-setup",
774
+ "source_hint": "commands/remote-setup/remote-setup.tsx",
775
+ "responsibility": "Command module mirrored from archived TypeScript path commands/remote-setup/remote-setup.tsx"
776
+ },
777
+ {
778
+ "name": "generateSessionName",
779
+ "source_hint": "commands/rename/generateSessionName.ts",
780
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rename/generateSessionName.ts"
781
+ },
782
+ {
783
+ "name": "rename",
784
+ "source_hint": "commands/rename/index.ts",
785
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rename/index.ts"
786
+ },
787
+ {
788
+ "name": "rename",
789
+ "source_hint": "commands/rename/rename.ts",
790
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rename/rename.ts"
791
+ },
792
+ {
793
+ "name": "reset-limits",
794
+ "source_hint": "commands/reset-limits/index.js",
795
+ "responsibility": "Command module mirrored from archived TypeScript path commands/reset-limits/index.js"
796
+ },
797
+ {
798
+ "name": "resume",
799
+ "source_hint": "commands/resume/index.ts",
800
+ "responsibility": "Command module mirrored from archived TypeScript path commands/resume/index.ts"
801
+ },
802
+ {
803
+ "name": "resume",
804
+ "source_hint": "commands/resume/resume.tsx",
805
+ "responsibility": "Command module mirrored from archived TypeScript path commands/resume/resume.tsx"
806
+ },
807
+ {
808
+ "name": "UltrareviewOverageDialog",
809
+ "source_hint": "commands/review/UltrareviewOverageDialog.tsx",
810
+ "responsibility": "Command module mirrored from archived TypeScript path commands/review/UltrareviewOverageDialog.tsx"
811
+ },
812
+ {
813
+ "name": "reviewRemote",
814
+ "source_hint": "commands/review/reviewRemote.ts",
815
+ "responsibility": "Command module mirrored from archived TypeScript path commands/review/reviewRemote.ts"
816
+ },
817
+ {
818
+ "name": "ultrareviewCommand",
819
+ "source_hint": "commands/review/ultrareviewCommand.tsx",
820
+ "responsibility": "Command module mirrored from archived TypeScript path commands/review/ultrareviewCommand.tsx"
821
+ },
822
+ {
823
+ "name": "ultrareviewEnabled",
824
+ "source_hint": "commands/review/ultrareviewEnabled.ts",
825
+ "responsibility": "Command module mirrored from archived TypeScript path commands/review/ultrareviewEnabled.ts"
826
+ },
827
+ {
828
+ "name": "review",
829
+ "source_hint": "commands/review.ts",
830
+ "responsibility": "Command module mirrored from archived TypeScript path commands/review.ts"
831
+ },
832
+ {
833
+ "name": "rewind",
834
+ "source_hint": "commands/rewind/index.ts",
835
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rewind/index.ts"
836
+ },
837
+ {
838
+ "name": "rewind",
839
+ "source_hint": "commands/rewind/rewind.ts",
840
+ "responsibility": "Command module mirrored from archived TypeScript path commands/rewind/rewind.ts"
841
+ },
842
+ {
843
+ "name": "sandbox-toggle",
844
+ "source_hint": "commands/sandbox-toggle/index.ts",
845
+ "responsibility": "Command module mirrored from archived TypeScript path commands/sandbox-toggle/index.ts"
846
+ },
847
+ {
848
+ "name": "sandbox-toggle",
849
+ "source_hint": "commands/sandbox-toggle/sandbox-toggle.tsx",
850
+ "responsibility": "Command module mirrored from archived TypeScript path commands/sandbox-toggle/sandbox-toggle.tsx"
851
+ },
852
+ {
853
+ "name": "security-review",
854
+ "source_hint": "commands/security-review.ts",
855
+ "responsibility": "Command module mirrored from archived TypeScript path commands/security-review.ts"
856
+ },
857
+ {
858
+ "name": "session",
859
+ "source_hint": "commands/session/index.ts",
860
+ "responsibility": "Command module mirrored from archived TypeScript path commands/session/index.ts"
861
+ },
862
+ {
863
+ "name": "session",
864
+ "source_hint": "commands/session/session.tsx",
865
+ "responsibility": "Command module mirrored from archived TypeScript path commands/session/session.tsx"
866
+ },
867
+ {
868
+ "name": "share",
869
+ "source_hint": "commands/share/index.js",
870
+ "responsibility": "Command module mirrored from archived TypeScript path commands/share/index.js"
871
+ },
872
+ {
873
+ "name": "skills",
874
+ "source_hint": "commands/skills/index.ts",
875
+ "responsibility": "Command module mirrored from archived TypeScript path commands/skills/index.ts"
876
+ },
877
+ {
878
+ "name": "skills",
879
+ "source_hint": "commands/skills/skills.tsx",
880
+ "responsibility": "Command module mirrored from archived TypeScript path commands/skills/skills.tsx"
881
+ },
882
+ {
883
+ "name": "stats",
884
+ "source_hint": "commands/stats/index.ts",
885
+ "responsibility": "Command module mirrored from archived TypeScript path commands/stats/index.ts"
886
+ },
887
+ {
888
+ "name": "stats",
889
+ "source_hint": "commands/stats/stats.tsx",
890
+ "responsibility": "Command module mirrored from archived TypeScript path commands/stats/stats.tsx"
891
+ },
892
+ {
893
+ "name": "status",
894
+ "source_hint": "commands/status/index.ts",
895
+ "responsibility": "Command module mirrored from archived TypeScript path commands/status/index.ts"
896
+ },
897
+ {
898
+ "name": "status",
899
+ "source_hint": "commands/status/status.tsx",
900
+ "responsibility": "Command module mirrored from archived TypeScript path commands/status/status.tsx"
901
+ },
902
+ {
903
+ "name": "statusline",
904
+ "source_hint": "commands/statusline.tsx",
905
+ "responsibility": "Command module mirrored from archived TypeScript path commands/statusline.tsx"
906
+ },
907
+ {
908
+ "name": "stickers",
909
+ "source_hint": "commands/stickers/index.ts",
910
+ "responsibility": "Command module mirrored from archived TypeScript path commands/stickers/index.ts"
911
+ },
912
+ {
913
+ "name": "stickers",
914
+ "source_hint": "commands/stickers/stickers.ts",
915
+ "responsibility": "Command module mirrored from archived TypeScript path commands/stickers/stickers.ts"
916
+ },
917
+ {
918
+ "name": "summary",
919
+ "source_hint": "commands/summary/index.js",
920
+ "responsibility": "Command module mirrored from archived TypeScript path commands/summary/index.js"
921
+ },
922
+ {
923
+ "name": "tag",
924
+ "source_hint": "commands/tag/index.ts",
925
+ "responsibility": "Command module mirrored from archived TypeScript path commands/tag/index.ts"
926
+ },
927
+ {
928
+ "name": "tag",
929
+ "source_hint": "commands/tag/tag.tsx",
930
+ "responsibility": "Command module mirrored from archived TypeScript path commands/tag/tag.tsx"
931
+ },
932
+ {
933
+ "name": "tasks",
934
+ "source_hint": "commands/tasks/index.ts",
935
+ "responsibility": "Command module mirrored from archived TypeScript path commands/tasks/index.ts"
936
+ },
937
+ {
938
+ "name": "tasks",
939
+ "source_hint": "commands/tasks/tasks.tsx",
940
+ "responsibility": "Command module mirrored from archived TypeScript path commands/tasks/tasks.tsx"
941
+ },
942
+ {
943
+ "name": "teleport",
944
+ "source_hint": "commands/teleport/index.js",
945
+ "responsibility": "Command module mirrored from archived TypeScript path commands/teleport/index.js"
946
+ },
947
+ {
948
+ "name": "terminalSetup",
949
+ "source_hint": "commands/terminalSetup/index.ts",
950
+ "responsibility": "Command module mirrored from archived TypeScript path commands/terminalSetup/index.ts"
951
+ },
952
+ {
953
+ "name": "terminalSetup",
954
+ "source_hint": "commands/terminalSetup/terminalSetup.tsx",
955
+ "responsibility": "Command module mirrored from archived TypeScript path commands/terminalSetup/terminalSetup.tsx"
956
+ },
957
+ {
958
+ "name": "theme",
959
+ "source_hint": "commands/theme/index.ts",
960
+ "responsibility": "Command module mirrored from archived TypeScript path commands/theme/index.ts"
961
+ },
962
+ {
963
+ "name": "theme",
964
+ "source_hint": "commands/theme/theme.tsx",
965
+ "responsibility": "Command module mirrored from archived TypeScript path commands/theme/theme.tsx"
966
+ },
967
+ {
968
+ "name": "thinkback",
969
+ "source_hint": "commands/thinkback/index.ts",
970
+ "responsibility": "Command module mirrored from archived TypeScript path commands/thinkback/index.ts"
971
+ },
972
+ {
973
+ "name": "thinkback",
974
+ "source_hint": "commands/thinkback/thinkback.tsx",
975
+ "responsibility": "Command module mirrored from archived TypeScript path commands/thinkback/thinkback.tsx"
976
+ },
977
+ {
978
+ "name": "thinkback-play",
979
+ "source_hint": "commands/thinkback-play/index.ts",
980
+ "responsibility": "Command module mirrored from archived TypeScript path commands/thinkback-play/index.ts"
981
+ },
982
+ {
983
+ "name": "thinkback-play",
984
+ "source_hint": "commands/thinkback-play/thinkback-play.ts",
985
+ "responsibility": "Command module mirrored from archived TypeScript path commands/thinkback-play/thinkback-play.ts"
986
+ },
987
+ {
988
+ "name": "ultraplan",
989
+ "source_hint": "commands/ultraplan.tsx",
990
+ "responsibility": "Command module mirrored from archived TypeScript path commands/ultraplan.tsx"
991
+ },
992
+ {
993
+ "name": "upgrade",
994
+ "source_hint": "commands/upgrade/index.ts",
995
+ "responsibility": "Command module mirrored from archived TypeScript path commands/upgrade/index.ts"
996
+ },
997
+ {
998
+ "name": "upgrade",
999
+ "source_hint": "commands/upgrade/upgrade.tsx",
1000
+ "responsibility": "Command module mirrored from archived TypeScript path commands/upgrade/upgrade.tsx"
1001
+ },
1002
+ {
1003
+ "name": "usage",
1004
+ "source_hint": "commands/usage/index.ts",
1005
+ "responsibility": "Command module mirrored from archived TypeScript path commands/usage/index.ts"
1006
+ },
1007
+ {
1008
+ "name": "usage",
1009
+ "source_hint": "commands/usage/usage.tsx",
1010
+ "responsibility": "Command module mirrored from archived TypeScript path commands/usage/usage.tsx"
1011
+ },
1012
+ {
1013
+ "name": "version",
1014
+ "source_hint": "commands/version.ts",
1015
+ "responsibility": "Command module mirrored from archived TypeScript path commands/version.ts"
1016
+ },
1017
+ {
1018
+ "name": "vim",
1019
+ "source_hint": "commands/vim/index.ts",
1020
+ "responsibility": "Command module mirrored from archived TypeScript path commands/vim/index.ts"
1021
+ },
1022
+ {
1023
+ "name": "vim",
1024
+ "source_hint": "commands/vim/vim.ts",
1025
+ "responsibility": "Command module mirrored from archived TypeScript path commands/vim/vim.ts"
1026
+ },
1027
+ {
1028
+ "name": "voice",
1029
+ "source_hint": "commands/voice/index.ts",
1030
+ "responsibility": "Command module mirrored from archived TypeScript path commands/voice/index.ts"
1031
+ },
1032
+ {
1033
+ "name": "voice",
1034
+ "source_hint": "commands/voice/voice.ts",
1035
+ "responsibility": "Command module mirrored from archived TypeScript path commands/voice/voice.ts"
1036
+ }
1037
+ ]