# Team Attention Hoyeon Ultrawork

> Team Attention Hoyeon Ultrawork

- Skill: `tomevault-io/team-attention-hoyeon-ultrawork` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/team-attention-hoyeon-ultrawork`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/team-attention-hoyeon-ultrawork/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/team-attention-hoyeon-ultrawork

---


# /ultrawork Skill - Automated Development Pipeline

You are initiating an **ultrawork** session - a fully automated pipeline that chains:
1. `/specify` - Interview and plan generation
2. `/execute` - Implementation

## How It Works

The ultrawork pipeline runs automatically through **Stop hooks**:
- When you complete Interview (DRAFT.md created) → Hook triggers Plan generation
- When Plan is approved → Hook triggers `/execute`
- When all TODOs complete → Pipeline ends

**You don't need to manually trigger the next step** - the hooks handle transitions.

## Your Role

1. **Extract the feature name** from user's request
2. **Initialize ultrawork state** (CRITICAL - must do before anything else)
3. **Start the specify skill** with the feature name
4. **Follow specify's interview process** normally
5. The rest happens automatically via hooks

## Execution

### Step 1: Parse User Request

Extract a short, kebab-case name for the feature:
- "Add user authentication" → `user-auth`
- "Implement payment processing" → `payment-processing`
- "Fix login bug" → `fix-login-bug`

> **Note:** State initialization is handled automatically by `UserPromptSubmit` hook (`ultrawork-init-hook.sh`).

### Step 2: Announce Ultrawork Mode

```
🚀 Ultrawork Mode Activated

Feature: {name}
Pipeline: specify → execute

Starting interview phase...
```

### Step 3: Invoke Specify

```
Skill("specify", args="{name}")
```

The specify skill will:
1. Run Interview Mode (gather requirements)
2. Wait for DRAFT.md to be created
3. **[Hook auto-triggers]** → Generate Plan when DRAFT is ready
4. Run Reviewer approval
5. **[Hook auto-triggers]** → Call /execute when Plan is approved

### Step 4: Let Hooks Handle the Rest

After specify completes with an approved plan:
- `ultrawork-stop-hook.sh` detects PLAN.md with "APPROVED"
- Hook automatically injects `/execute {name}`
- Execute runs until all TODOs complete

## User Interruption

User can stop the pipeline at any time by saying:
- "stop"
- "pause"
- "wait"

This will halt the current phase and await further instructions.

## State Tracking

The hook tracks progress in `.hoyeon/state.local.json`:
```json
{
  "session-id": {
    "ultrawork": {
      "name": "feature-name",
      "phase": "specify_interview",
      "iteration": 0
    }
  }
}
```

Phases: `specify_interview` → `specify_plan` → `executing` → `done`

## Example Flow

```
User: "/ultrawork add dark mode support"

[Hook auto-initializes state for "dark-mode"]

[You]
1. Parse: feature name = "dark-mode"

2. Announce:
   🚀 Ultrawork Mode Activated
   Feature: dark-mode
   Pipeline: specify → execute
   Starting interview phase...

3. Invoke: Skill("specify", args="dark-mode")

[Specify Interview runs...]
[DRAFT.md created]
[Hook detects → triggers "Generate the plan"]
[Plan created, Reviewer approves]
[Hook detects → triggers "/execute dark-mode"]
[TODOs completed]
[Pipeline ends]
```

## Important Notes

- **State is auto-initialized** by `UserPromptSubmit` hook - no manual setup needed
- **Do NOT manually call /execute** - hooks handle this
- **Follow specify's interview process** - gather requirements properly
- **The pipeline is autonomous** - just start it and let it run
- **User can interrupt** at any time for manual control

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/team-attention) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

