create-walle 0.9.19 → 0.9.21
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 +2 -2
- package/package.json +1 -1
- package/template/claude-task-manager/db.js +131 -0
- package/template/claude-task-manager/docs/microsoft-dev-tunnel-phone-access-design.md +58 -50
- package/template/claude-task-manager/docs/phone-access-design.md +23 -7
- package/template/claude-task-manager/docs/walle-session-model-preferences.md +119 -0
- package/template/claude-task-manager/lib/microsoft-dev-tunnel-setup.js +32 -48
- package/template/claude-task-manager/lib/remote-relay-protocol.js +5 -0
- package/template/claude-task-manager/lib/walle-external-actions.js +20 -3
- package/template/claude-task-manager/public/index.html +25 -0
- package/template/claude-task-manager/public/js/setup.js +16 -12
- package/template/claude-task-manager/public/js/walle-session.js +31 -3
- package/template/claude-task-manager/public/js/walle.js +93 -23
- package/template/claude-task-manager/public/m/app.css +417 -21
- package/template/claude-task-manager/public/m/app.js +831 -44
- package/template/claude-task-manager/public/m/claim.html +1 -1
- package/template/claude-task-manager/public/m/index.html +41 -7
- package/template/claude-task-manager/public/m/sw.js +1 -1
- package/template/claude-task-manager/server.js +377 -30
- package/template/claude-task-manager/workers/state-detectors/codex.js +18 -3
- package/template/package.json +1 -1
- package/template/wall-e/chat.js +32 -2
- package/template/wall-e/coding/stream-processor.js +36 -0
- package/template/wall-e/coding-orchestrator.js +45 -0
- package/template/wall-e/deploy.sh +1 -1
- package/template/wall-e/docs/external-action-controller.md +60 -2
- package/template/wall-e/external-action-controller.js +23 -1
- package/template/wall-e/external-action-gateway.js +163 -0
- package/template/wall-e/fly.toml +1 -0
- package/template/wall-e/tools/local-tools.js +122 -4
- package/template/website/index.html +2 -2
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, interactive-widget=resizes-content">
|
|
6
6
|
<title>Pair Phone - CTM</title>
|
|
7
7
|
<link rel="manifest" href="/manifest.json">
|
|
8
|
-
<link rel="stylesheet" href="/m/app.css?v=20260519-
|
|
8
|
+
<link rel="stylesheet" href="/m/app.css?v=20260519-walle-phone-model-picker">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
11
|
<main class="claim-shell">
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
<link rel="icon" type="image/png" sizes="32x32" href="/icon-32.png">
|
|
49
49
|
<link rel="apple-touch-icon" sizes="180x180" href="/icon-180.png">
|
|
50
50
|
<link rel="manifest" href="/manifest.json">
|
|
51
|
-
<link rel="stylesheet" href="/m/app.css?v=20260519-
|
|
51
|
+
<link rel="stylesheet" href="/m/app.css?v=20260519-walle-phone-model-picker">
|
|
52
52
|
</head>
|
|
53
53
|
<body class="mobile-app">
|
|
54
54
|
<header class="app-topbar">
|
|
@@ -127,17 +127,37 @@
|
|
|
127
127
|
<section id="detail-alert" class="detail-alert" hidden></section>
|
|
128
128
|
<section id="detail-controls" class="detail-controls" hidden></section>
|
|
129
129
|
<section id="detail-messages" class="detail-messages" aria-live="polite"></section>
|
|
130
|
-
<form id="detail-composer" class="composer" autocomplete="off" autocorrect="
|
|
130
|
+
<form id="detail-composer" class="composer" autocomplete="off" autocorrect="on" autocapitalize="sentences" spellcheck="true">
|
|
131
131
|
<div class="composer-field">
|
|
132
132
|
<span id="detail-input-label" class="sr-only">Reply</span>
|
|
133
133
|
<div id="composer-attachments" class="composer-attachments" aria-label="Attachments" hidden></div>
|
|
134
|
-
<div id="
|
|
134
|
+
<div id="prompt-history-strip" class="prompt-history-strip" hidden>
|
|
135
|
+
<div class="prompt-history-copy">
|
|
136
|
+
<strong id="prompt-history-title">Prompt history</strong>
|
|
137
|
+
<span id="prompt-history-meta">Previous prompt loaded.</span>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="prompt-history-actions" aria-label="Prompt history controls">
|
|
140
|
+
<button id="prompt-history-prev" type="button">Previous</button>
|
|
141
|
+
<button id="prompt-history-next" type="button">Next</button>
|
|
142
|
+
<button id="prompt-history-edit" type="button">Edit</button>
|
|
143
|
+
<button id="prompt-history-close" type="button" aria-label="Hide prompt history controls">×</button>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
<div id="detail-input" class="composer-editor" contenteditable="true" role="textbox" aria-multiline="true" aria-labelledby="detail-input-label" aria-describedby="composer-status" data-placeholder="Type a reply" inputmode="text" enterkeyhint="send" autocomplete="off" autocorrect="on" autocapitalize="sentences" spellcheck="true" data-form-type="other" data-text-assist="natural"></div>
|
|
135
147
|
<button id="detail-clear" class="composer-clear" type="button" aria-label="Clear reply" title="Clear reply" hidden><span aria-hidden="true">×</span></button>
|
|
136
148
|
<div id="mobile-skill-picker" class="mobile-skill-picker" role="listbox" aria-label="Skill suggestions" hidden></div>
|
|
137
149
|
<div id="composer-status" class="composer-status" aria-live="polite"></div>
|
|
138
150
|
</div>
|
|
151
|
+
<button id="detail-model" class="model-picker-btn" type="button" aria-label="Choose model for this Wall-E session" aria-haspopup="dialog" aria-expanded="false" hidden>
|
|
152
|
+
<span class="model-picker-btn-kicker">Model</span>
|
|
153
|
+
<span id="detail-model-label" class="model-picker-btn-label">Auto</span>
|
|
154
|
+
</button>
|
|
139
155
|
<button id="detail-send" class="send-btn" type="submit" aria-label="Send" aria-haspopup="menu" aria-expanded="false"><span aria-hidden="true">➤</span></button>
|
|
140
156
|
<div id="send-menu" class="send-menu" role="menu" hidden>
|
|
157
|
+
<div class="send-menu-header" role="presentation">
|
|
158
|
+
<strong>Session actions</strong>
|
|
159
|
+
<span>Recall a prompt, attach context, or control the live terminal.</span>
|
|
160
|
+
</div>
|
|
141
161
|
<button id="send-prev-prompt-option" class="send-menu-item" type="button" role="menuitem" data-send-menu-control="previous">Previous prompt</button>
|
|
142
162
|
<button id="send-next-prompt-option" class="send-menu-item" type="button" role="menuitem" data-send-menu-control="next">Next prompt</button>
|
|
143
163
|
<button id="send-copy-url-option" class="send-menu-item" type="button" role="menuitem" data-send-menu-copy>Copy session URL</button>
|
|
@@ -169,6 +189,19 @@
|
|
|
169
189
|
</section>
|
|
170
190
|
</div>
|
|
171
191
|
|
|
192
|
+
<div id="model-picker-sheet" class="modal-backdrop" hidden>
|
|
193
|
+
<section class="model-picker-sheet" role="dialog" aria-modal="true" aria-labelledby="model-picker-title">
|
|
194
|
+
<div class="model-picker-head">
|
|
195
|
+
<div>
|
|
196
|
+
<h2 id="model-picker-title">Session model</h2>
|
|
197
|
+
<p id="model-picker-current">Use a specific coding model for this Wall-E session.</p>
|
|
198
|
+
</div>
|
|
199
|
+
<button id="model-picker-close" class="model-picker-close" type="button" aria-label="Close model picker">×</button>
|
|
200
|
+
</div>
|
|
201
|
+
<div id="model-picker-list" class="model-picker-list" role="listbox" aria-label="Available coding models"></div>
|
|
202
|
+
</section>
|
|
203
|
+
</div>
|
|
204
|
+
|
|
172
205
|
<div id="new-session-sheet" class="modal-backdrop" hidden>
|
|
173
206
|
<form id="new-session-form" class="stepup-sheet" role="dialog" aria-modal="true" aria-labelledby="new-session-title">
|
|
174
207
|
<h2 id="new-session-title">New Session</h2>
|
|
@@ -182,6 +215,7 @@
|
|
|
182
215
|
<option value="claude">Claude Code</option>
|
|
183
216
|
<option value="codex">Codex</option>
|
|
184
217
|
<option value="gemini">Gemini</option>
|
|
218
|
+
<option value="walle">Wall-E Coding</option>
|
|
185
219
|
<option value="shell">Shell</option>
|
|
186
220
|
</select>
|
|
187
221
|
</label>
|
|
@@ -205,9 +239,9 @@
|
|
|
205
239
|
</script>
|
|
206
240
|
<script src="https://cdn.jsdelivr.net/npm/marked@15.0.7/marked.min.js"></script>
|
|
207
241
|
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.2.4/dist/purify.min.js"></script>
|
|
208
|
-
<script src="/js/session-search-utils.js?v=20260519-
|
|
209
|
-
<script src="/js/image-normalize.js?v=20260519-
|
|
210
|
-
<script src="/js/message-renderer.js?v=20260519-
|
|
211
|
-
<script src="/m/app.js?v=20260519-
|
|
242
|
+
<script src="/js/session-search-utils.js?v=20260519-walle-phone-model-picker"></script>
|
|
243
|
+
<script src="/js/image-normalize.js?v=20260519-walle-phone-model-picker"></script>
|
|
244
|
+
<script src="/js/message-renderer.js?v=20260519-walle-phone-model-picker"></script>
|
|
245
|
+
<script src="/m/app.js?v=20260519-walle-phone-model-picker"></script>
|
|
212
246
|
</body>
|
|
213
247
|
</html>
|