将Hermes Agent的工作过程和结果进行可视化展示,帮助你更好地了解、追踪和分析AI的工作情况。
Visualize Hermes Agent's work process and results to help you better understand, track, and analyze AI performance.
本技能支持自动语言检测,会根据您的系统语言环境自动选择中文或英文。
手动设置语言:
# 设置为中文
export HERMES_LANG=zh
# 设置为英文
export HERMES_LANG=en
This skill supports automatic language detection and will automatically select Chinese or English based on your system language.
Manually set language:
# Set to Chinese
export HERMES_LANG=zh
# Set to English
export HERMES_LANG=en
当完成一项重要工作后,运行以下命令生成可视化摘要:
# 生成当前会话的工作摘要
python3 ~/.hermes/skills/work-visualization/scripts/session_summary.py
# 生成特定时间范围的工作报告
python3 ~/.hermes/skills/work-visualization/scripts/generate_report.py --days 7
# 查看技能使用统计
python3 ~/.hermes/skills/work-visualization/scripts/skill_stats.py
After completing important work, run the following command to generate a visual summary:
# Generate current session summary
python3 ~/.hermes/skills/work-visualization/scripts/session_summary.py
# Generate work report for specific time range
python3 ~/.hermes/skills/work-visualization/scripts/generate_report.py --days 7
# View skill usage statistics
python3 ~/.hermes/skills/work-visualization/scripts/skill_stats.py
[===================== 75%] 修复登录问题 (3/4 子任务完成)
[=============------ 65%] 优化数据库查询 (13/20 子任务完成)
[======-------------- 30%] 编写API文档 (3/10 子任务完成)
[===================== 75%] Fix login issues (3/4 subtasks completed)
[=============------ 65%] Optimize database queries (13/20 subtasks completed)
[======-------------- 30%] Write API documentation (3/10 subtasks completed)
在 ~/.hermes/skills/work-visualization/config.json 中配置:
Configure in ~/.hermes/skills/work-visualization/config.json:
{
"enabled_metrics": [
"task_progress",
"skill_usage",
"tool_calls",
"code_changes",
"session_summary"
],
"report_frequency": "daily",
"export_formats": ["html", "markdown"],
"charts": {
"type": "ascii",
"show_legend": true,
"max_items": 10
}
}
系统会自动检测以下环境变量:
HERMES_LANG - 优先级最高LANG - 系统语言环境System automatically detects the following environment variables:
HERMES_LANG - Highest priorityLANG - System language environment| 语言代码 | 语言 | Language Code | Language |
|---|---|---|---|
| --------- | ------ | -------------- | ---------- |
| zh | 中文 | zh | Chinese |
| en | 英文 | en | English |
共 1 个版本