Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

openclaw-log-reportOpenClaw LOG report 搜索

Agent Skill

openclaw-log-report 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,046

周安装

87

GitHub Stars

公开资料未说明

下载量

717
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-log-report(OpenClaw LOG report 搜索)
来源仓库:https://github.com/junlincobo/openclaw-log-report
仓库路径:skills/openclaw-log-report
安装命令:
npx skills add https://github.com/junlincobo/openclaw-log-report --skill openclaw-log-report
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/junlincobo/openclaw-log-report --skill openclaw-log-report

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 支持基于任务场景或来源线索的信息聚合与过滤。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写。
  • openclaw-log-report 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent Session Log Report

Parse agent session logs → structured telemetry → TelemetryAPI.

Supports three agent platforms (auto-detected):

PlatformFormatDefault Path
OpenClawJSONL~/.openclaw/agents/main/sessions/*.jsonl
Claude CodeJSONL~/.claude/projects/*/*.jsonl
HermesJSON~/.hermes/sessions/session_*.json

What It Does

Reads a session log file and uploads it as a structured trace:

Trace
└── session:<id>                    ← root span (full session)
    ├── turn:0                      ← user message + agent response
    │   ├── OpenAI-generation       ← LLM call (model, tokens, latency)
    │   ├── skill_install:exec      ← tool call
    │   ├── OpenAI-generation
    │   ├── caw.onboard             ← caw CLI command
    │   └── OpenAI-generation
    ├── turn:1
    │   ├── OpenAI-generation
    │   ├── caw.wallet.balance
    │   └── ...
    └── turn:N

Each span includes:

  • Original timestamps — latency reflects actual execution time
  • Input/Output — user messages, assistant responses, tool results
  • Token usage — per-generation input/output token counts
  • caw command classification — 106 commands across 15 categories
  • Error detection — failed commands, policy denials, process poll errors

Prerequisites

  1. caw installed and onboarded — the script reads API key from ~/.cobo-agentic-wallet/
  2. Backend telemetry endpoint availablePOST /api/v1/telemetry/session
  3. Session file.jsonl (OpenClaw/Claude Code) or .json (Hermes) from session directories

Usage

Upload a session

# OpenClaw / Claude Code (.jsonl)
python scripts/otel_report.py <session.jsonl>

# Hermes (.json)
python scripts/otel_report.py <session_YYYYMMDD_HHMMSS_xxxx.json>

The script auto-detects API URL and key from caw config. Override with env vars:

AGENT_WALLET_API_URL=https://api-core.agenticwallet.sandbox.cobo.com \
python scripts/otel_report.py session.jsonl

Upload multiple sessions

# Multiple files
python scripts/otel_report.py a.jsonl b.jsonl c.jsonl

# Glob pattern
python scripts/otel_report.py ~/.openclaw/agents/main/sessions/*.jsonl

Upload by time range

Filters by session content time (not file modification time). Both session selection and turn-level filtering apply — only turns within the time range are uploaded.

# Last 2 hours — only uploads turns from the last 2h
python scripts/otel_report.py --since 2h

# Last 1 day
python scripts/otel_report.py --since 1d

# Specific time range (UTC+8)
python scripts/otel_report.py --since 2026-04-05T10:00 --until 2026-04-05T18:00

# A full day
python scripts/otel_report.py --since 2026-04-05 --until 2026-04-06

# Filter a specific file — only turns in range are included
python scripts/otel_report.py --since 8h ~/Downloads/session.jsonl

# Custom sessions directory + time range
python scripts/otel_report.py --since 2h /path/to/sessions/

Supported time formats: 2h (hours ago), 30m (minutes ago), 1d (days ago), 2026-04-05, 2026-04-05T10:00

Dry run (preview without uploading)

python scripts/otel_report.py --dry-run session.jsonl

Shows the span tree structure with timestamps and latencies.

Dump JSON (debug)

python scripts/otel_report.py --dump session.jsonl

Prints the first turn's full JSON payload for inspection.

Watch mode (continuous)

python scripts/otel_report.py --watch [sessions_dir]

Monitors a directory for new session files and auto-uploads.

Upload latest session

python scripts/otel_report.py

Without arguments, uploads the most recent session file from default paths (~/.openclaw/.../sessions/ and ~/.hermes/sessions/).

Environment Variables

VariableDefaultDescription
AGENT_WALLET_API_URLhttps://api-core.agenticwallet.sandbox.cobo.comBackend API URL
USER_IDauto-detected from session messagesUser identifier for telemetry

Environments:

EnvironmentURL
Sandboxhttps://api-core.agenticwallet.sandbox.cobo.com (default)
Devhttps://api-core.agenticwallet.dev.cobo.com
# Upload to dev environment
AGENT_WALLET_API_URL=https://api-core.agenticwallet.dev.cobo.com \
python scripts/otel_report.py session.jsonl

caw Command Categories

The script classifies 106 caw CLI subcommands into categories:

CategoryExamples
onboardingonboard, onboard bootstrap, onboard self-test
transactiontx transfer, tx call, tx sign-message, tx speedup
querywallet balance, tx list, tx records, address list, status
authpending approve/reject, pact submit/status, policy create
walletwallet use/rename/archive/claim, address create
agentagent status, agent api-key
ap2ap2 purchase/cancel/search, ap2 shipping
nodenode start/stop/status/health
metameta chains/tokens/prices, version, health, schema
utilutil abi encode/decode, util base64, fetch
devfaucet deposit/tokens, demo
auditaudit logs
monitortrack

Trace Dimensions

DimensionValueSource
Trace Namescript_{user}@{hostname}_{MMDDHHmm}User + hostname + timestamp (UTC+8)
Session IDSession UUID or Hermes session IDSession file
User IDTelegram sender_id or "unknown"First user message
Tags[skill_name, "openclaw", provider, "upload:YYYYMMDD"]Session metadata + upload date

Constraints

  • Don't modify this script — treat it as a read-only tool
  • Don't modify uploaded traces
  • Don't retry after success — if upload prints Status: OK, do not re-run the command
  • Uploading the current session is allowed, but note it's still being written — the upload captures a snapshot at that moment
  • Use python3 not python — some servers only have python3
  • Session files are read-only; never write to ~/.openclaw/ or ~/.hermes/

Security Notes

安装时 npx skills 可能显示 Socket / Snyk 安全告警,这些是脚本正常功能所需:

告警原因
网络请求脚本通过 urllib.request POST 数据到 TelemetryAPI
文件读取读取 ~/.openclaw/~/.hermes/~/.claude/ 下的会话日志文件
凭证访问~/.cobo-agentic-wallet/ 读取 caw API key 用于鉴权
主机信息通过 socket.gethostname() 获取机器名写入 metadata

脚本不包含任何恶意代码,所有网络请求仅发往配置的 AGENT_WALLET_API_URL

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.67%
按下载量换算234

Claude

31.9%
按下载量换算229

Cursor

20.18%
按下载量换算145

Gemini CLI

8.58%
按下载量换算62

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills