task-ledger

task-ledger is a skill for Claude Code, Codex from yunsii/wezdeck. It costs 53 tokens per session (1,998 once invoked), scanned A, original, MIT.

A task record system for tracking development and operations work in Feishu Base, a collaborative database and work-management service. It records work through stages such as opening, confirming, and closing a task.

In plain words
What is it for?
Use it when accepting, confirming, completing, cancelling, or blocking coding and operations tasks. It also records who requested the work when that information is available.
Why use it?
It keeps accepted work auditable and makes sure tasks are properly confirmed and closed instead of disappearing from the workflow.

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/yunsii/wezdeck/task-ledger
Any agent
npx skills add yunsii/wezdeck --skill task-ledger
Clone the repo
git clone --depth 1 https://github.com/yunsii/wezdeck

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-ledger

README.md
[![agentmods](https://agentmods.dev/badge/skills/yunsii/wezdeck/task-ledger.svg)](https://agentmods.dev/skills/yunsii/wezdeck/task-ledger)
Your own site
<a href="https://agentmods.dev/skills/yunsii/wezdeck/task-ledger"><img src="https://agentmods.dev/badge/skills/yunsii/wezdeck/task-ledger.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,998 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.00053 $0.01998
Opus 5 $0.00026 $0.00999
Sonnet 5 $0.00011 $0.00400
Haiku 4.5 $0.00005 $0.00200

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

Security

Grade A, and why

task-ledger 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 3d 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.

openclaw/workspace/skills/task-ledger/SKILL.md · 146 lines

How it starts

The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Development task ledger (Feishu Base)

Hard rules

  1. Development tasks must target an allowlisted root for the active agent (see Path guard / tasks-allowlist.json). main → wezdeck|team-repo; pm → FE1 (ops). Do not hard-code another machine's /home/... in commits.
  2. If the user asks for another repo: do not open a ledger row as accepted work; refuse and explain allowlist policy.
  3. When accepted, time loop must close:
    • open → (user confirms plan/初评/开发方式) → confirm if --confirm-required 1 → work → close
    • close --status done fails if still 需确认 and never confirmed
    • cancelled / blocked / failed may close without confirm
  4. Never write secrets into the ledger.
  5. Final reply must include task_id.
  6. If CLI fails, say so; do not invent task_id.
  7. When the request has a clear 需求提出人 (product / user who asked): record them on open/update with --requester-id <ou_…> (preferred). Feishu person field name: 需求提出人. Do not leave it blank when known.
  8. Order with worktree: open first; after claw worktree exists, update cwd/分支; after user confirms 初评+开发方式, confirm; then implement.
  9. Pure Q&A: do not open a row. As soon as the user accepts implementation, open before assess/create (same turn is OK if open is first).
  10. Test hygiene: after every smoke / CLI self-test that opens a row, delete that row (and local index entry). Do not leave smoke / time-loop / *-test rows in the production Base table. Soft close is not enough for pure tests — use hard delete.

Path guard

  • Config file (authoritative): ~/.openclaw/tasks-allowlist.json (from openclaw/config/tasks-allowlist.json.example).
  • Resolver: openclaw/scripts/tasks-allowlist.py (show / check / roots).
  • Agent: OPENCLAW_TASKS_AGENT or default main (paths come from config, not env).
  • CLI allowlists local --cwd / path-form --repo only (not remote URLs).
  • Base field 仓库 = https web URL (clickable in Feishu); cwd = local path. CLI rewrites git@… / ssh://… / ….githttps://host/org/repo.

Read the full file on GitHub · 146 lines

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. 3d ago First seen · 146 lines · 53 tokens per session scan A 2de85021d824

Subscribe to this mod's changes

task-ledger is a skill published in the GitHub repository yunsii/wezdeck (5 stars, last pushed 7d ago), licensed MIT. It adds 53 tokens to every session and 1,998 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

workflow

Create, run, monitor, cancel, or resume deterministic JavaScript workflows that orchestrate multiple Codex, Claude, Cursor, or Kimi agents. Use for parallel investigation or review, staged agent pipelines, resumable long-running work, or when the user explicitly asks for a workflow, orchestration, fan-out, or several…

xxxoooxoxo/wiff · 70 tokens

orchestrate

Use only when the user explicitly types /orchestrate:orchestrate to decompose a large task, spawn a tree of parallel worker/subplanner/verifier subagents, and collect structured handoffs. Do not invoke autonomously.

odysseus0/claude-orchestrate · 54 tokens

launch

Launch and automate VS Code (Code OSS) using agent-browser via Chrome DevTools Protocol. Use when you need to interact with the VS Code UI, automate the chat panel, test UI features, or take screenshots of VS Code. Triggers include 'automate VS Code', 'interact with chat', 'test the UI', 'take a screenshot', 'launch…

workstream-labs/workstreams · 80 tokens

accessibility

Primary accessibility skill for VS Code. REQUIRED for new feature and contribution work, and also applies to updates of existing UI. Covers accessibility help dialogs, accessible views, verbosity settings, signals, ARIA announcements, keyboard navigation, and ARIA labels/roles.

workstream-labs/workstreams · 54 tokens

sessions

Agent Sessions window architecture — covers the sessions-first app, layering, folder structure, chat widget, menus, contributions, entry points, and development guidelines. Use when implementing features or fixing issues in the Agent Sessions window.

workstream-labs/workstreams · 45 tokens

component-fixtures

Use when creating or updating component fixtures for screenshot testing, or when designing UI components to be fixture-friendly. Covers fixture file structure, theming, service setup, CSS scoping, async rendering, and common pitfalls.

workstream-labs/workstreams · 47 tokens