webjs-list-todos

A skill for listing open tasks on the webjsdev/webjs GitHub project board. GitHub Projects is a board for tracking work through statuses such as Todo or In Progress.

In plain words
What is it for?
Use it to show the project’s open work grouped by status, including todo and in-progress items.
Why use it?
It provides a current view of pending work without relying on memory or a separate task list.

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/webjsdev/webjs/webjs-list-todos
Any agent
npx skills add webjsdev/webjs --skill webjs-list-todos
Clone the repo
git clone --depth 1 https://github.com/webjsdev/webjs

Made for: Claude Code, Codex.

Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 944 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.00153 $0.00944
Opus 5 $0.00077 $0.00472
Sonnet 5 $0.00031 $0.00189
Haiku 4.5 $0.00015 $0.00094

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

Security

Grade A, and why

webjs-list-todos 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 2d 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.

.claude/skills/webjs-list-todos/SKILL.md · 75 lines

How it starts

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

List open work on the webjs project board

The webjsdev/webjs project tracks work on the GitHub Project at https://github.com/orgs/webjsdev/projects/1. This skill returns a current snapshot bucketed by Status, queried straight from GitHub. Do NOT consult internal task trackers or memory for this question.

Steps

  1. Fetch the board state.

    gh project item-list 1 --owner webjsdev --format json --limit 20000
    

    This is the ONE place a whole-board dump is legitimate, because this skill renders every card. Everywhere else, reach a single card from its issue node instead; see .claude/gh-budget.md.

    The dump is expensive even so. It paginates the entire board (past 500 items) at 100 per page, and the GraphQL budget is scored in points rather than requests, so it is worth several hundred points of the hourly 5000. Two rules follow, and neither is optional:

    • Call it ONCE per invocation and reuse the result. Never in a loop, and never a second time to answer a follow-up about one card.
    • Do not re-run it to check one issue. If the user asks about a specific number after this ran, use the single-node lookup in .claude/gh-budget.md.

    --limit 20000 is load-bearing, not defensive: the default page is 30, so without it the board silently truncates and buckets come back wrong.

  2. Bucket by Status (Todo, In progress, Done) and pretty-print each bucket with issue numbers and titles. If the user explicitly asked for only one bucket (e.g. "what's in progress"), filter accordingly.

  3. Default presentation. Show Todo and In progress always. Show Done only if the user asks for it, or if both Todo and In progress are empty.

  4. For each item, show: #<number> <title>. Wrap in markdown so the user can click through.

Example output shape

Todo:
  #112  Elide browser download of display-only component modules
  #113  Ship pre-built dist/ alongside src/ for @webjsdev/core
  #114  Rate-limit defaultKey trusts unverified X-Forwarded-For

In progress:
  (none)

Read the full file on GitHub · 75 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. 2d ago First seen · 75 lines · 153 tokens per session scan A 0606384c8d6c

Subscribe to this mod's changes

webjs-list-todos is a skill published in the GitHub repository webjsdev/webjs (109 stars, last pushed 11d ago), licensed MIT. It adds 153 tokens to every session and 944 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories