mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-08 13:12:08 +00:00
docs(sessions): unify export docs under one overview section (#60554)
Restructures the five parallel export sections into a single 'Export Sessions' section: a format table (jsonl/md/qmd/html/trace + --only user-prompts), one shared-filters paragraph covering all formats, and per-format subsections nested beneath. EN + zh-Hans.
This commit is contained in:
parent
8a726e91ba
commit
551f00109d
2 changed files with 38 additions and 12 deletions
|
|
@ -294,6 +294,21 @@ What's the weather in Las Vegas? 3d ago tele 2025030
|
|||
|
||||
### Export Sessions
|
||||
|
||||
`hermes sessions export` is one surface for every export format, selected with `--format`:
|
||||
|
||||
| Format | Output | Use it for |
|
||||
|--------|--------|------------|
|
||||
| `jsonl` (default) | one JSON object per session | backups, machine round-trip |
|
||||
| `md` / `qmd` | one Markdown/Quarto file per session + manifest | readable archives, notes |
|
||||
| `html` | single self-contained page (sidebar for multi-session) | sharing, browsing |
|
||||
| `trace` | Claude Code JSONL | HF Agent Trace Viewer, `--upload` |
|
||||
|
||||
Plus `--only user-prompts` for a prompts-only view (jsonl or md).
|
||||
|
||||
All formats share the same selection knobs: `--session-id` for one session, or the full `prune`/`archive` filter set for bulk — `--older-than` / `--newer-than` / `--before` / `--after` (durations like `5h`/`2d`/`1w`, bare days, or ISO timestamps), `--source`, `--title`, `--model`, `--provider`, `--cwd`, `--min/--max-messages`, `--min/--max-tokens`, `--min/--max-cost`, `--min/--max-tool-calls`, `--user`, `--chat-id`, `--chat-type`, `--branch`, `--end-reason`. `--dry-run` previews the match set without writing. `--redact` scrubs secrets (API keys, tokens, credentials) from exported content on any format — recommended for anything you plan to share. Note: bulk filters match *ended* sessions; unfiltered `export` dumps everything, including active ones.
|
||||
|
||||
#### JSONL (default)
|
||||
|
||||
```bash
|
||||
# Export all sessions to a JSONL file
|
||||
hermes sessions export backup.jsonl
|
||||
|
|
@ -310,9 +325,7 @@ hermes sessions export backup.jsonl --redact
|
|||
|
||||
Exported files contain one JSON object per line with full session metadata and all messages.
|
||||
|
||||
`export` accepts the same filters as `prune` / `archive` — `--older-than` / `--newer-than` / `--before` / `--after` (durations like `5h`/`2d`/`1w`, bare days, or ISO timestamps), `--source`, `--title`, `--model`, `--provider`, `--cwd`, `--min-messages` / `--max-messages`, `--min-tokens` / `--max-tokens`, `--min-cost` / `--max-cost`, `--min-tool-calls` / `--max-tool-calls`, `--user`, `--chat-id`, `--chat-type`, `--branch`, and `--end-reason`. Add `--dry-run` to preview which sessions match without writing anything. Note: bulk filters match *ended* sessions; unfiltered `export` dumps everything, including active ones.
|
||||
|
||||
### Export Sessions to HTML
|
||||
#### HTML
|
||||
|
||||
`--format html` writes a single self-contained HTML file — no remote dependencies — with styled message bubbles, collapsible tool output, and (for multi-session exports) a sidebar to switch between sessions:
|
||||
|
||||
|
|
@ -324,7 +337,7 @@ hermes sessions export --format html --session-id 20250305_091523_a1b2c3d4 trans
|
|||
hermes sessions export --format html --newer-than 1w --source telegram --redact archive.html
|
||||
```
|
||||
|
||||
### Export Only Your Prompts
|
||||
#### Prompts Only
|
||||
|
||||
`--only user-prompts` exports just the prompts you wrote — no assistant replies, tool output, or system context. Useful for building prompt libraries or reviewing what you asked:
|
||||
|
||||
|
|
@ -338,7 +351,7 @@ hermes sessions export - --session-id 20250305_091523_a1b2c3d4 --only user-promp
|
|||
|
||||
Works with `--format jsonl` (default) or `md`, honors the same filters for bulk export, and combines with `--redact`.
|
||||
|
||||
### Export Traces to the HF Agent Trace Viewer
|
||||
#### Traces (HF Agent Trace Viewer)
|
||||
|
||||
`--format trace` emits Claude Code JSONL — the transcript shape the Hugging Face Hub auto-detects for its [Agent Trace Viewer](https://huggingface.co/docs/hub/agent-traces). Write it locally, or add `--upload` to push it to your own private `hermes-traces` dataset (reads `HF_TOKEN`):
|
||||
|
||||
|
|
@ -355,7 +368,7 @@ hermes sessions export --format trace --session-id 20250305_091523_a1b2c3d4 --up
|
|||
|
||||
Trace exports are secret-redacted by default (they're meant to leave the machine); `--no-redact` opts out after manual review. `--upload` is private unless `--public`. Bulk trace export with filters writes one `<id>.trace.jsonl` per session.
|
||||
|
||||
### Export Sessions to Markdown/QMD
|
||||
#### Markdown / QMD
|
||||
|
||||
Pass `--format md` or `--format qmd` when you want a readable, file-based archive before hiding or deleting old sessions. Markdown/QMD exports write one file per session into a directory (default: `~/.hermes/session-exports`).
|
||||
|
||||
|
|
|
|||
|
|
@ -271,6 +271,21 @@ What's the weather in Las Vegas? 3d ago tele 2025030
|
|||
|
||||
### 导出 Session
|
||||
|
||||
`hermes sessions export` 是所有导出格式的统一入口,用 `--format` 选择:
|
||||
|
||||
| 格式 | 输出 | 适用场景 |
|
||||
|------|------|----------|
|
||||
| `jsonl`(默认) | 每个 session 一个 JSON 对象 | 备份、机器可读的往返格式 |
|
||||
| `md` / `qmd` | 每个 session 一个 Markdown/Quarto 文件 + manifest | 可读归档、笔记 |
|
||||
| `html` | 单个独立页面(多 session 带侧边栏) | 分享、浏览 |
|
||||
| `trace` | Claude Code JSONL | HF Agent Trace Viewer、`--upload` |
|
||||
|
||||
另有 `--only user-prompts` 只导出你的 prompt(jsonl 或 md)。
|
||||
|
||||
所有格式共享同一套选择方式:`--session-id` 导出单个 session,或使用与 `prune` / `archive` 相同的完整过滤器进行批量导出 — `--older-than` / `--newer-than` / `--before` / `--after`(时长如 `5h`/`2d`/`1w`、纯数字天数或 ISO 时间戳)、`--source`、`--title`、`--model`、`--provider`、`--cwd`、`--min/--max-messages`、`--min/--max-tokens`、`--min/--max-cost`、`--min/--max-tool-calls`、`--user`、`--chat-id`、`--chat-type`、`--branch`、`--end-reason`。`--dry-run` 可预览匹配集而不写入。`--redact` 在任意格式下从导出内容中清除密钥(API key、token、凭据)— 任何打算分享的导出都建议加上。注意:带过滤器的批量导出只匹配*已结束*的 session;不带过滤器的 `export` 会导出所有 session(包括活跃的)。
|
||||
|
||||
#### JSONL(默认)
|
||||
|
||||
```bash
|
||||
# 将所有 session 导出到 JSONL 文件
|
||||
hermes sessions export backup.jsonl
|
||||
|
|
@ -287,9 +302,7 @@ hermes sessions export backup.jsonl --redact
|
|||
|
||||
导出文件每行包含一个 JSON 对象,包含完整的 session 元数据和所有消息。
|
||||
|
||||
`export` 接受与 `prune` / `archive` 相同的过滤器 — `--older-than` / `--newer-than` / `--before` / `--after`(时长如 `5h`/`2d`/`1w`、纯数字天数或 ISO 时间戳)、`--source`、`--title`、`--model`、`--provider`、`--cwd`、`--min-messages` / `--max-messages`、`--min-tokens` / `--max-tokens`、`--min-cost` / `--max-cost`、`--min-tool-calls` / `--max-tool-calls`、`--user`、`--chat-id`、`--chat-type`、`--branch` 和 `--end-reason`。加 `--dry-run` 可预览匹配的 session 而不写入任何内容。注意:带过滤器的批量导出只匹配*已结束*的 session;不带过滤器的 `export` 会导出所有 session(包括活跃的)。
|
||||
|
||||
### 导出 Session 为 HTML
|
||||
#### HTML
|
||||
|
||||
`--format html` 生成一个完全独立的 HTML 文件 — 无远程依赖 — 带样式化的消息气泡、可折叠的工具输出,多 session 导出时还带侧边栏导航:
|
||||
|
||||
|
|
@ -301,7 +314,7 @@ hermes sessions export --format html --session-id 20250305_091523_a1b2c3d4 trans
|
|||
hermes sessions export --format html --newer-than 1w --source telegram --redact archive.html
|
||||
```
|
||||
|
||||
### 只导出你的 Prompt
|
||||
#### 只导出 Prompt
|
||||
|
||||
`--only user-prompts` 只导出你写的 prompt — 不含助手回复、工具输出或系统上下文。适合构建 prompt 库或回顾你问过什么:
|
||||
|
||||
|
|
@ -315,7 +328,7 @@ hermes sessions export - --session-id 20250305_091523_a1b2c3d4 --only user-promp
|
|||
|
||||
支持 `--format jsonl`(默认)或 `md`,批量导出时同样支持全部过滤器,也可与 `--redact` 组合。
|
||||
|
||||
### 导出 Trace 到 HF Agent Trace Viewer
|
||||
#### Trace(HF Agent Trace Viewer)
|
||||
|
||||
`--format trace` 生成 Claude Code JSONL — Hugging Face Hub 的 [Agent Trace Viewer](https://huggingface.co/docs/hub/agent-traces) 可自动识别的转录格式。可以写入本地文件,或加 `--upload` 推送到你自己的私有 `hermes-traces` 数据集(读取 `HF_TOKEN`):
|
||||
|
||||
|
|
@ -332,7 +345,7 @@ hermes sessions export --format trace --session-id 20250305_091523_a1b2c3d4 --up
|
|||
|
||||
Trace 导出默认强制脱敏(它们本来就是要离开本机的);`--no-redact` 需人工审查后才建议使用。`--upload` 默认私有,除非加 `--public`。带过滤器的批量 trace 导出会为每个 session 写一个 `<id>.trace.jsonl`。
|
||||
|
||||
### 导出 Session 为 Markdown/QMD
|
||||
#### Markdown / QMD
|
||||
|
||||
当你想在隐藏或删除旧 session 之前保留一份可读的文件归档时,传入 `--format md` 或 `--format qmd`。Markdown/QMD 导出会为每个 session 写入一个文件到目录中(默认:`~/.hermes/session-exports`)。
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue