一键导入
gloss-convo
Open the Gloss conversation viewer. Use when asked to 'gloss', 'view convo', 'convo', 'open conversation', 'gloss:convo', or '/gloss:convo'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Open the Gloss conversation viewer. Use when asked to 'gloss', 'view convo', 'convo', 'open conversation', 'gloss:convo', or '/gloss:convo'.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Auto-tag highlights in the current conversation using AI analysis. Use when asked to 'auto-tag', 'tag my highlights', 'gloss:auto-tag', or '/gloss:auto-tag'.
Pull highlights from the current conversation into context. Use when asked for 'highlights', 'my highlights', 'gloss:highlights', or '/gloss:highlights'.
Open the Gloss index page to browse all conversations. Use when asked to 'browse conversations', 'list conversations', 'gloss:index', or '/gloss:index'.
Search highlights across all sessions by tag, text, speaker, or kind. Use when asked to 'search highlights', 'find highlights', 'gloss:search', or '/gloss:search'.
| name | gloss-convo |
| description | Open the Gloss conversation viewer. Use when asked to 'gloss', 'view convo', 'convo', 'open conversation', 'gloss:convo', or '/gloss:convo'. |
| one_liner | Launch Gloss conversation viewer. |
| activation_triggers | ["gloss:convo","gloss","convo","view convo","open conversation","export conversation","When user wants to view or export a Claude conversation"] |
Launch the Gloss server or export a conversation to HTML.
bun <GLOSS_DIR>/src/cli.ts
Where <GLOSS_DIR> is the directory containing this skill (the repo root).
If <command-args> is empty or "this" or "serve":
bun <GLOSS_DIR>/src/cli.ts serve
This starts the Gloss server at http://localhost:3456, discovers all conversations in ~/.claude/projects/, and opens the browser. The user can browse any conversation by clicking it.
If the server is already running (check with curl -s -o /dev/null -w "%{http_code}" http://localhost:3456/ returning 200), just open the browser:
open http://localhost:3456
If <command-args> contains a file path or session UUID:
Resolve the JSONL file:
find ~/.claude/projects/ -name "<session-id>.jsonl" -not -path "*/subagents/*" -type f 2>/dev/null
Export:
bun <GLOSS_DIR>/src/cli.ts export "$JSONL_FILE"
Open in Chrome:
open ~/.claude/viewer/<SHORT_ID>.html
Report: output path and turn count.
If the server is running, you can open a specific conversation directly:
open http://localhost:3456/c/<session-id>
serve Start the server (default)
export <file> Export to self-contained HTML
-o, --output FILE Output file (overrides default)
--no-thinking Exclude thinking blocks
--no-tools Exclude tool calls and results
--port <number> Port for server (default: 3456)