dsh-aris-panel 0.1.2 → 0.1.3

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 (2) hide show
  1. package/dsh/client.js +51 -1
  2. package/package.json +1 -1
package/dsh/client.js CHANGED
@@ -566,7 +566,57 @@ function ArisWorkbenchButton(props) {
566
566
  open ? h(ArisWorkbenchView, { connection: props.connection, sessions: props.sessions, sessionId: props.sessionId, onClose: function () { setOpen(false) } }) : null)
567
567
  }
568
568
 
569
- const WB_CSS = `.wb-panorama { margin-bottom: 18px; border: 1px solid #e0e0e0; border-radius: 6px; padding: 12px 16px; background: #f7f7f7; }
569
+ const WB_CSS = `.wb-overlay { position: fixed; inset: 0; z-index: 9999; background: #ffffff; color: #1f1f1f; padding: 20px 28px; overflow-y: auto; font-size: 13px; line-height: 1.6; font-family: ui-sans-serif, system-ui, sans-serif; }
570
+ .wb-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e0e0e0; padding-bottom: 10px; margin-bottom: 14px; }
571
+ .wb-title { font-size: 17px; font-weight: 700; letter-spacing: .02em; color: #1f1f1f; }
572
+ .wb-actions { display: flex; gap: 8px; }
573
+ .wb-btn { background: #007acc; color: #fff; border: 0; border-radius: 4px; padding: 5px 14px; font-size: 12px; cursor: pointer; }
574
+ .wb-btn:disabled { opacity: .55; cursor: default; }
575
+ .wb-btn-close { background: #e8e8e8; color: #333333; }
576
+ .wb-btn-copy { background: #e8e8e8; color: #333333; }
577
+ .wb-picker { margin-bottom: 12px; }
578
+ .wb-picker label { color: #333333; }
579
+ .wb-picker select { background: #ffffff; color: #1f1f1f; border: 1px solid #c8c8c8; border-radius: 4px; padding: 4px 8px; font-size: 12px; max-width: 70%; }
580
+ .wb-section { margin-bottom: 20px; border: 1px solid #e4e4e4; border-radius: 6px; padding: 12px 16px; background: #fafafa; }
581
+ .wb-section h3 { margin: 0 0 10px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; opacity: .6; font-weight: 700; color: #1f1f1f; }
582
+ .wb-row { display: flex; gap: 12px; padding: 2px 0; }
583
+ .wb-key { flex: 0 0 150px; opacity: .7; }
584
+ .wb-val { flex: 1; word-break: break-word; }
585
+ .wb-note { opacity: .55; font-size: 12px; margin: 6px 0; }
586
+ .wb-list { margin: 6px 0; padding-left: 18px; }
587
+ .wb-list li { padding: 1px 0; font-size: 12px; }
588
+ .wb-dot-ok { color: #107c10; }
589
+ .wb-dot-missing { opacity: .35; }
590
+ .wb-error { color: #c42b1c; background: #fdeeee; border: 1px solid #e5b9b5; border-radius: 6px; padding: 8px 12px; margin: 10px 0; font-size: 12px; }
591
+ .wb-pre { background: #f5f5f5; border-radius: 4px; padding: 8px 10px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; white-space: pre-wrap; word-break: break-word; max-height: 180px; overflow-y: auto; margin: 6px 0; color: #24292e; }
592
+ .wb-file { margin: 6px 0; }
593
+ .wb-file-name { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: #0066b8; }
594
+ .wb-meta { opacity: .55; font-size: 11px; margin-left: 8px; }
595
+ .wb-sidebar-entry { padding: 4px 6px; }
596
+ .wb-sidebar-toggle { width: 100%; background: transparent; color: inherit; border: 1px solid transparent; border-radius: 4px; padding: 5px 8px; font-size: 12px; cursor: pointer; text-align: left; }
597
+ .wb-sidebar-toggle:hover { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.12); }
598
+ .wb-badge { display: inline-block; border-radius: 10px; padding: 1px 8px; font-size: 10px; margin-left: 6px; background: #e8e8e8; border: 1px solid #d0d0d0; color: #1f1f1f; }
599
+ .wb-guide { margin-bottom: 18px; border: 1px solid #e0e0e0; border-radius: 6px; padding: 12px 16px; background: #f7f7f7; }
600
+ .wb-guide-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: #1f1f1f; }
601
+ .wb-stages { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
602
+ .wb-stage { border: 1px solid #e6e6e6; border-radius: 6px; padding: 8px 10px; opacity: .55; background: #ffffff; }
603
+ .wb-stage-done { opacity: .8; }
604
+ .wb-stage-cur { opacity: 1; border-color: #007acc; background: #e8f4ff; }
605
+ .wb-stage-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
606
+ .wb-stage-mark { flex: 0 0 20px; height: 20px; line-height: 20px; text-align: center; border-radius: 50%; background: #e8e8e8; font-size: 11px; color: #1f1f1f; }
607
+ .wb-stage-done .wb-stage-mark { background: #107c10; color: #ffffff; }
608
+ .wb-stage-cur .wb-stage-mark { background: #007acc; color: #ffffff; }
609
+ .wb-stage-title { font-size: 13px; font-weight: 600; }
610
+ .wb-stage-desc { font-size: 11px; opacity: .7; margin-bottom: 6px; }
611
+ .wb-stage-skills { display: flex; flex-wrap: wrap; gap: 6px; }
612
+ .wb-skill-chip { background: #eef4fb; color: #0066b8; border: 1px solid #99c9f0; border-radius: 12px; padding: 2px 10px; font-size: 11px; cursor: pointer; }
613
+ .wb-skill-chip:hover { background: #007acc; color: #ffffff; }
614
+ .wb-guide-next { margin-top: 10px; font-size: 12px; opacity: .85; }
615
+ .wb-trigger { margin-bottom: 18px; border: 1px solid #e0e0e0; border-radius: 6px; padding: 12px 16px; background: #f7f7f7; }
616
+ .wb-trigger-row { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
617
+ .wb-skill-select { flex: 1 1 420px; background: #ffffff; color: #1f1f1f; border: 1px solid #c8c8c8; border-radius: 4px; padding: 6px 10px; font-size: 12px; min-width: 260px; }
618
+ .wb-args { flex: 1 1 280px; background: #ffffff; color: #1f1f1f; border: 1px solid #c8c8c8; border-radius: 4px; padding: 6px 10px; font-size: 12px; min-width: 200px; }
619
+ .wb-status { font-size: 12px; color: #107c10; margin-top: 4px; }.wb-panorama { margin-bottom: 18px; border: 1px solid #e0e0e0; border-radius: 6px; padding: 12px 16px; background: #f7f7f7; }
570
620
  .wb-pano-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
571
621
  .wb-pano-group-label { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: .55; font-weight: 700; flex: 0 0 44px; }
572
622
  .wb-chip-row { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-aris-panel",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "ARIS research-workflow skills + interactive workbench panel for DeepSeek Harness (user fork of dsh-aris: 82 skills, cross-model Codex review, idea/workflow launcher, research status board).",
5
5
  "license": "MIT",
6
6
  "type": "module",