limps-plan-operations

limps-plan-operations is a skill for Claude Code, Codex from paulbreuler/limps. It costs 37 tokens per session (3,726 once invoked), scanned A, original, MIT.

A set of shared instructions for finding, loading, and managing Limps feature plans. Limps is a planning system that stores work plans and related files for coding agents.

In plain words
What is it for?
Use it when an agent needs to locate a plan, read its supporting files, create concise agent instructions, or follow the plan through its lifecycle.
Why use it?
It prevents each command from handling plan paths, files, and lifecycle rules differently. It also adds safeguards for secrets and unsafe document processing.

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/paulbreuler/limps/limps-plan-operations
Any agent
npx skills add paulbreuler/limps --skill limps-plan-operations
Clone the repo
git clone --depth 1 https://github.com/paulbreuler/limps

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 limps-plan-operations

README.md
[![agentmods](https://agentmods.dev/badge/skills/paulbreuler/limps/limps-plan-operations.svg)](https://agentmods.dev/skills/paulbreuler/limps/limps-plan-operations)
Your own site
<a href="https://agentmods.dev/skills/paulbreuler/limps/limps-plan-operations"><img src="https://agentmods.dev/badge/skills/paulbreuler/limps/limps-plan-operations.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,726 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.00037 $0.03726
Opus 5 $0.00018 $0.01863
Sonnet 5 $0.00007 $0.00745
Haiku 4.5 $0.00004 $0.00373

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

Security

Grade A, and why

limps-plan-operations 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 5d 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/limps-plan-operations/SKILL.md · 461 lines

How it starts

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

Limps Plan Operations

Purpose

Provide reusable patterns for working with limps feature plans across commands. Handles plan identification, path resolution, loading plan artifacts, and shared distillation/lifecycle guidance for planning and agent execution.

LLM Execution Rules

  • Use limps MCP tools for all reads/writes when available; do not edit plan files directly.
  • Do not include secrets, tokens, or credentials in plan content.
  • Only run process_doc / process_docs with code you authored or reviewed.

Scope

  • identify-plan: Resolve a plan name or path to a canonical plan directory name and base path
  • load-artifacts: Load all plan artifacts (plan file, interfaces.md, README.md, gotchas.md, agent files) using limps MCP tools
  • resolve-path: Convert plan name/path input to canonical plans/NNNN-descriptive-name/ format
  • distill-agent-files: Apply distillation rules and size guidance for *.agent.md generation
  • lifecycle: Provide standard lifecycle and command usage context

MCP Tool Usage

All operations use limps MCP tools with server "limps":

Document & Plan Tools

  • list_plans - List available plans
  • list_agents - List agents for a plan
  • process_doc - Read and analyze a single document
  • process_docs - Read and analyze multiple documents (e.g., all agent files)
  • create_plan - Create a new plan structure
  • create_doc - Create a new document
  • update_doc - Update an existing document
  • search_docs - Full-text search across documents

Health & Integrity Tools

  • check_staleness - Report stale plans/agents based on modification time
  • check_drift - Verify agent file references match actual filesystem
  • infer_status - Suggest status updates based on dependency completion

Proposals & Scoring Tools

  • get_proposals - List update proposals from staleness, drift, and inference
  • apply_proposal - Apply a single proposal with confirmation
  • configure_scoring - Update scoring weights, presets, and biases

Read the full file on GitHub · 461 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. 5d ago First seen · 461 lines · 37 tokens per session scan A 8a642b951d73

Subscribe to this mod's changes

limps-plan-operations is a skill published in the GitHub repository paulbreuler/limps (10 stars, last pushed 6mo ago), licensed MIT. It adds 37 tokens to every session and 3,726 once invoked, about $0.0002 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

spec-init

面向新项目或现有项目的文档驱动开发 skill。Use when the user wants to create, 补齐, 更新, or refine project specs, run a Spec Kit-inspired workflow loop, maintain workflow/knowledge/change docs, analyze consistency, converge implementation back into docs, or update README/AGENTS for a real project.

legeling/PromptHub · 73 tokens

release-sync

PromptHub release update skill. Use for /update-readme, version bumps, changelog updates, website sync, GUI screenshot/doc refresh, and multilingual release/documentation alignment.

legeling/PromptHub · 38 tokens

codex-build

Orchestrate Codex to BUILD code in the background while this Claude Code session (typically Opus) plans and reviews — never babysitting. The session composes the implementation plan, kicks the dev-review runner detached via a background Bash task with --preset codex-build, ENDS ITS TURN, and is woken on exit to run a…

alanshurafa/co-evolution · 181 tokens

co-evolution

General-purpose co-evolution for questions, ideas, drafts, plans, specs, arguments, and markdown documents. Composes or bounces content between agents using [CONTESTED]/[CLARIFY] markers until it converges. Triggers on "co-evolution", "co-evolve", "co evolve", "bounce", "bounce document", "agent bouncer", "refine with…

alanshurafa/co-evolution · 118 tokens

dev-review

Code-focused plan-bounce-execute workflow between Claude Code (Opus) and Codex CLI. Use when the user wants repo files changed, a bug fixed, a feature implemented, or a code plan verified before execution. One AI composes a plan, it bounces between agents with [CONTESTED]/[CLARIFY] markers until refined, then the…

alanshurafa/co-evolution · 176 tokens

earn-hunter

Automatically monitors OKX Flash Earn, Fixed Earn and Flexible Earn opportunities, sends push notifications, and guides subscription. 自动监控 OKX 闪赚、定期和活期赚币机会,推送通知并引导申购。Use when user says: 有闪赚通知我, 监控赚币, monitor earn, notify me about earn, 定时检查理财, 执行 earn-hunter 扫描, earn-hunter scan, 活期年化高了通知我, 监控活期.

okx/agent-skills · 114 tokens