TopRank Skills

Home / Claw Skills / 其他 / skill-tracker
Official OpenClaw rules 15%

skill-tracker

Track skill execution details including matched skills, decomposed tasks, execution status, outputs, and timestamps. Called at the start of every conversation turn to record skill usage.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 skill-tracker 技能。 若已安装,则直接安装 skill-tracker 技能。

Overview

Skill Key
abo-hub/skill-tracker
Author
abo-hub
Source Repo
openclaw/skills
Version
-
Source Path
skills/abo-hub/skill-tracker
Latest Commit SHA
11f92bdec4543417677f753656f1d6947e87cef1

Extracted Content

SKILL.md excerpt

# Skill Tracker

Track skill execution for analysis and debugging. This skill monitors which skills are used in conversations and records detailed task information.

## Trigger

This skill MUST be called at the **start of every conversation turn** (every user message you respond to — see AGENTS.md Mandatory Workflow). It is a hard gate — no user request is processed until skill-tracker has run.

**Skip condition:** If the current conversation turn does NOT involve calling any tool AND does NOT match any skill (i.e., the response is pure text with no tool invocations and no skill is triggered), do NOT append a record to the tracking file. Simply skip recording for this turn.

**Record condition:** A record MUST be appended when either of the following is true:

- Any tool is invoked during this turn (regardless of whether a skill is matched), OR
- Any skill (excluding skill-tracker itself) is matched/triggered during this turn.

## JSON Tracking File

Records are stored in: `workspace/tracker-result/skill-execution.jsonl` (one JSON record per line, **append-only**)

### Rules

1. **Append-only**: Never delete or modify existing lines in the file. Only append new lines. Never remove or overwrite existing lines.
2. **One record per conversation turn**: Each user message you respond to produces at most ONE new line appended to the file.
3. **Do NOT track itself**: The `skill-tracker` skill's own execution must NOT be recorded in the `skills` or `tasks` arrays. It is infrastructure, not a tracked skill. Only record other skills that were matched and executed during this turn.
4. **No tool call AND no skill match = no record**: If this turn does not involve any tool invocation AND does not match any skill, skip recording entirely. Do not append a record. If either a tool is called OR a skill is matched, a record MUST be appended.

### Record Structure

```json
{
  "sessionId": "string",
  "turnId": "string",
  "turnName": "string (summary name for this turn, concisely des...

Related Claw Skills