Back to Registry
View Author Profile
Official Verified
Agent Task Logger
Skill by gerald-luo
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/gerald-luo/agent-task-loggerOr
Agent Task Logger - Agent 任务日志系统
一个类似 Tomcat catalina.out 的实时任务日志系统,自动检测 Agent 工作空间,用于记录和展示 Agent 执行任务的进度。
🚀 快速使用
1. 初始化日志系统(自动检测工作空间)
初始化日志系统
2. 初始化日志系统(手动指定工作空间)
初始化日志系统 workspace=/path/to/workspace
2. 记录任务开始
记录任务开始 task-id=task-001 task-name="停止 Tomcat 8" estimated-time=5s
3. 记录执行命令
记录执行命令 task-id=task-001 command="cd /path && ./shutdown.sh"
4. 记录任务状态
记录任务状态 task-id=task-001 status="成功" actual-time=3.5s
5. 查看实时日志
tail -f /Users/openclaw/.openclaw/workspace/logs/agent-task.log
📋 参数说明
初始化日志系统
| 参数 | 必填 | 默认值 | 说明 |
|---|---|---|---|
workspace | ❌ | 自动检测 | 工作空间根目录(可选,自动检测) |
log-dir | ❌ | logs | 日志目录(相对于 workspace) |
log-file | ❌ | agent-task.log | 日志文件名 |
工作空间自动检测
Skill 会自动检测 Agent 的工作空间位置,检测顺序:
WORKSPACE环境变量OPENCLAW_WORKSPACE环境变量- 脚本所在目录的父目录
~/.openclaw/workspace- 当前目录
无需手动指定工作空间,开箱即用!
记录任务开始
| 参数 | 必填 | 说明 |
|---|---|---|
task-id | ✅ | 任务唯一标识 |
task-name | ✅ | 任务描述 |
estimated-time | ❌ | 预估处理时间 |
记录执行命令
| 参数 | 必填 | 说明 |
|---|---|---|
task-id | ✅ | 关联的任务 ID |
command | ✅ | 执行的 shell 命令 |
记录任务状态
| 参数 | 必填 | 说明 |
|---|---|---|
task-id | ✅ | 关联的任务 ID |
status | ✅ | 任务状态(成功/失败/等待中) |
actual-time | ❌ | 实际处理时间 |
💡 触发词
- 初始化日志系统
- 记录任务开始
- 记录执行命令
- 记录任务状态
- 记录任务完成
- 记录错误信息
- 查看任务日志
📝 日志格式
参考 Tomcat catalina.out 格式,中文显示:
04-3 月 -2026 17:38:00.000 INFO [agent-task-1] com.openclaw.agent.TaskExecutor.execute 任务:停止 Tomcat 8
04-3 月 -2026 17:38:00.100 INFO [agent-task-1] com.openclaw.agent.TaskExecutor.execute 执行命令:cd /path && ./shutdown.sh
04-3 月 -2026 17:38:03.500 INFO [agent-task-1] com.openclaw.agent.TaskExecutor.execute 状态:Tomcat 8 关闭完成
04-3 月 -2026 17:38:03.600 INFO [agent-task-1] com.openclaw.agent.TaskExecutor.execute 预估时间:5 秒 | 实际时间:3.5 秒
04-3 月 -2026 17:38:03.700 INFO [agent-task-1] com.openclaw.agent.TaskExecutor.execute 结果:成功
🔧 使用示例
示例 1:完整任务流程(自动检测工作空间)
# 1. 初始化(自动检测工作空间)
初始化日志系统
# 2. 开始任务
记录任务开始 task-id=deploy-001 task-name="部署 Java 项目" estimated-time=60s
# 3. 执行命令
记录执行命令 task-id=deploy-001 command="mvn clean package"
# 4. 记录状态
记录任务状态 task-id=deploy-001 status="成功" actual-time=45s
# 5. 完成任务
记录任务完成 task-id=deploy-001
示例 2:多任务并行
# 任务 1:编译后端
记录任务开始 task-id=backend-compile task-name="编译后端项目" estimated-time=30s
记录执行命令 task-id=backend-compile command="mvn compile"
记录任务状态 task-id=backend-compile status="成功" actual-time=25s
# 任务 2:打包前端
记录任务开始 task-id=frontend-build task-name="打包前端项目" estimated-time=45s
记录执行命令 task-id=frontend-build command="npm run build"
记录任务状态 task-id=frontend-build status="成功" actual-time=40s
示例 3:错误处理
记录任务开始 task-id=deploy-app task-name="部署应用" estimated-time=30s
记录执行命令 task-id=deploy-app command="./deploy.sh"
记录错误信息 task-id=deploy-app error="权限不足,需要 sudo"
记录任务状态 task-id=deploy-app status="失败" actual-time=5s
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-gerald-luo-agent-task-logger": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.