Craftbooks

283 playbooks that turn "make me a landing page" into a stepwise plan: the first step locks acceptance criteria, specialists take their phase, and a reviewer grades the result before it ships. Books marked eval carry an evaluation sidecar that tests the book itself.

Build: interactive and web

Accessibility Retrofit (WCAG AA)

Take an existing HTML page and retrofit it to WCAG 2.1 AA — fixing semantic structure, alt text, color contrast, keyboard operability, focus...

4 stepseval

Animated SVG / CSS Hero

Build a single-file animated SVG or CSS hero section — a looping illustrated scene, an animated logo, or a motion banner driven by CSS keyframes or...

4 stepseval

Branding Website

Build a small brand/marketing website where the visual identity leads. Locks a visual language and mockups FIRST, then writes the copy, then builds...

5 stepseval

Browser Extension

Build a Manifest V3 browser extension scaffold — a popup, a content script, and the manifest — that does one concrete thing on the current page...

5 stepseval

Canvas Generative Art

Build a single-file generative art piece on canvas — flow fields, particle systems, recursive trees, Voronoi, noise terrain, or geometric tilings —...

4 stepseval

CRUD Web App

Build a small single-file CRUD web app — a todo list, notes, contacts, or inventory manager — with create, read, update, and delete plus localStorage...

5 stepseval

Data Visualization Explorer

Build a single interactive chart or data explorer page — bar, line, scatter, or pie — driven by sample or provided data, with controls to filter,...

5 stepseval

Design System Consultation

Interview for product context and taste, then propose a full design system — type, color, layout, motion — and capture it as a DESIGN.md with live...

3 stepseval

Digital Board Game

Build a single-file web version of a turn-based board game such as tic-tac-toe, checkers, connect-four, reversi, or a simple chess variant, with...

5 stepseval

Documentation Site

Build a single-page documentation site with a sidebar table of contents, anchored sections, code blocks, and in-page navigation — the kind of...

5 stepseval

Embeddable Feedback Widget

Build a single-file embeddable feedback, contact, or rating widget — a floating button that opens a small panel with a rating, a message field, and...

5 stepseval

Full Game with Title & Game-Over Screens

Build a complete single-file HTML game with the full screen flow — a title/start screen, the gameplay screen, a game-over screen showing the score,...

5 stepseval

HTML Arcade Game

Build a playable single-file HTML/canvas arcade game (shooter, runner, dodger, etc.). Splits design into game-mechanics and visual look, builds, then...

5 stepseval

HTML Puzzle Game

Build a single-file HTML logic or puzzle game such as a match-3, sliding tile, Sokoban, 2048, minesweeper, or sudoku. Locks the rule system, the...

5 stepseval

Idle / Incremental Game

Build a single-file idle or incremental clicker game such as a cookie/factory clicker with upgrades, generators, and exponential growth. Designs the...

5 stepseval

Installable Offline PWA

Build an installable Progressive Web App that works offline — an HTML app shell, a web app manifest, and a service worker that caches the shell so it...

5 stepseval

Interactive Physics Toy

Build a single-file interactive canvas physics or particle toy such as a bouncing-ball sandbox, gravity wells, springs, cloth, fluid, or a boids...

4 stepseval

Interactive Quiz Widget

Build a single-file interactive quiz or assessment — multiple-choice, true/false, or a scored personality quiz — that asks questions one at a time,...

5 stepseval

Juice Pass

Make the game feel alive without breaking it: feedback on every player action — hit-flash, screenshake, sound hooks, particles, score pops — added...

4 stepseval

Landing Page

Build a single high-conversion landing page for one offer — a product, signup, waitlist, or download — with a focused hero, benefits, social proof,...

6 stepseval

Metrics / Admin Dashboard

Build a single-page metrics or admin dashboard with KPI summary cards, at least one chart, and a data table, rendered from sample or provided data....

5 stepseval

Micro Game Jam

Build a tiny, complete, themed micro-game from a one-word or one-line prompt — a 60-second arcade or one-mechanic toy that fully fits in a single...

4 stepseval

Multi-Step Form Wizard

Build a single-file multi-step form wizard — a signup, checkout, survey, or onboarding form split across steps with a progress indicator, per-step...

4 stepseval

Portfolio Site

Build a personal or professional portfolio site that showcases projects, an about/bio, and contact links in a single polished page. Locks the content...

5 stepseval

Pricing Page

Build a single pricing or plan-comparison page with tiered plan cards, a feature comparison, a highlighted recommended plan, and optionally a...

6 stepseval

Product Onboarding Tour

Build a single-file product onboarding tour or coachmark walkthrough that guides a new user through key features with sequential tooltips, a...

5 stepseval

Responsive HTML Email

Build a responsive HTML email template that renders across email clients — Outlook, Gmail, Apple Mail — using table-based layout, inline styles, and...

5 stepseval

Reusable Web Component

Build a reusable custom element as a standards-based Web Component — a rating widget, toggle, accordion, modal, or color-picker — using the Custom...

4 stepseval

Build: software and code

Auth / Session Implementation

Implement an authentication and session flow — login, session/token issuance, verification, and logout — with the security fundamentals baked in....

5 stepseval

Behavior-Preserving Refactor

Refactor a module to improve its structure, readability, or design WITHOUT changing observable behavior — the defining constraint is that the tests...

5 stepseval

Build + Test a Tricky Regex

Build a regular expression that matches exactly the right strings and rejects the wrong ones — specified with concrete should-match and...

5 stepseval

Build Loop

Generic make-something procedure: scope the work and lock concrete acceptance criteria, build it, evaluate the result against those criteria, and...

3 stepseval

CI Pipeline from Scratch

Build a continuous-integration pipeline that installs, lints, tests, and builds on every push/PR — fast, cached, and gating merges on green. Scopes...

5 stepseval

