Nm Spec Kit Task Planning

v1.0.0

Generate phased, dependency-ordered tasks from specifications with parallelization opportunities and tech-stack patterns

0· 119·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for athola/nm-spec-kit-task-planning.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nm Spec Kit Task Planning" (athola/nm-spec-kit-task-planning) from ClawHub.
Skill page: https://clawhub.ai/athola/nm-spec-kit-task-planning
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Config paths to check: night-market.superpowers:writing-plans, night-market.superpowers:executing-plans
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install athola/nm-spec-kit-task-planning

ClawHub CLI

Package manager switcher

npx clawhub@latest install nm-spec-kit-task-planning
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (generate phased, dependency-ordered tasks) match the provided SKILL.md and modules. The declared config requirements (night-market.superpowers:writing-plans, night-market.superpowers:executing-plans) align with a planning skill that creates and may run plans; no unrelated credentials, binaries, or external services are requested.
Instruction Scope
SKILL.md and module files are documentation and templates for producing tasks, phases, and tech-stack patterns. They don't instruct the agent to read arbitrary system files, exfiltrate data, or call external endpoints. Example commands (pytest, uv sync) are illustrative and not part of a hidden runtime flow.
Install Mechanism
No install spec and no code files — instruction-only. Nothing is downloaded or written by an installer during install-time, minimizing disk persistence risk.
Credentials
The skill does not request environment variables, credentials, or secrets. The only required items are two named config permissions that are coherent with producing and executing plans within the Night Market ecosystem.
Persistence & Privilege
always is false and normal autonomous invocation is allowed by default. The skill does not request system-wide config changes or access to other skills' credentials.
Assessment
This is a documentation/instruction-only planning skill and appears coherent with its stated purpose. Before enabling, confirm you are comfortable granting it the Night Market permissions it requests (writing-plans, executing-plans) because those enable the agent to create and run plans which may result in modifications to repositories or CI tasks when paired with other automation. If you want tighter control, keep the skill user-invocable only (don't enable automatic/autonomous runs) and review generated plans before execution.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🦞 Clawdis
Confignight-market.superpowers:writing-plans, night-market.superpowers:executing-plans
latestvk970fy4yfvb5qkvqpz5cnyrgfh857vy2
119downloads
0stars
1versions
Updated 6d ago
v1.0.0
MIT-0

Night Market Skill — ported from claude-night-market/spec-kit. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Task Planning

Overview

Transforms specifications and implementation plans into actionable, dependency-ordered tasks. Creates phased breakdowns that guide systematic implementation.

When To Use

  • Converting specifications to implementation tasks
  • Planning feature implementation order
  • Identifying parallel execution opportunities
  • Breaking down complex features into phases

When NOT To Use

  • Writing specifications - use spec-writing

Task Phases

Tasks follow a 5-phase structure from setup through polish:

  • Phase 0: Setup - Project initialization, dependencies, configuration
  • Phase 1: Foundation - Data models, interfaces, test infrastructure
  • Phase 2: Core Implementation - Business logic, APIs, services
  • Phase 3: Integration - External services, middleware, logging
  • Phase 4: Polish - Optimization, documentation, final testing

For detailed phase definitions, selection guidelines, and anti-patterns, see modules/phase-structure.md.

Task Format

Each task includes:

  • ID: Unique identifier (TASK-001)
  • Description: Clear action statement
  • Phase: Which phase it belongs to
  • Dependencies: Tasks that must complete first
  • Parallel Marker: [P] if can run concurrently
  • Files: Affected file paths
  • Criteria: How to verify completion

Dependency Rules

Dependencies define execution order and identify parallelization opportunities:

  • Sequential Tasks: Execute in strict order when dependencies exist
  • Parallel Tasks [P]: Can run concurrently when ALL nonconflicting conditions are met
  • File Coordination: Tasks affecting same files MUST run sequentially

Nonconflicting Criteria for Parallel Execution:

  • ✅ Files: No file overlap between tasks
  • ✅ State: No shared configuration or global state
  • ✅ Dependencies: All prerequisites satisfied
  • ✅ Code paths: No merge conflicts possible
  • ✅ Outputs: Tasks don't need each other's results

Mark tasks with [P] ONLY if they pass ALL criteria above.

For fan-out/fan-in patterns, task ID conventions, and validation rules, see modules/dependency-patterns.md.

Example Task Entry

## Phase 2: Core Implementation

### TASK-007 - Implement user authentication service [P]
**Dependencies**: TASK-003, TASK-004
**Files**: src/services/auth.ts, src/types/user.ts
**Criteria**: All auth tests pass, tokens are valid JWT

Verification: Run pytest -v to verify tests pass.

Quality Checklist

  • All requirements mapped to tasks
  • Dependencies are explicit
  • Parallel opportunities identified
  • Tasks are right-sized (not too large/small)
  • Each task has clear completion criteria

Related Skills

  • spec-writing: Creating source specifications
  • speckit-orchestrator: Workflow coordination

Troubleshooting

Common Issues

Command not found Ensure all dependencies are installed and in PATH

Permission errors Check file permissions and run with appropriate privileges

Unexpected behavior Enable verbose logging with --verbose flag

Comments

Loading comments...