limps-planning

limps-planning is a skill for Claude Code from paulbreuler/limps. It costs 25 tokens per session (455 once invoked), scanned A, original, MIT.

A guide to using limps tools to create, organize, search, and update work plans shared across plans and agents.

In plain words
What is it for?
Use it to create plans, find the next task, check progress, search plan documents, process documents, and update task status.
Why use it?
It reduces confusion about which planning tool to use for a task, document, agent, or status change.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to create plans, find the next task, check progress, search plan documents, process documents, and update task status.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/paulbreuler/limps/limps-planning
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.

Any agent
npx skills add paulbreuler/limps --skill limps-planning
Clone the repo
git clone --depth 1 https://github.com/paulbreuler/limps

Made for: Claude Code.

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 limps-planning

README.md
[![agentmods](https://agentmods.dev/badge/skills/paulbreuler/limps/limps-planning.svg)](https://agentmods.dev/skills/paulbreuler/limps/limps-planning)
Your own site
<a href="https://agentmods.dev/skills/paulbreuler/limps/limps-planning"><img src="https://agentmods.dev/badge/skills/paulbreuler/limps/limps-planning.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 455 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00025 $0.00455
Opus 5 $0.00013 $0.00228
Sonnet 5 $0.00005 $0.00091
Haiku 4.5 $0.00003 $0.00046

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

Security

Grade A, and why

limps-planning 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.

skills/limps-planning/SKILL.md · 58 lines

What it actually says

limps planning

Purpose

Provide consistent guidance for selecting limps MCP tools in common planning workflows.

When to Use

  • Creating or updating plans and agents
  • Finding the next task or plan status
  • Searching or updating documents in a plans directory

Quick Tool Selection

  • Create a plan: create_plan, then create_doc for plan files
  • List plans: list_plans
  • List agents: list_agents
  • Plan status: get_plan_status
  • Next task: get_next_task
  • Search docs: search_docs
  • Update status: update_task_status
  • Read/process docs: process_doc, process_docs
  • Update plan priority/severity: update_doc (edit plan frontmatter)

Examples

Find the next task in a plan

  1. list_plans → pick plan name
  2. get_next_task with plan number/name

Update an agent status

  1. list_agents for the plan
  2. update_task_status with task ID and new status

Automate plan priority and severity

  1. process_doc the plan file (e.g., plans/0030-foo/0030-foo-plan.md) to read frontmatter
  2. Determine priority and severity values (low | medium | high | critical)
  3. update_doc with new frontmatter fields (do not edit config.json)
  4. Optional: add a brief note in plan content or decisions log describing why it was updated

Extract open features across plans

  1. process_docs with pattern plans/*/*-plan.md
  2. Use extractFeatures() to filter GAP

Notes

  • Paths should be relative to the configured plansPath or docsPaths.
  • Use process_doc(s) for structured extraction instead of manual parsing.
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 · 58 lines · 25 tokens per session scan A feecea27c5ea

Subscribe to this mod's changes

limps-planning is a skill published in the GitHub repository paulbreuler/limps (10 stars, last pushed 6mo ago), licensed MIT. It adds 25 tokens to every session and 455 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

knowledge-layered-configuration-and-runtime-settings

A configuration system that combines user, project, local, and per-call settings, then saves each field to the correct scope and file. It can rebuild settings for a particular source project.

echoVic/blade-code · 143 tokens

linearis

Manage Linear.app work from the command line with the linearis CLI (bins linearis / linear), which outputs JSON: issues/tickets, projects, cycles (sprints), milestones, initiatives (roadmap), documents, labels, teams, users, and issue discussions/comments. Use when the user mentions Linear, a ticket identifier like…

linearis-oss/linearis · 111 tokens

knowledge-agent-execution-and-orchestration-goals-tasks-and-scheduling

A system for persistent goals, task lists, independent task sessions, isolated worktrees, and cron, interval, or one-time schedules.

echoVic/blade-code · 143 tokens

github

GitHub CLI (gh) for repository management, issues, pull requests, releases, workflows, search, gists, and API access. Use when the user asks about any GitHub operation — creating repos, forking, cloning, PR workflows, issue triage, CI/CD runs, code search, release management, or direct API calls. Keywords: github, gh…

bug-ops/zeph · 104 tokens

knowledge-agent-execution-and-orchestration-agent-teams

A coordination system for teams of coding agents, with shared tasks, dependencies, messages, member status, and access checks.

echoVic/blade-code · 123 tokens

knowledge-session-state-and-context

A codebase guide for storing agent sessions, rebuilding their visible state, recovering active work, branching or rewinding history, and shortening context sent to the model.

echoVic/blade-code · 133 tokens