Command-Line Tool

Build a command-line tool with subcommands, flags, arguments, help text, and proper exit codes. Designs the CLI UX FIRST — the command surface, flags...

5 stepseval

Containerize a Service

Containerize an application with a production-grade Dockerfile — small, secure, reproducible, and buildable — plus the supporting files to run it....

5 stepseval

Diagnose + Add Database Indexes

Diagnose slow database queries and add the right indexes — driven by the query plan, not by hunches — then prove the speedup without harming writes....

5 stepseval

ETL / Ingest Pipeline

Build an extract-transform-load pipeline that ingests source data, reshapes it to a target schema, and loads it with validation at every stage. Locks...

5 stepseval

Flagged Feature Rollout

Add a new feature behind a feature flag so it can ship dark, be toggled per-environment/user, and roll back instantly without a deploy. Plans the...

5 stepseval

GraphQL API

Build a GraphQL API with a typed schema (SDL), resolvers, queries, mutations, and input validation. Designs the schema FIRST — types, fields,...

5 stepseval

gRPC Service

Build a gRPC service from a Protocol Buffers contract — define the .proto service and messages, implement the server handlers, and verify with client...

5 stepseval

Inbound Webhook Handler

Build a handler that receives inbound webhook events, verifies their authenticity, parses the payload, and dispatches by event type — idempotently...

5 stepseval

Message Queue Consumer / Worker

Build a queue consumer/worker that pulls messages off a queue, processes them reliably, and handles failures with retries and a dead-letter path —...

5 stepseval

Model a Flow as a State Machine

Model a stateful flow (checkout, order lifecycle, connection, wizard) as an explicit finite state machine with named states, guarded transitions, and...

5 stepseval

One-Off Automation Script

Write a one-off automation script that reliably does a repetitive task — process files, call an API, transform data — with arguments, a dry-run,...

5 stepseval

Parser / DSL for a Small Grammar

Build a parser for a small domain-specific language or data format — tokenize, parse to an AST, and report clear errors on malformed input. Designs...

5 stepseval

Project Config Scaffold

Bootstrap a project's configuration — the tooling, linter, formatter, tsconfig/compiler, scripts, and ignore files — into a coherent, conflict-free...

4 stepseval

Reproduce-Then-Fix a Bug

Fix a bug the disciplined way: first write a failing test that reproduces it, then make the smallest change that turns the test green without...

5 stepseval

REST API Service

Build a RESTful HTTP API service with resource endpoints, JSON request/response bodies, status codes, validation, and error handling. Locks the...

5 stepseval

Reusable Library Package

Build a reusable library/SDK with a clean public API surface, sensible defaults, and published documentation. Designs the public API FIRST — exported...

5 stepseval

Scheduled Batch Job

Build a scheduled batch job that runs on a cadence, processes a unit of work, is safe to re-run, and reports its outcome. Scopes the job FIRST —...

5 stepseval

Schema / Type Migration

Plan and execute a multi-file schema or type migration safely — changing a data model, type definition, or interface across the codebase while...

5 stepseval

Targeted Performance Fix

Make a measured, targeted performance improvement — profile to find the real bottleneck, optimize it, then prove the speedup with before/after...

5 stepseval

Test Suite Backfill

Add a meaningful test suite to existing untested (or under-tested) code, prioritizing the highest-risk behavior and edge cases over vanity coverage....

4 stepseval

Type-Safety Pass

Tighten the types of a module — eliminate `any`/implicit-any, add precise annotations, narrow unions, and make illegal states unrepresentable —...

5 stepseval

Typed SDK Wrapper for an External API

Wrap a third-party HTTP API as a clean, typed client library — studying the real API surface first so the wrapper matches reality, not guesses....

5 stepseval

Media: images

Alt-Text Pass

Generate accurate, WCAG-appropriate alt text for every image referenced by a site or folder and apply it back into the markup. Scope FIRST which...

5 stepseval

Batch Image Transform

Apply a consistent transform across a whole folder of images — resize, crop to a ratio, convert format, compress, watermark, or recolor — and verify...

5 stepseval

Character Sheet

Lock a character before the pages need them: reference images across the poses and expressions the story calls for, the palette and silhouette...

5 stepseval

Character Turnaround

Give one character the full turnaround treatment: front, side, back, and three-quarter views generated against the same style anchor, every view...

5 stepseval

Coherent Icon Pack

Produce a coherent set of UI icons that look like they belong to one family — consistent grid, stroke weight, corner radius, optical sizing, and...

5 stepseval

Diagram from Text

Render a clear technical diagram — flowchart, architecture, sequence, ER, or org chart — from a plain-language description, as code-defined...

4 stepseval

Favicon & App-Icon Set

Generate the complete favicon and app-icon set a modern site needs — the multi-size favicon, Apple touch icon, Android/maskable icons, and the web...

5 stepseval

Game Sprite Sheet

Produce a game-ready sprite sheet — a character or object with its animation frames (idle, walk, jump, attack) on a uniform grid — plus the frame...

5 stepseval

Image Dedup & Cluster

Find and group near-duplicate images across a folder — exact dupes, resized/re-encoded copies, and visually similar shots from the same burst — using...

5 stepseval

Image Palette Extraction

Extract a usable color palette from an image or a set of images — the dominant and accent colors as hex/RGB with proportions — and emit it as design...

4 stepseval

Image SEO Rename & Tag

