agent-handoff 0.4.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 +8 -0
- package/README.md +32 -0
- package/dist/index.js +896 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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
|
+
|
|
5
13
|
## [0.4.0] - 2026-03-02
|
|
6
14
|
|
|
7
15
|
### Added
|
package/README.md
CHANGED
|
@@ -113,6 +113,38 @@ agent-handoff report [workspace] [--format markdown|json|html] [--session <id>]
|
|
|
113
113
|
agent-handoff export [workspace] --format web [--output <dir>] [--limit <n>]
|
|
114
114
|
```
|
|
115
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
|
+
|
|
116
148
|
## Workspace 结构
|
|
117
149
|
|
|
118
150
|
```
|