@lazyingart/agintiflow 0.20.15 → 0.20.16

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.15",
3
+ "version": "0.20.16",
4
4
  "type": "module",
5
5
  "description": "AgInTiFlow is a web-first coding agent and CLI with DeepSeek routing, sandboxed tools, model providers, canvas artifacts, and optional wrappers.",
6
6
  "license": "Apache-2.0",
package/public/index.html CHANGED
@@ -36,10 +36,13 @@
36
36
  <p class="subtle" data-i18n="intro">
37
37
  Browser agent with provider selection, resumable runs, persisted settings, and an optional guarded shell tool with Docker sandbox support.
38
38
  </p>
39
- <section class="project-card">
40
- <strong data-i18n="projectStatusTitle">Project folder</strong>
39
+ <details class="project-card">
40
+ <summary>
41
+ <strong data-i18n="projectStatusTitle">Project folder</strong>
42
+ <span class="project-card-toggle" aria-hidden="true"></span>
43
+ </summary>
41
44
  <p id="project-status" class="subtle">Loading project context...</p>
42
- </section>
45
+ </details>
43
46
 
44
47
  <section id="setup-card" class="setup-card" hidden>
45
48
  <div>
package/public/styles.css CHANGED
@@ -290,9 +290,7 @@ h1 {
290
290
 
291
291
  .project-card,
292
292
  .setup-card {
293
- display: grid;
294
293
  min-width: 0;
295
- gap: 10px;
296
294
  margin: 14px 0;
297
295
  padding: 13px;
298
296
  border: 1px solid rgba(15, 118, 110, 0.18);
@@ -300,11 +298,73 @@ h1 {
300
298
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.44), rgba(255, 247, 237, 0.9));
301
299
  }
302
300
 
301
+ .setup-card {
302
+ display: grid;
303
+ gap: 10px;
304
+ }
305
+
306
+ .project-card {
307
+ display: block;
308
+ }
309
+
310
+ .project-card summary {
311
+ display: flex;
312
+ align-items: center;
313
+ justify-content: space-between;
314
+ gap: 12px;
315
+ min-width: 0;
316
+ list-style: none;
317
+ cursor: pointer;
318
+ }
319
+
320
+ .project-card summary::-webkit-details-marker {
321
+ display: none;
322
+ }
323
+
324
+ .project-card summary strong {
325
+ min-width: 0;
326
+ }
327
+
328
+ .project-card summary:focus-visible {
329
+ border-radius: 10px;
330
+ outline: 3px solid rgba(15, 118, 110, 0.22);
331
+ outline-offset: 4px;
332
+ }
333
+
334
+ .project-card-toggle {
335
+ display: inline-grid;
336
+ width: 30px;
337
+ height: 30px;
338
+ flex: 0 0 auto;
339
+ place-items: center;
340
+ border: 1px solid rgba(15, 118, 110, 0.22);
341
+ border-radius: 999px;
342
+ background: rgba(255, 253, 250, 0.78);
343
+ color: var(--accent);
344
+ font-size: 0.88rem;
345
+ font-weight: 900;
346
+ }
347
+
348
+ .project-card-toggle::before {
349
+ content: "⌄";
350
+ transform: rotate(-90deg);
351
+ transition: transform 160ms ease;
352
+ }
353
+
354
+ .project-card[open] .project-card-toggle::before {
355
+ transform: rotate(0deg);
356
+ }
357
+
303
358
  .project-card p,
304
359
  .setup-card p {
305
360
  overflow-wrap: anywhere;
306
361
  }
307
362
 
363
+ .project-card p {
364
+ margin: 10px 0 0;
365
+ line-height: 1.55;
366
+ }
367
+
308
368
  .setup-card .key-links {
309
369
  display: flex;
310
370
  flex-wrap: wrap;