complete-task

complete-task is a skill for Claude Code from theYahia/WWmcp. It costs 24 tokens per session (577 once invoked), scanned A, original, MIT.

A workflow for completing or reassigning ELMA365 business-process tasks. ELMA365 is a business process management system in which tasks move a process from one step to the next.

In plain words
What is it for?
Use it to find a task, show its available outcomes, complete it with form values, reassign it to another employee, or add and read comments.
Why use it?
It prevents completing a task with the wrong outcome and makes the irreversible action wait for the user’s choice.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to find a task, show its available outcomes, complete it with form values, reassign it to another employee, or add and read comments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/theyahia/wwmcp/complete-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 theYahia/WWmcp --skill complete-task
Clone the repo
git clone --depth 1 https://github.com/theYahia/WWmcp

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 complete-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/theyahia/wwmcp/complete-task.svg)](https://agentmods.dev/skills/theyahia/wwmcp/complete-task)
Your own site
<a href="https://agentmods.dev/skills/theyahia/wwmcp/complete-task"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/complete-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 577 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: 1 finding, 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 analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
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.00024 $0.00577
Opus 5 $0.00012 $0.00289
Sonnet 5 $0.00005 $0.00115
Haiku 4.5 $0.00002 $0.00058

Measured yesterday against content hash 6626a5883b17, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

complete-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 yesterday.

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.

servers/elma365/.claude/skills/complete-task/SKILL.md · 47 lines

What it actually says

/complete-task — Завершить BPM-задачу

Алгоритм

  1. Найди задачу: get_tasks (kind — все / входящие / исходящие / с моим участием, closed, filter) или сразу get_task (id), если ID известен.
  2. Из карточки задачи запомни два идентификатора: id самой задачи и instanceId экземпляра процесса — complete_task требует оба.
  3. get_task_exits (id) — доступные исходы задачи. Это обязательный шаг: exitId нельзя угадать, у каждой задачи свой набор.
  4. Покажи пользователю список исходов и дождись выбора. Завершение задачи двигает бизнес-процесс дальше и необратимо.
  5. complete_task (id, exitId, instanceId, context) — заверши. В context кладутся значения полей формы, если исход их требует.
  6. Задача не наша или нужен другой исполнитель — reassign_task (id, userId) вместо завершения. ID сотрудника ищи через get_users (фильтр) или get_user_by_id.
  7. Если по задаче нужно оставить след — add_comment для элемента приложения, к которому она относится (namespace, code, id элемента); история — get_comments.

Важно

  • complete_task без предварительного get_task_exits вызывать нельзя: неверный exitId либо отклоняется, либо уводит процесс не по той ветке.
  • instanceId — это ID экземпляра процесса, а не ID задачи. Перепутанные значения дают отказ.
  • Если исход требует заполненной формы, а context пуст, ELMA365 вернёт ошибку валидации — сначала спроси у пользователя значения полей.

Формат ответа

## Задача abc-123 — Согласование договора

**Статус**: В работе · **Экземпляр процесса**: inst-77f0
**Исполнитель**: Иванов И.

### Доступные исходы
1. Согласовать (exitId: approve)
2. Отправить на доработку (exitId: rework)

Завершено по исходу «Согласовать». Процесс перешёл на следующий шаг.

Примеры

/complete-task abc-123
/complete-task abc-123 согласовать
/complete-task переназначь abc-123 на Петрова
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. yesterday First seen · 47 lines · 24 tokens per session scan A 6626a5883b17

Subscribe to this mod's changes

complete-task is a skill published in the GitHub repository theYahia/WWmcp (28 stars, last pushed 2d ago), licensed MIT. It adds 24 tokens to every session and 577 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-06.