agent-handoff 0.3.0 → 0.5.0
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/CHANGELOG.md +17 -0
- package/README.md +40 -0
- package/dist/index.js +1429 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.5.0] - 2026-03-02
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `agent-handoff index`:workspace registry 与索引落盘(index.json)
|
|
9
|
+
- `agent-handoff search`:跨 workspace 关键字搜索与过滤
|
|
10
|
+
- `agent-handoff diff`:workspace/artifact 差异对比(text/markdown/json)
|
|
11
|
+
- `agent-handoff stats`:统计输出(steps 完成率、events 计数、时长)
|
|
12
|
+
|
|
13
|
+
## [0.4.0] - 2026-03-02
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- `agent-handoff export --format web`:导出静态 Web Timeline Viewer(离线打开)
|
|
17
|
+
- Timeline Viewer:内联 events 数据,无需网络/服务端
|
|
18
|
+
- Artifact Viewer:将 links 指向的产物导出为可点击的 HTML 页面(`timeline/artifacts/`)
|
|
19
|
+
- Timeline 过滤与搜索:按 stepId/type/workItemId 过滤,关键字匹配 summary/data,并同步 URL 参数
|
|
20
|
+
- events.jsonl 读取模块:支持非法行统计、排序与 limit 裁剪(为 Viewer 提供结构化数据)
|
|
21
|
+
|
|
5
22
|
## [0.3.0] - 2026-03-02
|
|
6
23
|
|
|
7
24
|
### Added
|
package/README.md
CHANGED
|
@@ -105,6 +105,46 @@ agent-handoff config [workspace]
|
|
|
105
105
|
agent-handoff report [workspace] [--format markdown|json|html] [--session <id>] [--screenshots] [--output <path>]
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
+
### export
|
|
109
|
+
|
|
110
|
+
导出静态 Web Timeline Viewer(离线 HTML,可直接打开)。
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
agent-handoff export [workspace] --format web [--output <dir>] [--limit <n>]
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### index
|
|
117
|
+
|
|
118
|
+
生成 workspace 索引,并支持 registry 管理。
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
agent-handoff index [workspace] [--add] [--remove <pathOrName>] [--list] [--output <file>] [--json]
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### search
|
|
125
|
+
|
|
126
|
+
在多个 workspace 索引上执行搜索。
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
agent-handoff search <query> [--workspace <pathOrName...>] [--type <t...>] [--step <id...>] [--work-item <id...>] [--limit <n>] [--json]
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### diff
|
|
133
|
+
|
|
134
|
+
对两个 workspace 做基于索引的差异对比。
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
agent-handoff diff <left> <right> [--format text|markdown|json] [--path <p...>] [--context <n>]
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### stats
|
|
141
|
+
|
|
142
|
+
输出 workspace 统计信息(summary/full)。
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
agent-handoff stats [workspace...] [--registry] [--mode summary|full] [--format json|markdown]
|
|
146
|
+
```
|
|
147
|
+
|
|
108
148
|
## Workspace 结构
|
|
109
149
|
|
|
110
150
|
```
|