playbook

Creates, edits, imports, and deletes YAML tactic workflow definitions for project playbooks.

3|Updated Feb 12, 2026
One-click install
npx skills add https://github.com/izantech/lineup --skill playbook-izantech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: playbook
Source: https://github.com/izantech/lineup/tree/main/.lineup-core/snapshots/skills/playbook
Command: npx skills add https://github.com/izantech/lineup --skill playbook-izantech

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams need reusable, consistent multi-agent workflow definitions, but hand-writing tactic YAML files with correct schema, formatting, and stage-agent pairings is error-prone. This Skill guides users through building valid tactic files interactively. ## Core Features & Use Cases - Guided Tactic Authoring: Walks users through naming, stage building, verification criteria, and variable definition with schema validation at every step. - Import and Edit Modes: Import from example templates, edit existing project tactics (including rename handling), or delete tactics safely with confirmation. - Validation and Preview: Performs schema and semantic checks (stage ordering, variable cross-references, gate recommendations) and previews exact YAML before writing to .lineup/tactics/. - Use Case: A team wants a repeatable 'api-feature' workflow (research -> plan with approval gate -> implement -> verify). The Skill builds the tactic interactively, validates it, and writes it so /lineup:kick-off api-feature can run it. ## Quick Start Ask the assistant to create a new playbook tactic that runs research, plan, implement, and verify stages for adding API endpoints.

Frequently Asked Questions about playbook

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a custom tactic for the Lineup workflow?

Run the playbook skill and choose Create mode. It walks you through naming the tactic, building an ordered stage list with types and agents, adding verification criteria and variables, then validates and writes the YAML to .lineup/tactics/.

What stage types and agents are available in a Lineup tactic?

Stage types are clarify, research, clarification-gate, plan, implement, verify, document, and explain. Agents are researcher, architect, developer, reviewer, documenter, and teacher, with conventional pairings like plan-architect and implement-developer.

Can I override a built-in Lineup tactic with my own version?

Yes. Built-in tactics shipped with the plugin are read-only, but creating a project tactic with the same name in .lineup/tactics/ overrides the built-in. The skill warns you when a name conflicts with a built-in tactic.

How do variables work in tactic stage prompts?

Variables are defined with snake_case names, descriptions, and defaults, then referenced in stage prompts as ${variable_name}. The orchestrator prompts the user for values at runtime, and the skill validates that every reference resolves to a defined variable.

Why does the skill warn about my tactic even though it is valid?

Semantic checks warn without blocking when a verify stage lacks criteria, an implement stage has no preceding plan stage, a plan stage lacks an approval gate, or variables are unused. These are recommendations, not errors.