@rexvane/piweb 0.3.1 → 0.3.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # PiWeb
2
2
 
3
3
  <p align="center">
4
- <strong>A modern web UI for the Pi Coding Agent — inspired by DeepSeek Harness (dsh).</strong>
4
+ <strong>A modern web UI for the Pi Coding Agent.</strong>
5
5
  </p>
6
6
 
7
7
  <p align="center">
@@ -14,7 +14,7 @@
14
14
 
15
15
  ---
16
16
 
17
- **PiWeb** brings a sleek, feature-rich browser interface to the [pi coding agent](https://github.com/earendil-works/pi) with zero modifications to the core Pi engine. Built with Next.js and Tailwind CSS, it aligns visually and interactively with DeepSeek Harness (dsh).
17
+ **PiWeb** brings a sleek, feature-rich browser interface to the [pi coding agent](https://github.com/earendil-works/pi) with zero modifications to the core Pi engine. Built with Next.js and Tailwind CSS.
18
18
 
19
19
  ## Key Features
20
20
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@rexvane/piweb",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "description": "Web UI for the pi coding agent - dsh-look shell driven by the official pi SDK without modifying pi",
6
+ "description": "Modern web UI for the pi coding agent, driven by the official pi SDK without modifying pi",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/RexVane/PiWeb.git"
@@ -1,7 +1,7 @@
1
1
  @import "tailwindcss";
2
2
 
3
3
  /* ============================================================
4
- Pi Web 视觉令牌 —— 对齐 dsh (deepseek-harness) design-platform.css
4
+ Pi Web 视觉令牌
5
5
  浅色默认,深色用 body[data-ds-dark-theme]
6
6
  ============================================================ */
7
7
 
@@ -1,6 +1,5 @@
1
1
  /**
2
- * 图标集 —— SVG path 逐字取自 dsh (deepseek-harness) ui-primitives 的 ic_ds_* 图标集(MIT)。
3
- * 全部 fill="currentColor",{size, className} 与 dsh 相同的props约定。
2
+ * 图标集 —— 全部 fill="currentColor",{size, className} props 约定。
4
3
  */
5
4
  import type { SVGProps } from "react";
6
5
 
@@ -846,7 +846,7 @@ export function usePiWeb() {
846
846
  presetRestorePromiseRef.current = restore;
847
847
  }, [currentId, snapshotEpoch, state.connected, state.snapshot, sendCommand]);
848
848
 
849
- // dsh sessionVisible 合同:当前会话豁免归档过滤——归档当前会话不关闭、
849
+ // 会话可见性规则:当前会话豁免归档过滤——归档当前会话不关闭、
850
850
  // 主列表保持可见可聊,已归档区也不显示它(取消归档前菜单按真实归档态切换)。
851
851
  const visibleSessions = useMemo(() => {
852
852
  const set = new Set(archivedSessionPaths.map(pathKey));