update-task-status

update-task-status is a skill for Claude Code from ShreyPaharia/octomux. It costs 38 tokens per session (1,325 once invoked), scanned A, original, MIT.

A workflow helper for managing Octomux tasks, including their status, names, notes, and linked references. Octomux is a task board where work moves through stages such as planned, in progress, review, and done.

In plain words
What is it for?
Use it to move tasks between workflow stages, add notes, rename tasks, and attach links such as Jira tickets.
Why use it?
It keeps task records current so the team can see what is being worked on, waiting for review, or finished.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the octomux plugin — 20 skills, 1 agent shipped together

Good fit Use it to move tasks between workflow stages, add notes, rename tasks, and attach links such as Jira tickets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shreypaharia/octomux/update-task-status
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 ShreyPaharia/octomux --skill update-task-status
Clone the repo
git clone --depth 1 https://github.com/ShreyPaharia/octomux

Made for: Claude Code.

Or install octomux, the plugin that ships this one along with the rest of its 20 skills, 1 agent.

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 update-task-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/shreypaharia/octomux/update-task-status/github.svg)](https://agentmods.dev/skills/shreypaharia/octomux/update-task-status)
Your own site
<a href="https://agentmods.dev/skills/shreypaharia/octomux/update-task-status"><img src="https://agentmods.dev/badge/skills/shreypaharia/octomux/update-task-status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for update-task-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/shreypaharia/octomux/update-task-status"><img src="https://agentmods.dev/badge/skills/shreypaharia/octomux/update-task-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,325 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00038 $0.01325
Opus 5 $0.00019 $0.00662
Sonnet 5 $0.00008 $0.00265
Haiku 4.5 $0.00004 $0.00133

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

Security

Grade A, and why

update-task-status 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 11d 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.

plugin/skills/update-task-status/SKILL.md · 154 lines

How it starts

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

Update octomux task status

Move a task through the workflow board, add notes, rename the task, or link external references.

Workflow columns

Tasks flow through these columns in order (though any transition is allowed):

Column When to use
backlog Idea captured, not yet planned
planned Scoped and ready to start
in_progress Active work underway
human_review Blocked on human review / feedback
pr PR open, awaiting merge
done Merged / shipped

Moving a task to a different column

Prefer the MCP tool when available (you're in the orchestrator); otherwise fall back to the CLI.

MCP (preferred):

mcp__octomux__set_task_status({
  task_id: '<task-id>',
  status: '<workflow_status>',
})

CLI fallback:

octomux task-move <task-id> <workflow_status>

Examples:

// Move to human review (MCP)
mcp__octomux__set_task_status({ task_id: 'abc123', status: 'human_review' })

// Mark as planned (MCP)
mcp__octomux__set_task_status({ task_id: 'abc123', status: 'planned' })

// Mark as done after merge (MCP)
mcp__octomux__set_task_status({ task_id: 'abc123', status: 'done' })
# Move to human review with a note (CLI fallback)
octomux task-move abc123 human_review --note "PR draft ready, need design sign-off"

# Mark as planned (CLI fallback)
octomux task-move abc123 planned --note "Scoped in sprint planning"

# Mark as done after merge (CLI fallback)
octomux task-move abc123 done

Notes:

  • Moving to human_review or planned requires a note explaining why — use --note with the CLI, or mention it in your message when using the MCP tool
  • The move is recorded in the task activity log automatically

Renaming a task

A task's title defaults to the first 80 characters of its initial prompt, which is usually unreadable on the board. Rename it once you understand what the task is actually about.

Read the full file on GitHub · 154 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. 11d ago First seen · 154 lines · 38 tokens per session scan A 7ffba0131044

Subscribe to this mod's changes

update-task-status is a skill published in the GitHub repository ShreyPaharia/octomux (22 stars, last pushed 10d ago), licensed MIT. It adds 38 tokens to every session and 1,325 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-30.

Related

Other skills, from other repositories

claude-code-expert

Especialista profundo em Claude Code - CLI da Anthropic. Maximiza produtividade com atalhos, hooks, MCPs, configuracoes avancadas, workflows, CLAUDE.md, memoria, sub-agentes, permissoes e integracao com ecossistemas.

aAAaqwq/AGI-Super-Team · 59 tokens

cal-com-automation

Automate Cal.com tasks via Rube MCP (Composio): manage bookings, check availability, configure webhooks, and handle teams. Always search tools first for current schemas.

aAAaqwq/AGI-Super-Team · 41 tokens

coda-automation

Automate Coda tasks via Rube MCP (Composio): manage docs, pages, tables, rows, formulas, permissions, and publishing. Always search tools first for current schemas.

aAAaqwq/AGI-Super-Team · 43 tokens

close-automation

Automate Close CRM tasks via Rube MCP (Composio): create leads, manage calls/SMS, handle tasks, and track notes. Always search tools first for current schemas.

aAAaqwq/AGI-Super-Team · 41 tokens

workspace-explorer

Explore and navigate Notion workspaces via MCP. Use when searching for pages, understanding database structure, finding content, creating or updating pages/databases, or managing Notion workspace content. Triggers when user asks about Notion, mentions Notion pages/databases, wants to find something in their wiki…

feniix/pi-extensions · 123 tokens

spell-schedule

Schedule a moflo spell to run on the local machine via the moflo daemon (cron, interval, or one-time). Use when the user wants to schedule, automate, or recurringly run one of THEIR spells locally — e.g. "schedule the oap spell every hour", "run my audit spell every weekday at 9am", "fire X once tomorrow morning".…

eric-cielo/moflo · 99 tokens