🎯

spike

🎯Skill

from srstomp/pokayokay

VibeIndex|
What it does

spike skill from srstomp/pokayokay

spike

Installation

Install skill:
npx skills add https://github.com/srstomp/pokayokay --skill spike
4
AddedJan 29, 2026

Skill Details

SKILL.md

Overview

```

__ __

____ ____ / /______ _ __ ______ / /______ ___ __

/ __ \/ __ \/ //_/ __ / / / / / __ \/ //_/ __ / / / /

/ /_/ / /_/ / ,< / /_/ / / /_/ / /_/ / ,< / /_/ / /_/ /

/ .___/\____/_/|_|\__,_/ \__, /\____/_/|_|\__,_/\__, /

/_/ /____/ /____/

```

# pokayokay

AI-assisted development orchestration - A Claude Code plugin that orchestrates AI-assisted development sessions with configurable human oversight, bridging the gap between hands-on control and full automation through skills, hooks, agents, and integration with ohno for task management.

Features

  • PRD to Tasks - Automatically break down requirements into epics, stories, and tasks
  • Orchestrated Sessions - Work across multiple sessions without losing context
  • Human Checkpoints - Choose your autonomy level: supervised, semi-auto, or autonomous
  • Multi-Dimensional Auditing - Verify accessibility, testing, security, docs, and observability
  • 25 Specialized Skills - Route work to domain experts automatically
  • Spike Protocol - Time-boxed investigations with mandatory decisions

Prerequisites

  • Claude Code v1.0.0 or later
  • Node.js v18 or later (for ohno CLI)
  • Git (for version control integration)

Installation

```bash

# 1. Add the marketplace (one-time setup)

claude plugin marketplace add srstomp/pokayokay

# 2. Install the plugin

claude plugin install pokayokay@srstomp-pokayokay

```

Or from inside Claude Code REPL:

```

/plugin marketplace add srstomp/pokayokay

/plugin install pokayokay@srstomp-pokayokay

```

Required: ohno MCP Server

Add to your MCP configuration:

```json

{

"mcpServers": {

"ohno": {

"command": "npx",

"args": ["@stevestomp/ohno-mcp"]

}

}

}

```

Quick Start

```bash

# 1. Initialize ohno in your project

npx @stevestomp/ohno-cli init

# 2. Plan from a PRD

/pokayokay:plan docs/prd.md

# 3. View kanban board

npx @stevestomp/ohno-cli serve

# 4. Start working

/pokayokay:work supervised

# 5. Audit completeness

/pokayokay:audit --full

```

Commands

Core Workflow

| Command | Description |

|---------|-------------|

| /pokayokay:plan | Analyze PRD and create tasks with skill routing |

| /pokayokay:revise [--direct] | Revise existing plan with impact analysis |

| /pokayokay:work [mode] | Start/continue work session (supervised/semi-auto/autonomous) |

| /pokayokay:audit [feature] | Audit feature completeness across 5 dimensions |

| /pokayokay:review | Analyze session patterns and skill effectiveness |

| /pokayokay:handoff | Prepare session handoff with context preservation |

| /pokayokay:hooks | View and manage hook configuration |

Ad-Hoc Work

| Command | Description |

|---------|-------------|

| /pokayokay:quick | Create task and immediately start working |

| /pokayokay:fix | Bug fix with diagnosis workflow |

| /pokayokay:spike | Time-boxed technical investigation |

| /pokayokay:hotfix | Production incident response |

Design & UX

| Command | Description |

|---------|-------------|

| /pokayokay:ux | UX design - user flows, wireframes, interactions |

| /pokayokay:ui | Visual design - typography, color, motion |

| /pokayokay:persona | Create user personas and journey maps |

| /pokayokay:a11y | Accessibility audit (WCAG 2.2 AA) |

| /pokayokay:marketing | Marketing and landing pages |

Development

| Command | Description |

|---------|-------------|

| /pokayokay:api | API design - REST/GraphQL patterns |

| /pokayokay:arch | Architecture review and refactoring |

| /pokayokay:db | Database schema and migrations |

| /pokayokay:test | Testing strategy and implementation |

| /pokayokay:integrate | Third-party API integration |

| /pokayokay:sdk | SDK creation and extraction |

Infrastructure & Quality

| Co