nord-planlisted
Install: claude install-skill juliuswiener/nord-kit
# nord-plan — parallel planning tournament
Invoking this skill IS opt-in to multi-agent orchestration. Run the Workflow tool with the
script below. Pass the task description as `args.task` (fall back to the conversation).
Why this over ralplan: ralplan runs ONE plan through sequential Planner→Architect→Critic
debate. nord-plan explores the solution space in parallel (multiple independent approaches),
scores them, then synthesizes — better when the right approach is not obvious.
The result is a plan marked **pending approval** — do not execute it without explicit approval.
Hand off to `ralph` (sequential) or `team` (parallel) for execution.
```javascript
export const meta = {
name: 'nord-plan',
description: 'Parallel multi-approach planning tournament',
phases: [
{ title: 'Draft', detail: 'parallel planners, different lenses' },
{ title: 'Judge', detail: 'parallel scoring' },
{ title: 'Synthesize', detail: 'merge winner + best of rest' },
],
}
const task = (args && args.task) || 'the task described in the conversation'
const LENSES = [
{ key:'mvp-first', prompt:'Simplest path to working value. Minimize scope, ship fast, defer the rest.' },
{ key:'risk-first', prompt:'Surface the highest risks/unknowns first and de-risk them early. Favor robustness.' },
{ key:'architecture-first', prompt:'Clean long-term design, the right abstractions and boundaries, maintainability.' },
]
const PLAN_SCHEMA = { type:'object', properties:{ summary:{