opensteer 0.8.18 → 0.9.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 (40) hide show
  1. package/README.md +5 -5
  2. package/dist/chunk-4LP7QP2O.js +4336 -0
  3. package/dist/chunk-4LP7QP2O.js.map +1 -0
  4. package/dist/{chunk-GQ3PGLYQ.js → chunk-6PGXWW3X.js} +5142 -9634
  5. package/dist/chunk-6PGXWW3X.js.map +1 -0
  6. package/dist/chunk-BMPUL66S.js +1170 -0
  7. package/dist/chunk-BMPUL66S.js.map +1 -0
  8. package/dist/{chunk-T6TG4WO2.js → chunk-L4FWHBQJ.js} +4 -3
  9. package/dist/chunk-L4FWHBQJ.js.map +1 -0
  10. package/dist/chunk-Z53HNZ7Z.js +1800 -0
  11. package/dist/chunk-Z53HNZ7Z.js.map +1 -0
  12. package/dist/cli/bin.cjs +3533 -499
  13. package/dist/cli/bin.cjs.map +1 -1
  14. package/dist/cli/bin.js +130 -11
  15. package/dist/cli/bin.js.map +1 -1
  16. package/dist/index.cjs +1382 -487
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.d.cts +20 -27
  19. package/dist/index.d.ts +20 -27
  20. package/dist/index.js +4 -2
  21. package/dist/local-view/public/assets/app.css +770 -0
  22. package/dist/local-view/public/assets/app.js +2053 -0
  23. package/dist/local-view/public/index.html +235 -0
  24. package/dist/local-view/serve-entry.cjs +7436 -0
  25. package/dist/local-view/serve-entry.cjs.map +1 -0
  26. package/dist/local-view/serve-entry.d.cts +1 -0
  27. package/dist/local-view/serve-entry.d.ts +1 -0
  28. package/dist/local-view/serve-entry.js +23 -0
  29. package/dist/local-view/serve-entry.js.map +1 -0
  30. package/dist/opensteer-KZCRP425.js +6 -0
  31. package/dist/{opensteer-XMCWYUH3.js.map → opensteer-KZCRP425.js.map} +1 -1
  32. package/dist/session-control-VGBFOH3Y.js +39 -0
  33. package/dist/session-control-VGBFOH3Y.js.map +1 -0
  34. package/package.json +8 -8
  35. package/skills/README.md +12 -6
  36. package/skills/opensteer/SKILL.md +275 -217
  37. package/skills/recorder/SKILL.md +1 -1
  38. package/dist/chunk-GQ3PGLYQ.js.map +0 -1
  39. package/dist/chunk-T6TG4WO2.js.map +0 -1
  40. package/dist/opensteer-XMCWYUH3.js +0 -4
