growi-mcp-server: Command for Claude Code

.claude/commands/kiro/spec-tasks.md

spec-tasks is a command for Claude Code from growilabs/growi-mcp-server. It costs 6 tokens per session (629 once invoked), scanned A, a copy of spec-tasks, MIT.

A command that creates implementation tasks from a completed feature design.

In plain words
What is it for?
Use it after the design phase to generate or update `tasks.md`, optionally approving the result automatically.
Why use it?
It converts the design into actionable work and can account for whether tasks should be handled sequentially or in parallel.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; positional $N argument.

This is growilabs/growi-mcp-server's own configuration. It tells Claude Code how to work on growi-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything growi-mcp-server configures →

Part of the mcp-client-skills plugin — 2 skills, 12 commands shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to growilabs/growi-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/growilabs/growi-mcp-server/main/.claude/commands/kiro/spec-tasks.md
Clone the repo
git clone --depth 1 https://github.com/growilabs/growi-mcp-server

Made for: Claude Code.

Or install mcp-client-skills, the plugin that ships this one along with the rest of its 2 skills, 12 commands.

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 spec-tasks

README.md
[![agentmods](https://agentmods.dev/badge/commands/growilabs/growi-mcp-server/spec-tasks.svg)](https://agentmods.dev/commands/growilabs/growi-mcp-server/spec-tasks)
Your own site
<a href="https://agentmods.dev/commands/growilabs/growi-mcp-server/spec-tasks"><img src="https://agentmods.dev/badge/commands/growilabs/growi-mcp-server/spec-tasks.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 629 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.
Origin 92% copy Near-identical to another mod 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.00006 $0.00629
Opus 5 $0.00003 $0.00315
Sonnet 5 $0.00001 $0.00126
Haiku 4.5 $0.00001 $0.00063

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

Security

Grade A, and why

spec-tasks 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 7d 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.

Origin

This is a copy

92% identical to spec-tasks — 16 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/commands/kiro/spec-tasks.md · 76 lines

How it starts

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

Implementation Tasks Generator

Parse Arguments

  • Feature name: $1
  • Auto-approve flag: $2 (optional, "-y")
  • Sequential mode flag: $3 (optional, "--sequential")

Validate

Check that design has been completed:

  • Verify .kiro/specs/$1/ exists
  • Verify .kiro/specs/$1/design.md exists
  • Determine sequential = ($3 == "--sequential")

If validation fails, inform user to complete design phase first.

Invoke Subagent

Delegate task generation to spec-tasks-agent:

Use the Task tool to invoke the Subagent with file path patterns:

Task(
  subagent_type="spec-tasks-agent",
  description="Generate implementation tasks",
  prompt="""
Feature: $1
Spec directory: .kiro/specs/$1/
Auto-approve: {true if $2 == "-y", else false}
Sequential mode: {true if sequential else false}

File patterns to read:
- .kiro/specs/$1/*.{json,md}
- .kiro/steering/*.md
- .kiro/settings/rules/tasks-generation.md
- .kiro/settings/rules/tasks-parallel-analysis.md (include only when sequential mode is false)
- .kiro/settings/templates/specs/tasks.md

Mode: {generate or merge based on tasks.md existence}
Instruction highlights:
- Map all requirements to tasks and list requirement IDs only (comma-separated) without extra narration
- Promote single actionable sub-tasks to major tasks and keep container summaries concise
- Apply `(P)` markers only when parallel criteria met (omit in sequential mode)
- Mark optional acceptance-criteria-focused test coverage subtasks with `- [ ]*` only when deferrable post-MVP
"""
)

Display Result

Show Subagent summary to user, then provide next step guidance:

Next Phase: Implementation

Before Starting Implementation:

  • IMPORTANT: Clear conversation history and free up context before running /kiro:spec-impl
  • This applies when starting first task OR switching between tasks
  • Fresh context ensures clean state and proper task focus

If Tasks Approved:

  • Execute specific task: /kiro:spec-impl $1 1.1 (recommended: clear context between each task)
  • Execute multiple tasks: /kiro:spec-impl $1 1.1,1.2 (use cautiously, clear context between tasks)
  • Without arguments: /kiro:spec-impl $1 (executes all pending tasks - NOT recommended due to context bloat)

Read the full file on GitHub · 76 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. 7d ago First seen · 76 lines · 6 tokens per session scan A cdda0f5273d1

Subscribe to this mod's changes

spec-tasks is a command published in the GitHub repository growilabs/growi-mcp-server (19 stars, last pushed 1mo ago), licensed MIT. It adds 6 tokens to every session and 629 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to spec-tasks, differing in 16 lines, and is treated as a copy.