pm-edit

pm-edit is a skill for Claude Code, Codex from Hank95/mdpm. It costs 18 tokens per session (694 once invoked), scanned A, original, MIT.

A task-editing command for changing details such as priority, due date, tags, assignee, dependencies, and linked external IDs. Dependencies are other tasks that must be completed first.

In plain words
What is it for?
For reprioritising work, changing deadlines, adding or removing tags, assigning tasks, recording dependencies, and adding notes.
Why use it?
It keeps task metadata, file names, update dates, and work logs consistent when details change.

Skill for Claude CodeCodex

Part of the mdpm plugin — 17 skills shipped together

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/hank95/mdpm/pm-edit
Any agent
npx skills add Hank95/mdpm --skill pm-edit
Clone the repo
git clone --depth 1 https://github.com/Hank95/mdpm

Made for: Claude Code, Codex.

Or install mdpm, the plugin that ships this one along with the rest of its 17 skills.

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 pm-edit

README.md
[![agentmods](https://agentmods.dev/badge/skills/hank95/mdpm/pm-edit.svg)](https://agentmods.dev/skills/hank95/mdpm/pm-edit)
Your own site
<a href="https://agentmods.dev/skills/hank95/mdpm/pm-edit"><img src="https://agentmods.dev/badge/skills/hank95/mdpm/pm-edit.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 694 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.00018 $0.00694
Opus 5 $0.00009 $0.00347
Sonnet 5 $0.00004 $0.00139
Haiku 4.5 $0.00002 $0.00069

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

Security

Grade A, and why

pm-edit 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.

skills/pm-edit/SKILL.md · 53 lines

How it starts

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

/pm-edit

Edit frontmatter fields on an existing task. $ARGUMENTS is the ID or title fragment, optionally followed by field updates.

How to run

Delegate to the CLI — it validates values, preserves field order in the frontmatter, bumps updated, appends a work log entry summarizing the change, and renames the file if the title changed:

python3 "${CLAUDE_PLUGIN_ROOT}/bin/mdpm" --json edit <ref> \
  [--title "New Title"] \
  [--priority high|medium|low] \
  [--due YYYY-MM-DD | --due null] \
  [--tags a,b,c | --tags null] \
  [--depends PRJ-001,PRJ-002 | --depends null] \
  [--assigned-to "Name" | --assigned-to null] \
  [--jira-id ENG-451 | --jira-id null] \
  [--wrike-id 12345 | --wrike-id null] \
  [--note "extra work log entry"]

Parsing the user's prompt

Accept natural phrasing and map to CLI flags. Examples:

  • "bump PRJ-042 to high priority" → --priority high
  • "change PRJ-042 due to next Friday" → resolve to ISO date → --due 2026-04-25
  • "tag PRJ-042 with auth and security" → --tags auth,security
    • If the user says "also tag", read current tags via mdpm --json show <ref>, append the new ones, pass the full list.
  • "assign PRJ-042 to Danny" → --assigned-to Danny
  • "clear the due date" / "remove the assignee" → pass null to the relevant flag
  • "rename PRJ-042 to 'Add MFA to login'" → --title "Add MFA to login" (the CLI renames the file automatically)

Interpreting the result

  • ok: true, changes: {...} — summarize what changed. Concise, one line per field.
  • warnings: ["no fields changed"] — the user asked for a no-op. Say so and show the current values.
  • ok: false, error: "validation_error" — usually a bad priority or date format. Relay the CLI message.

Immutable fields

The CLI refuses to change id, created, or status via edit. For status transitions, use /pm-start, /pm-done, /pm-block, or /pm-move.

Notes

  • If the user wants to edit the task body (Objective / Acceptance Criteria / Notes), that's NOT a frontmatter edit. Use the Edit tool on the file directly — or suggest they open the task in the kanban board (python3 board/serve.py) where the modal has an Edit button.
  • --note is separate from field changes. Use it when the user wants an arbitrary work-log entry alongside a metadata edit (e.g. "bump to high priority — customer escalated").

Read the full file on GitHub · 53 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 · 53 lines · 18 tokens per session scan A 3945f6f06323

Subscribe to this mod's changes

pm-edit is a skill published in the GitHub repository Hank95/mdpm (3 stars, last pushed 4mo ago), licensed MIT. It adds 18 tokens to every session and 694 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-08-31.