@@ -0,0 +1,235 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Opensteer Local</title>
7
+ <link rel="stylesheet" href="/assets/app.css" />
8
+ </head>
9
+ <body>
10
+ <div class="app-shell">
11
+ <aside class="sidebar">
12
+ <div class="brand-block">
13
+ <div class="brand-row">
14
+ <svg class="brand-icon" viewBox="0 0 64 64" role="img" aria-label="Opensteer">
15
+ <defs>
16
+ <radialGradient id="opensteer-brand-fill" cx="34%" cy="22%" r="78%">
17
+ <stop offset="0" stop-color="#ffffff" />
18
+ <stop offset="0.58" stop-color="#eee9e4" />
19
+ <stop offset="1" stop-color="#efc6ba" />
20
+ </radialGradient>
21
+ </defs>
22
+ <circle cx="32" cy="32" r="25" fill="url(#opensteer-brand-fill)" />
23
+ </svg>
24
+ <span class="brand-name">Opensteer</span>
25
+ <span class="brand-badge">Local</span>
26
+ </div>
27
+ <button
28
+ id="stop-view-button"
29
+ class="local-view-toggle"
30
+ type="button"
31
+ data-testid="stop-view-button"
32
+ >
33
+ Turn View Off
34
+ </button>
35
+ </div>
36
+ <div class="sidebar-tab-bar">
37
+ <div class="sidebar-tab-bar-inner">
38
+ <button class="sidebar-tab is-active" type="button">Sessions</button>
39
+ </div>
40
+ </div>
41
+ <div class="sidebar-scroll">
42
+ <div id="session-list" class="session-list" data-testid="session-list"></div>
43
+ </div>
44
+ </aside>
45
+
46
+ <main class="main-shell">
47
+ <div class="viewer-area">
48
+ <div class="browser-frame">
49
+ <div class="browser-chrome">
50
+ <div class="chrome-top-row">
51
+ <div class="window-dots">
52
+ <span class="wdot wdot-close"></span>
53
+ <span class="wdot wdot-min"></span>
54
+ <span class="wdot wdot-max"></span>
55
+ </div>
56
+ <div class="chrome-nav">
57
+ <button
58
+ id="back-button"
59
+ class="chrome-nav-btn"
60
+ type="button"
61
+ aria-label="Back"
62
+ data-testid="back-button"
63
+ >
64
+ <svg
65
+ width="14"
66
+ height="14"
67
+ viewBox="0 0 24 24"
68
+ fill="none"
69
+ stroke="currentColor"
70
+ stroke-width="2"
71
+ stroke-linecap="round"
72
+ stroke-linejoin="round"
73
+ >
74
+ <polyline points="15 18 9 12 15 6" />
75
+ </svg>
76
+ </button>
77
+ <button
78
+ id="forward-button"
79
+ class="chrome-nav-btn"
80
+ type="button"
81
+ aria-label="Forward"
82
+ >
83
+ <svg
84
+ width="14"
85
+ height="14"
86
+ viewBox="0 0 24 24"
87
+ fill="none"
88
+ stroke="currentColor"
89
+ stroke-width="2"
90
+ stroke-linecap="round"
91
+ stroke-linejoin="round"
92
+ >
93
+ <polyline points="9 18 15 12 9 6" />
94
+ </svg>
95
+ </button>
96
+ <button
97
+ id="reload-button"
98
+ class="chrome-nav-btn"
99
+ type="button"
100
+ aria-label="Reload"
101
+ data-testid="reload-button"
102
+ >
103
+ <svg
104
+ width="13"
105
+ height="13"
106
+ viewBox="0 0 24 24"
107
+ fill="none"
108
+ stroke="currentColor"
109
+ stroke-width="2"
110
+ stroke-linecap="round"
111
+ stroke-linejoin="round"
112
+ >
113
+ <polyline points="23 4 23 10 17 10" />
114
+ <path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10" />
115
+ </svg>
116
+ </button>
117
+ <button
118
+ id="new-tab-button"
119
+ class="chrome-nav-btn"
120
+ type="button"
121
+ aria-label="New tab"
122
+ data-testid="new-tab-button"
123
+ >
124
+ <svg
125
+ width="14"
126
+ height="14"
127
+ viewBox="0 0 24 24"
128
+ fill="none"
129
+ stroke="currentColor"
130
+ stroke-width="2"
131
+ stroke-linecap="round"
132
+ stroke-linejoin="round"
133
+ >
134
+ <line x1="12" y1="5" x2="12" y2="19" />
135
+ <line x1="5" y1="12" x2="19" y2="12" />
136
+ </svg>
137
+ </button>
138
+ </div>
139
+ <div id="tab-strip" class="chrome-tabs" data-testid="tab-strip"></div>
140
+ <div id="status-indicator" class="chrome-status">
141
+ <span id="status-dot" class="chrome-status-dot"></span>
142
+ <span id="status-label" class="chrome-status-label"></span>
143
+ <span id="status-text" class="sr-only" data-testid="status-text"></span>
144
+ </div>
145
+ <button
146
+ id="close-browser-button"
147
+ class="chrome-browser-action"
148
+ type="button"
149
+ aria-label="Close browser"
150
+ data-testid="close-browser-button"
151
+ >
152
+ Close Browser
153
+ </button>
154
+ </div>
155
+ <div class="chrome-url-row">
156
+ <form id="address-form" class="chrome-url-bar">
157
+ <svg
158
+ class="chrome-url-icon"
159
+ width="12"
160
+ height="12"
161
+ viewBox="0 0 24 24"
162
+ fill="none"
163
+ stroke="currentColor"
164
+ stroke-width="2"
165
+ stroke-linecap="round"
166
+ stroke-linejoin="round"
167
+ >
168
+ <circle cx="12" cy="12" r="10" />
169
+ <line x1="2" y1="12" x2="22" y2="12" />
170
+ <path
171
+ d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
172
+ />
173
+ </svg>
174
+ <input
175
+ id="address-input"
176
+ class="chrome-url-input"
177
+ type="text"
178
+ autocomplete="off"
179
+ spellcheck="false"
180
+ placeholder="Search or enter URL"
181
+ data-testid="address-input"
182
+ />
183
+ </form>
184
+ </div>
185
+ </div>
186
+ <div class="browser-viewport">
187
+ <div
188
+ id="viewer-surface"
189
+ class="viewer-surface"
190
+ tabindex="0"
191
+ aria-label="Browser viewer"
192
+ data-testid="viewer-surface"
193
+ >
194
+ <img
195
+ id="viewer-image"
196
+ class="viewer-image"
197
+ alt=""
198
+ draggable="false"
199
+ data-testid="viewer-image"
200
+ />
201
+ <div id="viewer-empty" class="viewer-empty">
202
+ <svg
203
+ class="viewer-empty-icon"
204
+ width="48"
205
+ height="48"
206
+ viewBox="0 0 24 24"
207
+ fill="none"
208
+ stroke="currentColor"
209
+ stroke-width="1"
210
+ stroke-linecap="round"
211
+ stroke-linejoin="round"
212
+ >
213
+ <circle cx="12" cy="12" r="10" />
214
+ <line x1="2" y1="12" x2="22" y2="12" />
215
+ <path
216
+ d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
217
+ />
218
+ </svg>
219
+ <span id="viewer-empty-text" class="viewer-empty-label"
220
+ >No live browser selected</span
221
+ >
222
+ </div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </main>
228
+ </div>
229
+
230
+ <script>
231
+ window.__OPENSTEER_LOCAL_BOOTSTRAP__ = __OPENSTEER_LOCAL_BOOTSTRAP_JSON__;
232
+ </script>
233
+ <script type="module" src="/assets/app.js"></script>
234
+ </body>
235
+ </html>