conductor-remote 1.45.0 → 1.45.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.
package/dist/index.html
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<title>Conductor Remote</title>
|
|
14
14
|
<!-- Runs before the module bundle so it can catch a stale shell that fails to boot. -->
|
|
15
15
|
<script src="/self-heal.js"></script>
|
|
16
|
-
<script type="module" crossorigin src="/assets/index-
|
|
16
|
+
<script type="module" crossorigin src="/assets/index-DipEmISO.js"></script>
|
|
17
17
|
<link rel="stylesheet" crossorigin href="/assets/index-Dc8zl3H4.css">
|
|
18
18
|
<link rel="manifest" href="/manifest.webmanifest"></head>
|
|
19
19
|
<body>
|
package/dist/sw.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e}));self.define=(n,r)=>{const o=e||("document"in self?document.currentScript.src:"")||location.href;if(s[o])return;let l={};const
|
|
1
|
+
if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e}));self.define=(n,r)=>{const o=e||("document"in self?document.currentScript.src:"")||location.href;if(s[o])return;let l={};const t=e=>i(e,o),c={module:{uri:o},exports:l,require:t};s[o]=Promise.all(n.map(e=>c[e]||t(e))).then(e=>(r(...e),l))}}define(["./workbox-9c191d2f"],function(e){"use strict";importScripts("/push-sw.js"),self.addEventListener("message",e=>{e.data&&"SKIP_WAITING"===e.data.type&&self.skipWaiting()}),e.clientsClaim(),e.precacheAndRoute([{url:"self-heal.js",revision:"49bd63adb25a09341f8d2610e8bd3c76"},{url:"push-sw.js",revision:"e1e682e2e5e88fa03b7808ae9db8e098"},{url:"index.html",revision:"b8ff4e91fba82316703ea53bb0a3f932"},{url:"assets/workbox-window.prod.es5-BBnX5xw4.js",revision:null},{url:"assets/index-DipEmISO.js",revision:null},{url:"assets/index-Dc8zl3H4.css",revision:null},{url:"apple-touch-icon.png",revision:"2b9301416b880d45d4bb655f2600d1f2"},{url:"icon-192.png",revision:"c5e01ac58768627e18ee7b8b6a9239ef"},{url:"icon-512.png",revision:"a40638c55e310312457a621c9a0002c8"},{url:"icon-maskable-512.png",revision:"a40638c55e310312457a621c9a0002c8"},{url:"icon.svg",revision:"c1aee186821798733dd477e69a0ef243"},{url:"manifest.webmanifest",revision:"cf88fbc5755108a7fe0616fa160a8a15"}],{}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("/index.html"),{denylist:[/^\/api\//]}))});
|
|
@@ -194,7 +194,7 @@ export function createTools(call) {
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
name: 'list_chats',
|
|
197
|
-
description: 'List the chat tabs in a workspace
|
|
197
|
+
description: 'List the chat tabs in a workspace with each one’s status, model and how full its context window is. A workspace can hold several conversations, each with its own context; send_prompt and read_chat address one of them.',
|
|
198
198
|
inputSchema: {
|
|
199
199
|
type: 'object',
|
|
200
200
|
properties: { workspace_id: { type: 'string' } },
|
|
@@ -205,8 +205,15 @@ export function createTools(call) {
|
|
|
205
205
|
const data = await call(routes.sessions.path(id));
|
|
206
206
|
if (!data.sessions.length)
|
|
207
207
|
return `no chats in workspace ${id}`;
|
|
208
|
+
// Context is per chat and only per chat — the same workspace can hold a tab at 85%
|
|
209
|
+
// beside one at 28% — so it is printed on every row rather than summarised above.
|
|
208
210
|
return data.sessions
|
|
209
|
-
.map(s =>
|
|
211
|
+
.map(s => {
|
|
212
|
+
const ctx = typeof s.context_used_percent === 'number' && s.context_used_percent > 0
|
|
213
|
+
? ` · ${Math.round(s.context_used_percent)}% context`
|
|
214
|
+
: '';
|
|
215
|
+
return `${s.status === 'working' ? '▶' : '·'} ${s.title ?? '(untitled)'} — ${s.status ?? '?'} · ${s.model ?? '?'}${ctx}\n session_id: ${s.id}`;
|
|
216
|
+
})
|
|
210
217
|
.join('\n');
|
|
211
218
|
}
|
|
212
219
|
},
|
package/dist-node/src/reads.js
CHANGED
|
@@ -105,8 +105,7 @@ export class Reads {
|
|
|
105
105
|
w.state, w.created_at, w.updated_at, w.pinned_at, w.active_session_id, w.intended_target_branch,
|
|
106
106
|
r.name AS repo_name, r.root_path AS repo_root, r.icon AS repo_icon,
|
|
107
107
|
r.remote_url AS remote_url, r.default_branch AS default_branch,
|
|
108
|
-
s.status AS session_status, s.title AS session_title, s.model AS model
|
|
109
|
-
s.context_used_percent AS context_used_percent
|
|
108
|
+
s.status AS session_status, s.title AS session_title, s.model AS model
|
|
110
109
|
FROM workspaces w
|
|
111
110
|
LEFT JOIN repos r ON r.id = w.repository_id
|
|
112
111
|
LEFT JOIN sessions s ON s.id = w.active_session_id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-remote",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "yarn@4.15.0",
|
|
6
6
|
"description": "Phone control panel for local Conductor agents. Reads ride SQLite + git; prompts ride Conductor's own dispatch path.",
|