TopRank Skills

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

focus-tracker

Maintain persistent focus on active work across compactions and session restarts. Use when starting a multi-step project, when resuming after compaction, when the user says "we're working on X", or when you notice you've lost track of what was being done. Also use proactively at session start to check if there's unfinished work. Prevents the agent from forgetting mid-project context, drifting between topics, or asking "what were we doing?" after a compaction.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
crewhaus/focus-tracker
Author
crewhaus
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/crewhaus/focus-tracker
Latest Commit SHA
8c199af950fa0bd6ebca38b05dc7d01d7ffe06cc

Extracted Content

SKILL.md excerpt

# Focus Tracker

Maintain a `FOCUS.md` file in the workspace root as persistent working state.

## When to Read FOCUS.md

- **Every session start** (before responding to first message)
- **After every compaction** (if context feels thin, read it)
- **When the user asks about current work** ("what are we doing?", "where were we?")

## When to Write/Update FOCUS.md

- **When starting a new focused project** — create or replace the active focus
- **When a sub-task completes** — check off items, update status
- **When priorities shift** — user redirects, update immediately
- **When work is DONE** — archive to `FOCUS-LOG.md` and clear FOCUS.md
- **Before compaction memory flushes** — ensure FOCUS.md reflects current state

## FOCUS.md Format

```markdown
# FOCUS — [Project Name]
**Started:** YYYY-MM-DD HH:MM UTC
**Status:** active | paused | blocked
**Context:** One-line summary of WHY we're doing this

## Objective
What we're trying to accomplish (1-3 sentences max)

## Plan
Numbered steps. Check off as completed.
- [x] Step 1 — done
- [ ] Step 2 — in progress (note current state)
- [ ] Step 3 — next

## Active State
What's happening RIGHT NOW. What was the last thing done, what's the next action.
This is the most important section — it's the "resume point" after compaction.

## Blockers
Anything waiting on the user, external systems, or decisions.

## Sub-Agents
Any spawned sub-agents and their status.
- `label` — task description — status (running/done/failed)
```

## Rules

1. **One focus at a time.** If the user pivots, archive the old focus first.
2. **Keep it short.** FOCUS.md should be <50 lines. It's a resume point, not a journal.
3. **Active State is sacred.** Always update it before stopping work. Future-you reads this first.
4. **Don't duplicate memory files.** FOCUS.md tracks *what we're doing now*. Daily memory files track *what happened*. Different jobs.
5. **Archive when done.** Append completed focuses to `FOCUS-LOG.md` with completion date and outcome,...

Related Claw Skills