completing-a-task

completing-a-task is a skill for Claude Code from arozumenko/sdlc-skills. It costs 57 tokens per session (1,187 once invoked), scanned A, original, MIT.

A handoff process for finishing an implemented task. It covers local verification, committing and pushing changes, creating a pull request, updating the relevant ticket, and sending the work to a reviewer.

In plain words
What is it for?
Use it after implementation to run checks, prepare the change for review, update the issue or ticket, and complete the formal delivery process.
Why use it?
It prevents a task from being treated as finished when only the code has been written. It also adapts the handoff steps to the project's code host and task-tracking system.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the sdlc-skills plugin — 53 skills shipped together

Good fit Use it after implementation to run checks, prepare the change for review, update the issue or ticket, and complete the formal delivery process.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arozumenko/sdlc-skills/completing-a-task
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 arozumenko/sdlc-skills --skill completing-a-task
Clone the repo
git clone --depth 1 https://github.com/arozumenko/sdlc-skills

Made for: Claude Code.

Or install sdlc-skills, the plugin that ships this one along with the rest of its 53 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 completing-a-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/arozumenko/sdlc-skills/completing-a-task.svg)](https://agentmods.dev/skills/arozumenko/sdlc-skills/completing-a-task)
Your own site
<a href="https://agentmods.dev/skills/arozumenko/sdlc-skills/completing-a-task"><img src="https://agentmods.dev/badge/skills/arozumenko/sdlc-skills/completing-a-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,187 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 warn 7 Sept 2026
SkillSpector: 4 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 46
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 46
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 46
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 46
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00057 $0.01187
Opus 5 $0.00028 $0.00593
Sonnet 5 $0.00011 $0.00237
Haiku 4.5 $0.00006 $0.00119

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

Security

Grade A, and why

completing-a-task 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 8d 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.

bundles/feature-development/skills/completing-a-task/SKILL.md · 146 lines

How it starts

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

Task Completion Protocol

When you are assigned a task — via a host-native subagent call, a PM message, a tracker ticket, or any routed work — a task is only complete when all five steps have happened, in order. Writing the code is step 1, not step 5. If you stop at step 1 and hand a diff back to your caller, you have left the task unfinished.


Platform & systems — translate before running

The commands below are written in GitHub gh form as the reference. Read scout's discovery first and translate:

  • .agents/workflow.md § Git host — your code host and its CLI: GitHub gh, GitLab glab, Bitbucket bb, Azure DevOps az repos, Gitea tea. "PR" below means PR or MR (your host's unit of change).
  • .agents/profile.md § Project systems — where tickets live (github-issues / jira / gitlab-issues / azure-boards / linear). Step 4 comments on the ticket there, which may differ from the code host.

The five steps are identical on every platform — only the commands change. If scout hasn't recorded a host/tracker, ask before assuming GitHub.


1. Code verified locally

Tests pass, type/syntax checks clean, lint clean if configured, manual check where applicable. If this step fails, the task is not done — fix it or report the blocker.

Language-specific verification commands:

  • JS/TS: npx tsc --noEmit, npx eslint <path>, npm test / npx jest / npx vitest
  • Python: python -m py_compile <file>, pytest -x -q, mypy if configured
  • Go: go build ./..., go vet ./..., go test ./...
  • Rust: cargo check, cargo clippy, cargo test

"I wrote the code and it compiles" is not verification. Run the thing.


2. Committed on a feature branch

Never commit directly to main or master. Always branch first:

git checkout -b <type>/<short-description>

git commit with a message that explains why, not just what. Small, focused commits are better than one giant blob.


3. Pushed and PR/MR opened

Read the full file on GitHub · 146 lines

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. 8d ago First seen · 146 lines · 57 tokens per session scan A 400c079f453a

Subscribe to this mod's changes

completing-a-task is a skill published in the GitHub repository arozumenko/sdlc-skills (20 stars, last pushed 4d ago), licensed MIT. It adds 57 tokens to every session and 1,187 once invoked, about $0.0003 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.