Rename and tag a folder of images for SEO and findability — descriptive, hyphenated, keyword-rich filenames plus consistent metadata (title, caption,...

4 stepseval

Index & Describe an Image Set

Given a folder of images, produce a structured index that describes each one (caption, tags, notable content) in a consistent schema, then validates...

5 stepseval

Logo & Variant Set

Generate a coherent logo and the full set of variants a real brand needs — primary mark, horizontal lockup, stacked lockup, icon-only/favicon, plus...

5 stepseval

Marketing Hero Image

Create a single high-impact marketing hero image from a brief and place it into a working hero section. Lock the brief FIRST — aspect ratio, subject,...

5 stepseval

OCR a Folder of Scans

Extract the text from a folder of scanned documents or photographed pages into clean, structured text — preserving reading order, paragraph breaks,...

5 stepseval

Page Spread

Produce one page spread from script to panels: beats planned, panel art generated against the character sheets — never freehand from memory —...

5 stepseval

Photo Cull & Rank

Rank and cull a set of photos by objective quality — sharpness/focus, exposure, composition, eyes-open/expression for people, and...

5 stepseval

Thumbnail Generator

Derive a consistent set of thumbnails or responsive size-variants from a folder of source images — square crops for grids, srcset widths for the web,...

4 stepseval

Tileset Batch

Produce a style-locked batch of tiles and account for every one: named to the convention, sized to spec, generated against the library's style...

6 stepseval

Visual Moodboard

Compose a visual moodboard that captures a direction — palette, textures, type vibe, imagery, and reference tiles — from a written brief, so a team...

4 stepseval

Media: audio and video

Anniversary Cut

Build the highlight reel for the occasion: the archive queried for the person and the years that matter, clips chosen with stated reasons, assembled...

6 stepseval

Audio Ad Spot

Produce a short broadcast/podcast audio ad spot (15s/30s/60s) — a tightly-timed script with a hook, value, and a single call-to-action, synthesized...

5 stepseval

Audio Highlight Reel

Cut a long recording (podcast, interview, talk, stream) down to a short highlight reel of its best moments, delivered as a single stitched audio clip...

5 stepseval

Edit Notes Pass

Review the footage like an editor: timestamped notes on pacing and cuts read against the transcript and the media index, then a machine-readable cut...

5 stepseval

Log the Practice Session

Close out today's practice properly: log what was actually worked with honest minutes and tempo marks, and set up tomorrow's session so the next...

5 stepseval

Master the Audiobook

Assemble the finished chapters into a release: completeness swept against the manuscript first, the metadata manifest built and verified chapter by...

6 stepseval

Meeting Recording to Minutes & Actions

Turn a meeting recording into structured minutes plus a clear action-item list — who agreed to do what by when — derived from the audio. Transcribes...

4 stepseval

Monthly Recording Review

Sit with the month's recordings the way a teacher would: compare each against last month's marks, hear the progress your own ears stopped noticing,...

5 stepseval

Music Library Metadata Tagging

Tag and organize a folder of audio files with consistent, correct metadata — title, artist, album, track number, year, genre — so the library is...

4 stepseval

Narrate a Chapter

Take one chapter from manuscript to narrated audio, deliberately: a narration script with pronunciations and pauses marked before anything renders,...

6 stepseval

Narrated Slideshow Video

Build a self-playing narrated slideshow — slides that auto-advance in sync with spoken narration, delivered as a single playable HTML page (slides +...

5 stepseval

Plan the Episode

Turn the idea backlog and last episode's loose threads into a locked plan for the next episode: a rundown with timed segments, what to prep, and a...

5 stepseval

Podcast Chapters & Show Notes

Turn a podcast episode into navigable chapter markers plus publish-ready show notes — timestamped chapter titles, an episode summary, key takeaways,...

5 stepseval

Rough Cut Assembly

Execute the cut list and prove it ran: every clip verified against the media index before anything renders, the assembly driven through the project's...

5 stepseval

Subtitle & Caption Generator

Generate time-synced subtitles/captions for a video in a standard caption format (SRT or WebVTT), so the video is accessible and watchable without...

5 stepseval

Text-to-Speech a Folder

Turn a folder of text files (articles, chapters, notes, markdown) into a set of spoken audio files using text-to-speech, so a reading list becomes a...

4 stepseval

Transcribe and Index a Tape

Give one tape the ten-second-findability treatment: transcript on file, then every moment worth finding indexed with its timecode and people tags —...

6 stepseval

Transcribe Audio or Video

Convert an audio or video recording into an accurate, readable transcript using speech-to-text, with speaker labels and timestamps. Scopes the output...

4 stepseval

Transcript to Shownotes

Take a finished recording from raw transcript to publishable shownotes: a clean transcript on file, timestamped chapters, a summary listeners...

5 stepseval

Video Storyboard from a Script

Turn a video script into a shot-by-shot storyboard — each scene broken into shots with a framing sketch/description, camera direction, on-screen...

4 stepseval

Voiceover / TTS Script

Write a voiceover script tuned for spoken delivery — by a human VO artist or a text-to-speech engine — for a video, ad, explainer, or narration, with...

4 stepseval

YouTube Chapters & SEO Metadata

Turn a video (or its transcript) into a complete, paste-ready YouTube publishing kit — SEO title options, an optimized description with timestamped...

5 stepseval

Documents and decks

Board Meeting Deck

Build a board-meeting deck that briefs directors efficiently — an executive summary up top, KPI dashboard, financials, progress against goals, key...

5 stepseval

Contract Template (Non-Legal-Advice)

Draft a reusable, plain-language agreement template — service agreement, NDA, freelance contract, or terms — with clearly marked fill-in fields,...

5 stepseval

Customer Case Study

Write a persuasive customer/case-study writeup that turns a customer's results into a credible marketing asset — challenge, solution, and quantified...

5 stepseval

Ebook Compile

Compile a collection of notes, articles, or chapter drafts into a coherent, readable ebook — with a title page, table of contents, consistently...

5 stepseval

Execute an Ops Runbook

Execute a written operational procedure step by step with verification and a stop-on-anomaly rule. Inventories the runbook and its preconditions...

3 stepseval

Formatted Report

Produce a polished, print-ready formatted report — quarterly business review, research findings, status report, or analysis writeup — rendered as a...

5 stepseval

Fundraiser Wrap-Up

Close a fundraising drive properly: verify the final numbers against the donation ledger, confirm every donor was thanked (or finish the thank-yous...

5 stepseval

Investor Pitch Deck

Build a fundraising or sales pitch deck that tells a tight investor-grade story: problem, solution, market size, product, business model, traction,...

5 stepseval

Invoice Generator

Generate a clean, professional, print-ready invoice from billing details — sender/recipient, line items with quantity and rate, subtotal, tax, total,...

4 stepseval

Meeting Minutes & Actions

Turn a meeting transcript, recording notes, or rough scratch into clean, distributable meeting minutes — attendees, agenda topics discussed,...

4 stepseval

Newsletter Issue

Produce a single polished, email-client-safe newsletter issue — intro, a few curated stories with links, a featured section, and a CTA — that renders...

5 stepseval

One-Pager Brief

Create a single-page brief or summary that fits one printed page and lands one message fast — a product one-pager, executive summary, project brief,...

5 stepseval

Ops Runbook

Write an operational runbook or playbook a tired on-call engineer can follow at 3am without thinking — covering when to use it, prerequisites,...

5 stepseval

Plan

Author a PLAN for a piece of work as a reviewable draft task: a strong 'about', a set of outcomes (what should be created or updated at success), an...

5 stepseval

PowerPoint from Content

Turn source content into a real PowerPoint file (.pptx, editable in PowerPoint) — not an HTML deck. Locks the narrative and per-slide message first,...

5 stepseval

Proposal / Statement of Work

Draft a client proposal or statement of work that wins the deal and prevents scope creep — covering objectives, scope, deliverables,...

5 stepseval

Résumé / CV

Build a clean, ATS-friendly résumé or CV from a person's background, tailored to a target role. Scopes the target role and the highlight reel of...

5 stepseval

Slide Deck from Content

Turn a body of source content into a presentation deck. Outlines the narrative first, designs a consistent slide look, then builds the deck (HTML...

5 stepseval

Spec Authoring

Turn a rough intent into a backlog-ready spec: interrogate scope and requirements against the real code, then file a well-formed, unambiguous issue.

1 stepeval

Team Handbook Section

Write a clear, reference-grade section of a team/company handbook — a policy, process, or how-we-work doc that a new hire can read once and act on...

5 stepseval

Technical Design Doc

Write a technical design document (RFC / engineering design doc) that gets a system change reviewed and approved — covering context and problem,...

5 stepseval

Technical Documentation

Generate a coherent documentation set from a codebase, organized by the Diataxis model (tutorials, how-to guides, reference, explanation), with...

8 stepseval

Whitepaper

Author a long-form, authoritative whitepaper that makes a researched argument — a technical position paper, industry analysis, or thought-leadership...

5 stepseval

Content and writing

A/B Ad Copy Variations

Generate a set of distinct, testable ad-copy variations for one offer across the angles worth A/B testing: it first locks the platform and its...

4 stepseval

Brand Tone Rewrite

Re-voice existing content to a specific brand tone while preserving every fact and the original structure: it first codifies the target voice into a...

4 stepseval

Bulk Product Descriptions

Generate consistent, on-brand product descriptions in bulk from a list of products and their attributes: it first locks the brand voice, the field...

4 stepseval

Customer Case Study

Write a persuasive, evidence-backed customer success story in the classic challenge-solution-results arc: it first scopes the customer, the...

5 stepseval

Documentation Rewrite

Rewrite confusing existing documentation into clear, scannable, task-oriented prose without losing any technical fact: it first audits the current...

4 stepseval

FAQ from Source Docs

Build a grounded FAQ page by mining real source documents for the questions users actually ask, then writing tight, accurate answers traced back to...

4 stepseval

Human-Readable Changelog

Turn raw commit/PR history into a human-readable changelog that users actually understand: a developer first gathers and triages the merged changes...

4 stepseval

Knowledge Base Article

Write a support knowledge-base article that lets a user solve their problem without contacting support: it first scopes the exact user problem, the...

5 stepseval

Landing Page Copy

Write conversion-focused copy for a single landing page: it first locks the offer, the one primary audience, the single desired action, and the core...

5 stepseval

Lifecycle Email Sequence

Design and build a multi-email lifecycle sequence (welcome, onboarding, nurture, re-engagement) that moves a subscriber from one stage to the next:...

5 stepseval

Localize Content

Localize and translate content into a target language and locale with cultural adaptation, not just word-for-word translation: it first scopes the...

5 stepseval

Press Release

Write a professional, AP-style press release ready to send to journalists: it first locks the news angle, the five W's, the approved quote(s), and...

5 stepseval

SEO Blog Post

Write a complete, SEO-aware blog post that ranks and reads well: it locks the primary keyword, search intent, target reader, and a heading-by-heading...

5 stepseval

SEO Metadata Pack

Generate a complete on-page SEO metadata pack for a set of pages: it first scopes each page's primary keyword and search intent and the length/format...

4 stepseval

Social Media Thread

Write a multi-post social thread (X/Twitter, LinkedIn, Threads) that hooks, delivers, and converts: it first locks the single angle/big idea, the...

4 stepseval

Summarize a Long Document

Distill a long document into a faithful, well-structured summary at a chosen depth: it first scopes the audience, the target length and format (TL;DR...

4 stepseval

Tailored Cover Letter

Write a tailored, one-page cover letter that maps a candidate's real background to a specific job's requirements: it first scopes the role's key...

4 stepseval

Data and analysis

A/B Test Readout

Analyze a controlled experiment and produce a decision-ready readout: does the variant beat control, by how much, and is it real? States the...

5 stepseval

Anomaly / Outlier Scan

Scan a dataset for anomalies and outliers and report what is genuinely unusual versus expected noise. Defines the detection criteria and thresholds...

5 stepseval

Answer a Question with SQL

Answer a specific business question against a database or table set with a correct, readable SQL query and a short written answer. Scopes the...

4 stepseval

Chart Pack from Data

Build a single interactive HTML page of charts that answers a defined set of questions about a dataset. Scopes the questions and the right chart type...

5 stepseval

Clean a Dataset

Profile, clean, and validate a messy CSV/TSV/JSON dataset into an analysis-ready table. Profiles the raw data FIRST (row/column counts, types, null...

4 stepseval

Cohort / Retention Analysis

Analyze retention or behavior by cohort to reveal whether the product is getting stickier over time. Defines the cohort key, the activity event, and...

5 stepseval

CSV / Tabular Transformer

Reshape and convert tabular data from one schema to another: rename and reorder columns, split or merge fields, derive new columns, pivot/unpivot,...

4 stepseval

Dashboard Specification

Specify a dashboard from the questions it must answer, before anyone builds it — the artifact that prevents a chart-salad dashboard nobody uses....

4 stepseval

Data Dictionary

Document a dataset's schema as a clear, complete data dictionary so others can use it without guessing. Inspects the data FIRST to derive each...

4 stepseval

Data Quality Audit

Audit a dataset against explicit data-quality rules and produce a scorecard of where it passes and fails across completeness, validity, consistency,...

5 stepseval

Dataset to Narrative Report

Turn a dataset into a written, evidence-backed analytical report that a non-technical reader can act on. Analyzes the data FIRST to surface the real...

5 stepseval

Join / Merge Two Datasets

Combine two datasets into one reconciled table on a shared key, correctly handling the join type, key mismatches, and duplicate fan-out. Profiles...

4 stepseval

KPI Scorecard Page

Build a single-page KPI scorecard that rolls a dataset up into the handful of numbers a team tracks, each shown with its current value, target, and...

5 stepseval

Simple Forecast / Trend Model

Build a simple, defensible forecast of a time series (revenue, demand, signups, usage) with the assumptions and method stated up front and the...

4 stepseval

Spreadsheet / Financial Model

Build a working spreadsheet-style model (budget, forecast, unit economics, pricing, or scenario calculator) with clearly separated inputs,...

4 stepseval

Survey Analysis

Analyze survey responses into a clear summary of what respondents actually said, across both quantitative (rating/multiple-choice) and open-text...

5 stepseval

Knowledge and research

Annotated Bibliography

Build a formal annotated bibliography for a research topic: a planner locks the scope, the citation style, and the annotation rubric (summary +...

5 stepseval

Citation Audit

Audit an existing document's claims against its citations and report every mismatch: a reviewer pairs each cited claim with the citation it depends...

5 stepseval

Cited Research Report

Produce a rigorously cited research report that answers a specific question end to end: a planner first decomposes the question into sub-questions...

5 stepseval

Competitive Analysis

Compare a set of competitors across consistent dimensions and turn the comparison into an actionable analysis: a planner locks the competitor set and...

5 stepseval

Corpus Synthesis

Read a provided corpus of documents and synthesize it into a single coherent overview: a planner sets the synthesis question and the extraction...

5 stepseval

Curated Annotated Reading List

Curate an annotated reading list on a topic for a defined reader: a planner sets the reader, their goal, and the selection and ordering criteria,...

4 stepseval

Decision Evidence Brief

Answer a specific decision question with a weighted, confidence-rated evidence brief: a planner frames the decision and the options, locks the...

5 stepseval

Domain Glossary

Build a consistent, accurate glossary for a domain: a planner sets the domain scope, the term-selection criteria, and the entry template, a...

5 stepseval

Due-Diligence Brief

Produce a structured due-diligence brief on an entity (company, vendor, investment, partner): a planner locks the diligence dimensions and red-flag...

5 stepseval

Fact-Check a Set of Claims

Verify a set of claims one by one and produce a verdict report: a planner extracts and itemizes every checkable claim and locks the rating scale, a...

5 stepseval

Literature Review

Survey the existing literature on a topic and synthesize it into a structured review: a planner sets the scope, inclusion criteria, and the themes to...

5 stepseval

Market & Landscape Scan

Survey a market or landscape and write a scan that sizes it, maps the players, and surfaces trends: a planner scopes the market boundary and the...

5 stepseval

Option Comparison Matrix

Compare a set of options against weighted criteria and ship an interactive HTML comparison matrix with a recommendation: a planner locks the options,...

5 stepseval

Research to Word Document

Research a question with logged sources, write a cited report, then produce a real Word document (.docx, plus PDF on request) via DocBlocks and save...

6 stepseval

Topic Explainer

Explain a complex topic clearly for a defined audience: a planner pins the audience, their assumed prior knowledge, and the concepts that must be...

5 stepseval

Comms and ops automation

Bulk CRM Update from Notes

Turn unstructured notes (call logs, meeting recaps, email threads) into a batch of structured CRM updates: per-contact field changes, activity logs,...

4 stepseval

Daily Calendar & Prep Brief

Assemble a morning brief from the day's calendar: a chronological agenda with per-meeting prep notes, conflicts flagged, and a short...

4 stepseval

Daily Email Digest from a Corpus

Produce an email-ready digest that summarizes a corpus of content (docs, feeds, notes) for a recurring send. Scopes what matters and the format...

5 stepseval

Inbox Triage & Reply Drafts

Triage a batch of incoming emails or messages into priority buckets and draft replies for the ones that need them. Locks the triage rules and bucket...

5 stepseval

Incident Communication Templates

Author a reusable set of incident communication templates: status-page posts and stakeholder update messages for each phase of an incident...

4 stepseval

Meeting Notes to Action Items

Convert raw meeting notes or a transcript into a clean, assigned action-item list with owners, due dates, and the decisions that drove them. Extracts...

4 stepseval

Meeting Prep Brief

Walk into the meeting already warm: who's in the room, what was promised last time, what you want out of this one, and the two questions worth asking...

4 stepseval

Monitoring Alert Rules

Author a set of monitoring/alerting rules as a deployable config (Prometheus alerting rules, Grafana/Alertmanager YAML, or a CloudWatch-style spec):...

4 stepseval

Morning Topic Brief

Be informed without the doomscroll: this morning's items per watched topic, each with its source named, rumor separated from reporting, and...

5 stepseval

Multi-Channel Broadcast Announcement

Adapt a single announcement (launch, policy change, maintenance window, org news) into channel-tailored variants — email, Slack/Teams post,...

4 stepseval

Notification Router

Build an event-to-channel notification router: a small module that takes incoming events and routes each to the right destination (Slack channel,...

5 stepseval

On-Call Escalation Playbook

Author an on-call escalation playbook: the severity ladder, who-to-page-when escalation tiers with timeouts, communication cadence to stakeholders,...

4 stepseval

On-Call Shift Handoff

Produce a clean end-of-shift on-call handoff: open incidents and their state, watch-items and known-flapping alerts, deferred actions, and anything...

4 stepseval

Personal / Team Weekly Review

Assemble a reflective weekly review that pulls the week's done-list, metrics, and open loops into a structured retrospective with wins, misses,...

4 stepseval

Plan the Week

Start Monday with the week already shaped: every meeting seen, the ones needing prep flagged, the conflicts and overload called out, and real focus...

5 stepseval

Recurring Status Report

Produce a recurring (weekly/biweekly) status report by gathering signals from the team's tools and writing a tight, skimmable update for...

5 stepseval

RSS / Feed Digest

Build a recurring digest from RSS/Atom feeds or news sources: fetch the latest items in the window, dedupe and cluster by topic, then write a...

5 stepseval

Standup / Team Update Summary

Condense a pile of raw team updates (standup messages, async check-ins, channel dumps) into one clean summary grouped by person or workstream,...

4 stepseval

Write an Automation Recipe

Turn 'I wish the house would...' into an inspectable, versioned automation: triggers and actions that name real devices from the house's own...

6 stepseval

Personal and business workflows

Automate a Booking or Checkout Flow

Automate a multi-step booking, reservation, or checkout flow end-to-end — select, fill details, choose options, confirm — with a hard...

5 stepseval

Batch-Fill Forms from a Dataset

Automate filling a web or PDF form once per row of an input dataset — registrations, applications, data-entry portals, mail-merge into a form. Scopes...

5 stepseval

Categorize Transactions

Classify a list of bank/card transactions into a fixed chart-of-accounts category set, with confidence and a review queue for the uncertain ones,...

5 stepseval

Classify and Route Incoming Documents

Build a document-intake pipeline that classifies each incoming file (invoice, contract, resume, receipt, ID, support ticket, other) into a fixed type...

5 stepseval

Company Research Brief

A sharp, dated, sourced brief on a company before an interview or application — what they do and how they make money, recent signals, team and role...

5 stepseval

Enrich a Leads List

Take a raw leads or contacts list and enrich each row with derived and looked-up attributes — company domain, industry, size band, role seniority,...

5 stepseval

Generate an Onboarding Checklist

Produce a clear, role-specific onboarding checklist for a new hire, customer, or user — grouped by phase (before day one, week one, first 30 days),...

4 stepseval

Generate and Send Recurring Invoices

Run a recurring billing batch: for each active client/subscription due this period, generate a correctly-numbered, line-itemed invoice with taxes and...

5 stepseval

Migrate Data Between Tools

Migrate records from a source tool/format to a destination tool/format — CRM to CRM, spreadsheet to app, JSON export to a new API — with a field...

5 stepseval

Mock Interview

A realistic practice interview run live with the candidate — planned questions calibrated to the target role and round, a real-time interview with...

5 stepseval

Monthly Invoice Run

Run the month's invoicing in one calm pass from the office's own books: an invoice per client built from the tracked work in the ledger, numbering...

5 stepseval

Offer Comparison

Turn competing job offers into one honest decision sheet — every offer normalized into the same fact grid (comp, equity with vesting caveats,...

4 stepseval

Receipts to Expense Ledger

Turn a folder of receipt photos/PDFs into a clean expense ledger: OCR each receipt, extract vendor, date, line items, tax, and total, assign an...

5 stepseval

Scheduled Backup or Export

Build a scheduled, idempotent backup/export routine that snapshots data (files, a database, or an app export) to a timestamped, optionally compressed...

5 stepseval

Scrape a Site to Structured Data

Turn one or more web pages into a clean, structured dataset (JSON or CSV) with a fixed schema — product listings, directory entries, articles,...

5 stepseval

Tailor Résumé to a Posting

Adapt an EXISTING résumé to a specific job posting — a fit map of must-hit requirements first, then a tailored variant that re-orders and re-words...

4 stepseval

Track Prices Over Time

Build a price tracker that records the price of one or more products/SKUs each time it runs, appending a timestamped history so you can see trends,...

4 stepseval

Watch a Page or API and Alert

Build a watcher that polls a web page or API endpoint on a schedule, detects a meaningful change or threshold breach, and fires an alert (and only...

5 stepseval

Home and everyday life

Capture a Recipe Card

Rescue a handwritten recipe card without sanding off its soul: transcribe the original faithfully — spelling quirks, margin notes, and all —...

5 stepseval

Care Visit Prep

Prepare a one-page brief for a medical or care appointment from the project's care record: compile everything logged since the last visit, the...

5 stepseval

Catalog an Item

Take new arrivals from shoebox to catalog: identify each item from its photo notes, record it with condition and an honest value basis, and flag what...

5 stepseval

Close the Month

Close out a month of household spending against the project's ledger: sweep the month's entries for category strays and surprises, compute the...

5 stepseval

Compatibility Check

Answer 'does it still work on the new version?' with a matrix, not a shrug: the datapack's files checked against each target version's format rules,...

5 stepseval

Curate an Album

Turn a thousand camera-roll photos into the forty that tell the story: cull the near-duplicates, keep the keepers for honest reasons, caption what...

5 stepseval

Design the Invitations

Produce the invitation the day deserves and get the facts beyond doubt: the date, time, venue, and RSVP instructions checked letter-for-letter...

4 stepseval

Family Story Chapter

Write one chapter of the family story from the record you actually have — interviews and tree facts woven into narrative, speculation clearly dressed...

4 stepseval

Forge a Crossword

Construct a personalized crossword and prove it works before anyone's pencil touches it: the grid actually interlocks, every entry sits in the grid...

5 stepseval

Holiday Card Run

Make the December run a pleasure instead of a panic: sweep the address list while there is still time to fix it, settle the card message, and produce...

6 stepseval

Insurance Inventory

Compile the inventory nobody has until the day they desperately need it: every cataloged item with its value, photo reference, and acquisition info...

5 stepseval

Lay Out the Cookbook

Assemble the heirloom: every tested recipe in its chapter, the provenance kept beside the food — whose recipe it was, what table it came from —...

4 stepseval

Lay Out the Puzzle Pack

Bind the month's puzzles into one print-ready pack: a cover, a page per puzzle, and the solutions gathered in the back where they belong — the thing...

4 stepseval

Memory Session

Run one guided memory session and bank it properly: pick the theme the timeline is hungriest for, follow the thread of feeling through the recorded...

5 stepseval

Morning House Report

The house says good morning properly: every zone's state read through the device tools, anything unusual surfaced first with one suggested action...

5 stepseval

Pest & Problem Diagnosis

Turn 'something is wrong with the tomatoes' into a ranked differential: the likely culprits with the evidence for each, the gentlest treatment first,...

5 stepseval

Plan the Week's Dinners

Turn the pantry's real state into a planned week of dinners and one grocery list: check what is stocked, low, and out, plan seven dinners that use...

5 stepseval

Post-Event Thank-You Sweep

Close the event the way it deserves: every gift-giver and every helper matched to a personal note, drafted in one sitting and tracked to sent — so...

5 stepseval

Practice Exam

Take the exam before the exam: a timed, self-scoring practice paper blueprinted from the deck — weighted toward what the review record says is weak —...

5 stepseval

Pre-Departure Countdown

Audit a trip's readiness in the final stretch before departure: verify documents and bookings, close the packing gaps against the packing roster,...

5 stepseval

Quarterly Shoebox Summary

Close the quarter the way your accountant wishes everyone did: totals by category computed from the ledger entries themselves, the...

5 stepseval

Receipt Intake

Empty the shoebox inbox properly: every waiting receipt becomes a dated, categorized ledger entry that names its source file, likely duplicates get...

5 stepseval

Record a Relative

Bank an elder's interview while the telling is fresh: file the transcript, pull the people, places, and dates into the family record with their...

5 stepseval

Scaffold a Mod

Start the mod right: a correctly-shaped Minecraft datapack — pack.mcmeta carrying the right format number for the target game version, namespaced...

5 stepseval

Seasonal Maintenance Sweep

Run a season's home-care sweep against the project's systems roster: work out what care is due or overdue from each system's interval, plan the...

5 stepseval

Thank-You Note Batch

Clear the owed-thanks list with notes that sound like you: read who is owed and for what from the correspondence roster, draft one note per person...

5 stepseval

Weak-Spot Drill

Stop practicing what you already know: read the review record, name the actual weak spots with the numbers as evidence, and build a short targeted...

5 stepseval

Weave a Chapter

Weave the banked sessions into one memoir chapter in the teller's voice: every scene traceable to something actually said, gaps marked for a future...

4 stepseval

Weekly Garden Walkthrough

Walk the beds once a week with a plan instead of a vague worry: what each bed needs this week derived from the plantings and the season, the...

5 stepseval

Year in Review

Build the year-in-review that makes someone cry the good way: every month represented or its gap acknowledged, the people balanced, the closing image...

5 stepseval

Review and QA

Accessibility Audit

Audit a web page or UI for accessibility against WCAG 2.1 AA and produce a prioritized remediation report. First scopes the components and flows in...

5 stepseval

Annual Document Review

Walk a life binder's document roster once a year: inventory what is present and missing, confirm each present document is still current (right...

5 stepseval

API Contract Review

Review an API contract or specification (OpenAPI/REST/GraphQL) for correctness, consistency, and developer ergonomics, then produce a findings...

5 stepseval

Artifact Integrity & Ship Review

Perform an isolated ship-readiness review of the actual built artifacts of a project—sites, npm packages, archives, CLIs, binaries, installers,...

5 stepseval

Audit Recurring Subscriptions

Audit a set of transactions or a vendor list to find every recurring subscription, normalize each to a monthly cost, surface duplicates, price hikes,...

5 stepseval

Browser QA Audit

Exercise a running app in a real browser, triage what breaks, and produce a report-only QA findings list with a health score — no code changes.

1 stepeval

Careful Mode

Safety guardrails for destructive commands

1 stepeval

Codebase Refactoring Review

Review an entire codebase for the least cogent, highest-leverage refactoring opportunities without changing source. Uses the repository map and...

5 stepseval

Codebase UX Review

Review the user experience implemented across a codebase and, when runnable, exercise the key flows in a real browser. Starts from the indexed UI...

5 stepseval

Content Accuracy Review

Fact-check a piece of content for accuracy and produce a claim-by-claim verification report. First scopes the content and extracts every checkable...

5 stepseval

Deep Security Review

Run a slow, thorough, WHOLE-CODEBASE security audit that looks for SYSTEMIC weaknesses — a vulnerability class repeated across many routes, a missing...

7 stepseval

Dependency Audit

Audit a project's dependencies for security, staleness, license, and maintenance risk, then produce a prioritized remediation report. First scans the...

5 stepseval

Documentation Drift Review

Review project documentation against the code, configuration, commands, API surface, and shipped behavior to find stale or misleading guidance. Uses...

5 stepseval

Editorial & Tone Review

Run an editorial review on a piece of content for clarity, correctness, and brand voice, then produce a line-edit report and a clean revised version....

5 stepseval

Executive-Level Review

A strategic, executive-level review of a plan or scope: challenge the premise, weigh alternatives, and score each dimension before committing — the...

1 stepeval

Freeze Scope

Confine all workspace writes to one directory

2 stepseval

Investigate

Systematic root-cause debugging procedure. Iron Law: no fixes without investigation. Gathers symptoms, reproduces, traces, finds root cause, saves...

6 stepseval

Lightweight Threat Model

Produce a lightweight threat model for a feature or system using a structured method (STRIDE over a simple data-flow diagram) and output a...

5 stepseval

Live Browser QA Pass

Run a hands-on quality-assurance pass on a running web app or page by actually exercising it in a browser, then emit a defect report with...

5 stepseval

Performance Audit

Audit an application or page for performance problems with measurements, then produce a report of the highest-impact optimizations. First scopes the...

5 stepseval

Playtest Report

Playtest like it matters: a structured pass over the mechanics, the edge inputs, and the score loop, every finding written with its repro steps — a...

5 stepseval

Pull Request Review

Staff-engineer-style PR review. Loads PR context, walks a per-file diff, applies a safety/quality checklist, and posts a structured summary. Requires...

5 stepseval

QA

Live UI QA pass with a real browser. Navigates the target, interacts with the golden-path flow, captures findings, fixes atomically, re-tests.

6 stepseval

Release Readiness Review

Run a go/no-go release readiness review against a structured pre-launch checklist and produce a sign-off report with a clear ship decision. First...

5 stepseval

Reliability & Resilience Review

Review a codebase for production reliability and resilience risks across asynchronous work, external dependencies, state transitions, resource...

5 stepseval

Root-Cause Investigation

Debug a defect or production incident down to its true root cause and document the diagnosis with evidence, instead of patching the first symptom....

5 stepseval

Root-Cause Investigation

Debug systematically: reproduce the failure and find the true root cause before changing any code, then fix and verify.

7 stepseval

Security Architecture Review

A structured security architecture review: walk the stack for secrets, dependencies, auth, and common vulnerability classes, then report findings...

1 stepeval

Security Review of a Diff

Perform a focused security review of a code change or diff and produce a vulnerability report mapped to a threat checklist. First scopes the change's...

5 stepseval

Source Quality Audit

Once a month, make the reading list earn its place: score each source on what it actually delivered — accuracy, originality, noise — and keep,...

5 stepseval

Test Coverage Review

Review a codebase or module's test suite for real coverage and quality, then produce a gap report and a prioritized backlog of tests to add. First...

5 stepseval

UX & Visual Design Review

Critique a UI's user experience and visual design and produce a prioritized design-review report. First scopes the screens and flows and locks a...

5 stepseval

Weekly Pipeline Review

The weekly walk of a job-search pipeline — a grounded snapshot of every application (what moved in the last seven days, what went stale, which...

4 stepseval

Ship and release

Changelog Cut

Cut a new versioned section into a Keep a Changelog / CHANGELOG.md style file for a release — moving entries out of the Unreleased section into a...

4 stepseval

Deploy Checklist

Author and then actually execute a pre-deploy verification checklist for shipping a release to production — the concrete gates that must be green...

5 stepseval

Engineering Retrospective

Build a data-grounded engineering retrospective from git history: activity, hotspots, review patterns, and per-person growth notes for a given window.

1 stepeval

Feature Flag Release Plan

Plan and document a progressive feature-flag rollout for shipping a change behind a flag — defining the flag and its default-off state, the staged...

5 stepseval

Hotfix Flow

Drive an expedited production hotfix from red to green: reproduce the live defect with a failing test, apply the smallest safe fix that makes it pass...

5 stepseval

Idea Office Hours

Pressure-test a product idea with forcing questions before jumping to solutions, then capture the decision in a short design doc — a structured...

9 stepseval

Incident Postmortem

Write a blameless incident postmortem after a production outage or degradation — a structured, factual document covering the impact, a precise...

5 stepseval

Office Hours

YC-style office-hours diagnostic. Surfaces forcing questions, challenges premises, lands on a sharper problem statement before any code is written.

4 stepseval

Release Announcement

Write a public-facing release announcement that turns a shipped version into a compelling story for users — a blog-post / email-style piece that...

5 stepseval

Release Notes

Turn a raw set of merged commits, pull requests, and ticket IDs into polished, human-readable release notes for a versioned release — grouped by...

5 stepseval

Release Pipeline (CI/CD)

Author a CI/CD release workflow as a YAML pipeline (GitHub Actions style) that takes a tagged commit and turns it into a published release — running...

5 stepseval

Reviewer Loop

Draft → critique → revise (looped until approved) → publish. A repeatable critique-and-revise pattern with explicit branching.

4 stepseval

Rollback Plan

Author a concrete, tested rollback plan for a release so that when a deploy goes wrong the team can revert FAST and safely without improvising under...

5 stepseval

Ship

End-to-end release procedure: run tests, run a review pass, commit/push, open the PR, wait for CI to come back green, hand off for merge. Requires a...

7 stepseval

Version Bump

Perform a coordinated, semver-correct version bump across a project — deciding MAJOR/MINOR/PATCH from the actual change set, then updating every...

5 stepseval