task-tracker

task-tracker is a skill for Claude Code, Codex from AlekseiUL/openclaw-superagent. It costs 58 tokens per session (536 once invoked), scanned A, a copy of task-tracker, MIT.

A file-based task list for adding, completing, viewing, prioritising, and archiving to-do items.

In plain words
What is it for?
Use it to add new tasks, mark tasks as done, review open and completed work, set priorities, and archive completed tasks older than seven days.
Why use it?
It keeps tasks in one readable file, so work can be tracked without a separate task app. Open tasks are ordered by priority, while older completed tasks can be archived.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/alekseiul/openclaw-superagent/task-tracker
Any agent
npx skills add AlekseiUL/openclaw-superagent --skill task-tracker
Clone the repo
git clone --depth 1 https://github.com/AlekseiUL/openclaw-superagent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for task-tracker

README.md
[![agentmods](https://agentmods.dev/badge/skills/alekseiul/openclaw-superagent/task-tracker.svg)](https://agentmods.dev/skills/alekseiul/openclaw-superagent/task-tracker)
Your own site
<a href="https://agentmods.dev/skills/alekseiul/openclaw-superagent/task-tracker"><img src="https://agentmods.dev/badge/skills/alekseiul/openclaw-superagent/task-tracker.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 536 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00058 $0.00536
Opus 5 $0.00029 $0.00268
Sonnet 5 $0.00012 $0.00107
Haiku 4.5 $0.00006 $0.00054

Measured 4d ago against content hash 5b6717fe22e0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

task-tracker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to task-tracker — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/agent-forge/examples/task-tracker/SKILL.md · 55 lines

What it actually says

Task Tracker

Простой трекер задач с хранением в файле. Тип: Data-driven.

Где данные

Задачи хранятся в data/tasks.md. Читай этот файл при каждом вызове. Обновляй после каждого изменения.

Алгоритм

Добавить задачу

  1. Запиши в data/tasks.md в формате: - [ ] [приоритет] задача (дата добавления)
  2. Приоритеты: [!] высокий, [~] средний, [.] низкий. По умолчанию средний
  3. Подтверди: "Добавил: [задача]"

Завершить задачу

  1. Найди задачу по ключевым словам
  2. Замени - [ ] на - [x], добавь дату завершения
  3. Подтверди: "Готово: [задача]"

Показать задачи

  1. Прочитай data/tasks.md
  2. Покажи сначала незавершённые (сортировка по приоритету), потом завершённые
  3. Формат:
Открытые (N):
  [!] Срочная задача (добавлена 05.03)
  [~] Обычная задача (добавлена 04.03)

Завершённые (M):
  ✅ Сделанная задача (завершена 06.03)

Очистить завершённые

  1. Перенеси завершённые старше 7 дней в data/archive.md
  2. Подтверди сколько задач перенесено

Как обновлять данные

Файл data/tasks.md - единственный источник правды. Все изменения через этот скилл. Формат строго как в примере выше.

Примеры

Запрос: "Добавь задачу: купить молоко" Ответ: Добавил: [~] купить молоко (07.03)

Запрос: "Что у меня в задачах?" Ответ: Открытые (3): [!] Отправить отчёт... [~] Купить молоко... [.] Почистить почту...

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 55 lines · 58 tokens per session scan A 5b6717fe22e0

Subscribe to this mod's changes

task-tracker is a skill published in the GitHub repository AlekseiUL/openclaw-superagent (40 stars, last pushed 2mo ago), licensed MIT. It adds 58 tokens to every session and 536 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to task-tracker, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

board-pilot

Generic, board-driven implementation pipeline: polls a GitHub Project on a schedule, ARMS an item the moment a human drags it into the configured trigger column, then advances it one stage per tick — each stage a Bridge primitive (skill / workflow / agent / cmd) — and STOPS at a human-gated draft PR. The engine is…

bks-lab/open-bridge · 330 tokens

bridge-overlay

Subscribe a Bridge to an ORG OVERLAY — a git repo an organisation publishes that ships its shared config (contexts, projects, mandants, accounts, org skills/agents/standing-orders, an ecosystem fragment) as a flat mirror tree. /overlay add sparse-clones the overlay, validates its manifest, previews a per-file plan…

bks-lab/open-bridge · 190 tokens

github-projects-manager

Execute GitHub Projects V2 operations — issue creation with automatic project board placement, custom field updates (single-select, text, number, date), batch field transitions, board queries, and board-hygiene audits (coverage: open issues not on the board; reconciliation: board Status vs the issue's real…

bks-lab/open-bridge · 168 tokens

bridge-greeting

Context-aware terminal greeting (MOTD) for Bridge instances — renders a per-instance logo, palette, today's filtered calendar, the instance's "Doing" board and uncommitted work, resolved from which org folder the terminal was opened in. Includes gen-logo.py (ANSI-Shadow logo generator from a word) and the branding…

bks-lab/open-bridge · 125 tokens

debrief

Meeting and transcript processing — classifies meeting type, applies name corrections, extracts insights across 7 categories, generates protocols, proposes tasks with project field mapping. Checkpoint-based workflow. Supports full 8-phase flow (with GitHub reconciliation + distribution email) and quick 5-phase flow…

bks-lab/open-bridge · 142 tokens

project-advisor

Governance and execution for GitHub and ADO projects — reads per-project configs from workflow/projects/.yaml for field values, governance rules, and state mappings. Handles issue creation, field updates, board health validation. Trigger: "create issue", "board health", "project setup", "check governance", "update…

bks-lab/open-bridge · 73 tokens