Skip to content
Flows

Plans

Plans for your next build

Browse ready-made plans, then add one to a project to track work, checks, and release.

141 routes · curated + generated

QAFlows CuratedIntermediate

Accessibility QA

Make your app usable by everyone: keyboard, contrast, labels, focus, and screen-reader basics.

Open plan
  1. 01Keyboard-only audit
  2. 02Fix keyboard operability
  3. 03Contrast and visual pass
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedIntermediate

Add a Plan/Todo System to Your Agent

Give your agent the planning discipline of the leading harnesses: an explicit, model-visible todo list that survives long tasks.

Open plan
  1. 01Design the todo data model and tool
  2. 02Render the plan into context every turn
  3. 03Enforce plan-first and completion gates
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add a Working Team Invite System to a SaaS App

Build a real invite flow for a SaaS app so existing users can invite teammates by email, store invite records, validate tokens, accept invitations, and join the correct workspace with proper permissions.

Open plan
  1. 01Audit the current auth and workspace model
  2. 02Add the invite data model and migration
  3. 03Build secure invite creation on the server
  4. ··+6 more steps to Done
9 steps60-120 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Activity Feed Feature

Implement a persistent activity timeline with backend storage, API, and UI integration

Open plan
  1. 01Define Activity data model
  2. 02Create server‑side API endpoints
  3. 03Emit activity events from key actions
  4. ··+3 more steps to Done
6 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Core SEO Features to Existing App

Integrate dynamic meta tags, Open Graph, sitemap.xml, and robots.txt with real persistence

Open plan
  1. 01Audit existing routes for SEO data
  2. 02Add dynamic meta tags with Helmet
  3. 03Add Open Graph and Twitter Card tags
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Dark Mode Toggle

Implement a persistent dark mode switch in the existing app.

Open plan
  1. 01Create Theme Context
  2. 02Define Light/Dark CSS Variables
  3. 03Build DarkModeToggle Component
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
DebuggingFlows CuratedBeginner

Add Database Persistence

Your app forgets everything on refresh: move state into a real database with working CRUD.

Open plan
  1. 01Inventory unpersisted state
  2. 02Design models and endpoints
  3. 03Wire writes to the backend
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Direct Messaging Feature

Implement a real, persistent one‑to‑one chat system in the existing app

Open plan
  1. 01Design Message & Conversation Data Model
  2. 02Create API Endpoints for Messaging
  3. 03Persist Messages and Update Read Status
  4. ··+4 more steps to Done
7 steps90-120 minutesOpen route →
Memory & ContextFlows CuratedBeginner

Add File-Based Persistent Memory

Give your agent durable memory with plain files - the radical-minimalism approach production practitioners keep converging on.

Open plan
  1. 01Design the memory file structure
  2. 02Load memory at session start
  3. 03Build the guarded memory_update tool
  4. ··+1 more steps to Done
4 steps45-75 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Google and GitHub OAuth Social Login

Integrate real Google and GitHub OAuth flows into the existing Node/Express app with persistent user records and session handling.

Open plan
  1. 01Install OAuth dependencies
  2. 02Create .env entries and load them
  3. 03Configure Passport and session serialization
  4. ··+5 more steps to Done
8 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Image Upload & Resizing Feature

Integrate a backend image upload endpoint that resizes images and stores them, plus a front‑end component to use it.

Open plan
  1. 01Install dependencies & configure storage
  2. 02Create backend upload endpoint
  3. 03Resize image with Sharp
  4. ··+3 more steps to Done
6 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Internationalization (i18n) to Existing App

Integrate multilingual support with language selection and persisted user preference.

Open plan
  1. 01Integrate i18n library
  2. 02Create translation resource files
  3. 03Refactor UI components to use translation function
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
DebuggingFlows CuratedBeginner

Add Loading/Error States

Eliminate silent failures and frozen screens: add loading, empty, and error states across the whole app.

Open plan
  1. 01Inventory async surfaces
  2. 02Add loading states
  3. 03Add error states with retry
  4. ··+2 more steps to Done
5 steps30-60 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Magic‑Link Passwordless Login

Integrate a secure email‑based magic‑link authentication flow into the existing Node/Express app.

Open plan
  1. 01Configure Email Service
  2. 02Create Magic‑Link Token Store
  3. 03Implement Magic‑Link Request Endpoint
  4. ··+3 more steps to Done
6 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Persistent Comment Threads

Integrate a full‑stack commenting and threading feature into the existing app with real database persistence and UI.

Open plan
  1. 01Create comment and thread data models
  2. 02Implement comment & thread API endpoints
  3. 03Add backend logic for threaded replies
  4. ··+3 more steps to Done
6 steps2-4 hoursOpen route →
App BuilderGenerated DraftIntermediate

Add Persistent Full‑Text Search to Existing App

Integrate a real, searchable index into the current app with a backend API and UI component.

Open plan
  1. 01Determine searchable entities and choose engine
  2. 02Create migration to add tsvector columns and GIN indexes
  3. 03Implement backend search endpoint
  4. ··+2 more steps to Done
5 steps1-2 hoursOpen route →
App BuilderGenerated DraftIntermediate

Add Persistent Rate Limiting to Existing App

Integrate a real, persistent rate limiting system into the current application.

Open plan
  1. 01Identify Stack and Request Entry Point
  2. 02Choose and Install a Persistent Rate Limiting Library
  3. 03Create a Persistent Store Configuration
  4. ··+5 more steps to Done
8 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Persistent Webhook Emission to Existing App

Integrate configurable, signed webhooks that fire on key app events with reliable persistence and retry.

Open plan
  1. 01Create webhook configuration model and migration
  2. 02Add REST API endpoint to register webhooks
  3. 03Implement webhook dispatch service with retries and signatures
  4. ··+3 more steps to Done
6 steps2-3 hoursOpen route →
App BuilderGenerated DraftIntermediate

Add Push Notifications to Existing App

Integrate Firebase Cloud Messaging so users receive real push notifications and tokens are persisted in the backend.

Open plan
  1. 01Create Firebase Project & Obtain Credentials
  2. 02Add FCM Client Library and Configure Android Build
  3. 03Implement Permission Request & Token Retrieval on Device
  4. ··+4 more steps to Done
7 steps2-3 hoursOpen route →
App BuilderGenerated DraftIntermediate

Add Real-Time Presence Indicators to a Chat App with WebSockets

A step-by-step flow for implementing real-time online, offline, and typing presence in a chat app using WebSockets, including backend presence tracking, frontend updates, reconnect handling, and verification.

Open plan
  1. 01Inspect the existing chat architecture and choose presence data flow
  2. 02Define the presence event contract and server-side state model
  3. 03Implement authenticated WebSocket connection handling on the server
  4. ··+7 more steps to Done
10 steps60-120 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Search Functionality to Existing App

Implement a real, persistent search feature across the app’s primary data list.

Open plan
  1. 01Inspect Existing Data Model and API
  2. 02Create a Search API Endpoint
  3. 03Add Search Bar UI Component
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Team Invites to a SaaS App

Build a real team invitation system for a SaaS app, including invite creation, email/share flow, acceptance, membership creation, role assignment, validation, and end-to-end testing.

Open plan
  1. 01Audit Existing Team, User, and Auth Models
  2. 02Add Invitation Data Model and Migration
  3. 03Implement Secure Invite Creation API
  4. ··+7 more steps to Done
10 steps60-120 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Time‑Based One‑Time Password (TOTP) 2FA

Integrate real TOTP two‑factor authentication into an existing app with full persistence and verification.

Open plan
  1. 01Locate and back up the user authentication module
  2. 02Add a TOTP secret field to the User model
  3. 03Create an enrollment endpoint that generates a TOTP secret and QR code
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Transactional Email Sending

Integrate real transactional email capability into the existing app using SendGrid (or similar) with persistent templates and an API endpoint.

Open plan
  1. 01Configure Email Service Credentials
  2. 02Create Persistent Email Template Storage
  3. 03Implement Transactional Email Service
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Add Usage‑Based Metered Billing

Integrate real usage tracking, billing calculations, and Stripe metered billing into the existing app.

Open plan
  1. 01Define billing and usage data model
  2. 02Implement usage logging middleware
  3. 03Build metered billing calculation service
  4. ··+3 more steps to Done
6 steps2-3 hoursOpen route →
App BuilderFlows CuratedIntermediate

Admin Dashboard

Build a real admin dashboard with live data tables, stats, filters, and actions that actually mutate data.

Open plan
  1. 01Define admin scope and data
  2. 02Build admin layout and access control
  3. 03Implement real stats cards
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Agent-to-Agent Protocols (A2A)

Connect two agents over an explicit protocol - task handoff, acknowledgment, and failure handling - instead of hoping chat works out.

Open plan
  1. 01Define the protocol
  2. 02Build the message layer
  3. 03Wrap agents as protocol endpoints
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
App BuilderFlows CuratedIntermediate

AI Chatbot Feature

Add a real AI chat feature with streaming responses, conversation history, and graceful failure handling.

Open plan
  1. 01Define the assistant spec
  2. 02Build the chat UI
  3. 03Integrate the real LLM API
  4. ··+3 more steps to Done
6 steps60-120 minutesOpen route →
QAFlows CuratedAdvanced

API/Error Handling QA

Verify every API contract and failure path: status codes, error shapes, timeouts, and frontend recovery.

Open plan
  1. 01Inventory the API contracts
  2. 02Test success and failure codes
  3. 03Normalize error responses
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedIntermediate

Assemble a System Prompt Like the Pros

Structure your agent's system prompt the way leading harnesses do: layered sections, dynamic context, and enforceable rules.

Open plan
  1. 01Decompose the current prompt
  2. 02Build the section-based assembler
  3. 03Pair rules with enforcement
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Harness EngineeringFlows CuratedAdvanced

Assemble Tool Prompts Dynamically per Environment

Stop shipping one static mega-prompt: generate tool prompts from environment conditions, inject blocks only when features are on, and dedupe config to save tokens.

Open plan
  1. 01Identify conditional blocks
  2. 02Build the prompt generator
  3. 03Dedupe and budget every block
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Audit Trails for Tool Calls

Record an immutable, queryable trail of every action your agent takes - who, what, when, why, and outcome - for security and accountability.

Open plan
  1. 01Define the audit record and scope
  2. 02Write records reliably and scrubbed
  3. 03Make the trail tamper-evident
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
QAFlows CuratedIntermediate

Auth Flow QA

Dedicated auth testing: signup, login, sessions, guards, reset, and the edge cases that expose fake auth.

Open plan
  1. 01Test the signup surface
  2. 02Test the login surface
  3. 03Test the session lifecycle
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
App BuilderFlows CuratedIntermediate

Booking System

Build a real booking system with availability, slot selection, and double-booking prevention.

Open plan
  1. 01Define the booking model
  2. 02Build availability display
  3. 03Implement booking creation
  4. ··+3 more steps to Done
6 steps60-120 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Build a Command Security Pipeline for Your Agent

Replace scattered if-else safety checks with a layered validator pipeline: single-purpose checks, an allow/ask/deny/passthrough contract, and severity-aware ordering.

Open plan
  1. 01Define the contract and pipeline skeleton
  2. 02Implement early validators and input hygiene
  3. 03Build the main validator chain and hard path constraints
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
App BuilderGenerated DraftIntermediate

Build a Functional Coffee Shop Website

A step-by-step flow to build a real, working coffee shop website with menu, location, hours, contact form, and mobile-friendly pages using AI app builders.

Open plan
  1. 01Define the coffee shop website structure
  2. 02Create the visual theme and responsive layout foundation
  3. 03Build the hero and brand story sections
  4. ··+6 more steps to Done
9 steps60-120 minutesOpen route →
App BuilderGenerated DraftBeginner

Build a Habit Tracker App in React

Create a working React habit tracker app with habit creation, completion toggles, streak tracking, local persistence, validation, and basic QA checks.

Open plan
  1. 01Set up the app structure and data model
  2. 02Implement add habit form with validation
  3. 03Render the habit list and empty state
  4. ··+6 more steps to Done
9 steps45-90 minutesOpen route →
App BuilderGenerated DraftBeginner

Build a Habit Tracker React App

A step-by-step flow for building a real habit tracker app in React with working habit creation, daily check-ins, streak tracking, persistence, validation, and basic testing.

Open plan
  1. 01Set up the app structure and data model
  2. 02Implement real habit state and habit creation
  3. 03Render the habit list with empty states
  4. ··+6 more steps to Done
9 steps45-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Build a Login Page with Auth Metrics Tracking

Create a real login page with working authentication and instrument it to capture useful investment-app auth metrics such as signups, login attempts, success rate, failures, and drop-off.

Open plan
  1. 01Define the auth flow and metrics schema
  2. 02Create or wire the authentication foundation
  3. 03Build the login page UI with validation
  4. ··+6 more steps to Done
9 steps60-120 minutesOpen route →
App BuilderGenerated DraftIntermediate

Build a Playable 2D Browser Game

A step-by-step flow to create a real, playable 2D browser game with movement, collisions, scoring, win/lose states, and basic polish using an AI app builder.

Open plan
  1. 01Define the game concept and core loop
  2. 02Set up the game container and main state
  3. 03Implement the player and keyboard controls
  4. ··+6 more steps to Done
9 steps60-120 minutesOpen route →
MCP & ToolingFlows CuratedAdvanced

Build a Repo Map for Code Navigation

Give your agent compressed, ranked codebase awareness - the tree-sitter repo-map pattern that beats raw file dumps.

Open plan
  1. 01Extract symbols per file
  2. 02Rank by relevance
  3. 03Render within budget
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
App BuilderGenerated DraftAdvanced

Build a Scary First-Person Horror Game

A step-by-step flow to create a real playable first-person horror game with movement, interactions, enemy behavior, atmosphere, objectives, fail states, and testing.

Open plan
  1. 01Define the game loop and systems before building
  2. 02Build the first-person controller and playable scene foundation
  3. 03Add interaction, doors, pickups, and progression gating
  4. ··+7 more steps to Done
10 steps4-8 hoursOpen route →
App BuilderGenerated DraftAdvanced

Build a Youth Soccer Team Management App

Create a working app for a club soccer team that manages players, guardians, attendance, matches, availability, messaging, and roster operations with real data flows and admin workflows.

Open plan
  1. 01Create the soccer domain schema for teams, players, guardians, events, RSVP, attendance, and lineup assignments
  2. 02Set up coach authentication and protected management routes for roster, schedule, attendance, and announcements
  3. 03Build the roster directory with player profiles, jersey numbers, positions, and guardian links
  4. ··+8 more steps to Done
11 steps180-300 minutesOpen route →
App BuilderGenerated DraftIntermediate

Build an AI Affiliate Marketing Agent That Finds, Publishes, and Tracks Revenue Opportunities

Create a working AI agent system that discovers affiliate opportunities, generates compliant content, publishes or prepares campaign assets, and tracks clicks, conversions, and revenue in a usable dashboard.

Open plan
  1. 01Define the affiliate agent scope and data model
  2. 02Build affiliate offer intake and management
  3. 03Create campaigns and operational statuses
  4. ··+8 more steps to Done
11 steps90-180 minutesOpen route →
App BuilderGenerated DraftIntermediate

Build Real Web App Authentication with Sessions and Protected Routes

A step-by-step flow to implement real signup, login, logout, session persistence, password reset, validation, and protected routes with visible UI states and mobile responsiveness.

Open plan
  1. 01Set the auth architecture and choose the real persistence layer
  2. 02Create the auth state layer and session restoration
  3. 03Build the signup flow with validation and duplicate email handling
  4. ··+6 more steps to Done
9 steps60-120 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Build Your First MCP Server

Stand up a working MCP server exposing your own tools, connect a client, and validate the full call loop.

Open plan
  1. 01Choose tools worth exposing and set up the SDK
  2. 02Implement the server and tools
  3. 03Connect a host and verify discovery
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Choose the Right Dispatch: Spawn, Fork, or Direct

Three ways to hand work to a sub-agent - fresh-context spawn, cache-sharing fork, or just doing it yourself - and the decision matrix for picking per task.

Open plan
  1. 01Implement spawn: fresh context specialists
  2. 02Implement fork: inherited context, shared cache
  3. 03Add guards and async lifecycle
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
Harness EngineeringFlows CuratedAdvanced

Cost Control: Model Routing and Effort Tiers

Route work to the cheapest model that can do it and match reasoning effort to task difficulty - with quality guardrails.

Open plan
  1. 01Profile spend by call class
  2. 02Build the routing table and wire it
  3. 03Add escalation on failure
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
LaunchFlows CuratedAdvanced

Creator Marketplace Launch

Launch a creator marketplace: solve the cold-start, seed supply, launch demand, and prove the loop.

Open plan
  1. 01Choose the cold-start strategy
  2. 02Recruit the founding creators
  3. 03Prepare the marketplace for buyers
  4. ··+2 more steps to Done
5 steps2-3 hoursOpen route →
Memory & ContextFlows CuratedAdvanced

Cross-Session Project State

Keep long-horizon work coherent across many sessions: externalized project state that any session can load, advance, and hand off.

Open plan
  1. 01Design the project-state document
  2. 02Implement the session-start protocol
  3. 03Implement the session-end advance
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
App BuilderFlows CuratedIntermediate

Customer Support Inbox

Build an in-app support system: ticket submission, status tracking, and an admin reply inbox.

Open plan
  1. 01Define the ticket model
  2. 02Build ticket submission
  3. 03Build the user ticket view
  4. ··+2 more steps to Done
5 steps60-120 minutesOpen route →
MCP & ToolingFlows CuratedAdvanced

Deferred Tool Loading

Stop paying context for tools the task never needs: load a core set eagerly and expand the toolset on demand.

Open plan
  1. 01Measure usage and pick the core
  2. 02Build the catalog and discovery
  3. 03Implement dynamic registration
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
LaunchFlows CuratedBeginner

Demo Video Script

Script a tight product demo video: hook, narrative arc, screen directions, and CTA - ready to record.

Open plan
  1. 01Choose format and story
  2. 02Write the hook and opening
  3. 03Script the core demo beats
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Dependency and Supply-Chain Scanning for Agents

Guard against the dependencies your agent adds: vulnerability scanning, hallucinated-package detection, and gated installs.

Open plan
  1. 01Intercept dependency additions
  2. 02Verify existence and reputation
  3. 03Scan for vulnerabilities
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Memory & ContextFlows CuratedIntermediate

Design a Memory Index Loaded Every Session

Build the pattern behind minimalist memory systems: a compact index file the agent always loads, pointing to detail files it loads on demand.

Open plan
  1. 01Structure the index and details
  2. 02Wire loading: index always, details on demand
  3. 03Maintain the index as memory evolves
3 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Design a Single-Loop Agent

Build the core agent loop the leading coding agents use: one model, one loop, tools in, results folded back into context.

Open plan
  1. 01Define the loop contract
  2. 02Build the tool registry
  3. 03Implement the loop with result folding
  4. ··+2 more steps to Done
5 steps90-150 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Design Layered Tool Prompts with Preference Chains

Structure your tool prompts the way the leading harness does: preference chains up front, usage constraints in the middle, NEVER-guarded safety protocols at the end.

Open plan
  1. 01Audit the current tool prompt
  2. 02Write the preference chain
  3. 03Write usage constraints and safety protocols
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Design the Agent-Computer Interface (ACI)

Apply SWE-agent's key finding: agents perform dramatically better when their commands, viewers, and feedback are designed for models, not humans.

Open plan
  1. 01Audit your current tool surface
  2. 02Build the windowed file viewer
  3. 03Add validated edits with corrective feedback
  4. ··+2 more steps to Done
5 steps90-120 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Design the Permission Approval UX

Design approval prompts users actually read: diffs, risk framing, scoped grants, and pacing that prevents approval fatigue.

Open plan
  1. 01Audit the current approval moments
  2. 02Rebuild the prompt content
  3. 03Make friction proportional to risk
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Design Tool Schemas for Agents

Write tool schemas that constrain model behavior: tight types, enums over strings, and parameters that make misuse hard.

Open plan
  1. 01Audit schemas for looseness
  2. 02Tighten the schemas
  3. 03Make validation errors teach
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
QAFlows CuratedIntermediate

DeSlop Audit

The anti-AI-slop audit: find and fix everything that makes your app look and feel like a generic AI build.

Open plan
  1. 01Score the slop
  2. 02Fix function-slop first
  3. 03Fix design-slop
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Detect Command Obfuscation and Parser-Mismatch Attacks

Catch the attacks your parser cannot see: quote-concatenation flags, ANSI-C quoting, brace expansion, and escaped operators that make bash execute something your checks never inspected.

Open plan
  1. 01Build multi-view quote extraction
  2. 02Detect quote-trick flag smuggling
  3. 03Detect parser-vs-shell divergence
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
Memory & ContextFlows CuratedIntermediate

Episodic, Semantic, and Procedural Stores

Organize agent memory by kind - what happened, what is true, and how to do things - instead of one undifferentiated pile.

Open plan
  1. 01Define the three schemas
  2. 02Build classification and routing
  3. 03Implement type-appropriate recall
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedIntermediate

Error Recovery and Retry Policy for the Agent Loop

Design the retry, backoff, and give-up behavior that separates production agents from demos that loop forever.

Open plan
  1. 01Build the error taxonomy
  2. 02Implement retries and corrective feedback
  3. 03Add the loop breaker
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Harness EngineeringFlows CuratedAdvanced

Evals for Your Harness

Build the eval suite that tells you whether harness changes help: task sets, graded rubrics, and regression discipline.

Open plan
  1. 01Design the task set
  2. 02Implement graders
  3. 03Run honestly: variance and the results store
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
QAFlows CuratedBeginner

Evidence Checklist

Prove your app works with evidence: build a claim-by-claim verification pack with receipts.

Open plan
  1. 01Inventory every claim
  2. 02Define verification procedures
  3. 03Execute and collect evidence
  4. ··+2 more steps to Done
5 steps45-60 minutesOpen route →
App BuilderFlows CuratedIntermediate

File Upload System

Build real file uploads with validation, progress, storage, and display - files must survive refresh.

Open plan
  1. 01Define upload requirements
  2. 02Build the upload UI
  3. 03Implement backend storage
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
DebuggingFlows CuratedIntermediate

Fix App That Looks Good But Does Not Work

The systematic recovery flow for beautiful-but-broken AI builds: audit honestly, then fix by functional priority.

Open plan
  1. 01Run a brutal functional audit
  2. 02Prioritize the fix order
  3. 03Fix the core value action
  4. ··+3 more steps to Done
6 steps60-120 minutesOpen route →
DebuggingFlows CuratedBeginner

Fix Broken Buttons

Hunt down every dead button in your AI-built app and wire each one to real, verified behavior.

Open plan
  1. 01Inventory every interactive control
  2. 02Fix dead buttons
  3. 03Fix fake buttons
  4. ··+2 more steps to Done
5 steps30-60 minutesOpen route →
DebuggingFlows CuratedBeginner

Fix Broken Form Submission

Forms that validate, submit, persist, and recover: repair every broken form in your app end to end.

Open plan
  1. 01Inventory and test every form
  2. 02Wire submissions to real endpoints
  3. 03Add validation on both sides
  4. ··+2 more steps to Done
5 steps30-60 minutesOpen route →
DebuggingFlows CuratedIntermediate

Fix Fake Auth

Your login 'works' but nothing is real: convert visual-only auth into persisted users, sessions, and guards.

Open plan
  1. 01Diagnose what is fake
  2. 02Implement real user persistence
  3. 03Implement real credential verification
  4. ··+3 more steps to Done
6 steps45-90 minutesOpen route →
DebuggingFlows CuratedBeginner

Fix Routing/Navigation

Repair broken links, 404s, back-button traps, and guard gaps so navigation works like users expect.

Open plan
  1. 01Map routes and links
  2. 02Fix dead and wrong links
  3. 03Fix deep links and refresh
  4. ··+2 more steps to Done
5 steps30-60 minutesOpen route →
App BuilderGenerated DraftIntermediate

Fluxo de inscrição funcional

Crie um fluxo de inscrição realmente funcional com formulário, validação, persistência, prevenção de duplicidade, estados de sucesso/erro e testes de ponta a ponta.

Open plan
  1. 01Definir escopo e contrato de dados da inscrição
  2. 02Criar persistência real e estrutura de backend
  3. 03Construir o formulário de inscrição conectado ao backend
  4. ··+5 more steps to Done
8 steps60-120 minutesOpen route →
LaunchFlows CuratedIntermediate

Founder Outreach Campaign

Get your first users by hand: build a target list, write outreach that gets replies, and run the follow-up loop.

Open plan
  1. 01Define the ideal first user
  2. 02Build the target list
  3. 03Write the first-touch messages
  4. ··+2 more steps to Done
5 steps2-3 hoursOpen route →
Agent ArchitectureFlows CuratedIntermediate

From CLI Harness to Product

Grow a working agent loop into a product: sessions, config, resumability, and the packaging polish the successful terminal agents share.

Open plan
  1. 01Implement persistent sessions
  2. 02Build true resume
  3. 03Layer the configuration system
  4. ··+2 more steps to Done
5 steps90-150 minutesOpen route →
LaunchFlows CuratedBeginner

GitHub README Generator

Write a README that makes people use your project: hook, quickstart, visuals, and honest docs.

Open plan
  1. 01Write the hook section
  2. 02Write the quickstart
  3. 03Write usage and examples
  4. ··+2 more steps to Done
5 steps30-60 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Guard Memory Writes Against Injection

Stop poisoned data from becoming persistent agent beliefs: validate, attribute, and quarantine memory writes as untrusted input.

Open plan
  1. 01Make writes source-aware
  2. 02Validate content before persistence
  3. 03Quarantine and require corroboration
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
QAFlows CuratedIntermediate

Hackathon Judge Report

Evaluate a hackathon project like a rigorous judge: criteria scoring, evidence checks, and structured feedback.

Open plan
  1. 01Set up the rubric
  2. 02Use the project hands-on
  3. 03Score with evidence
  4. ··+2 more steps to Done
5 steps30-60 minutes per projectOpen route →
LaunchFlows CuratedIntermediate

Hackathon Submission

Package your hackathon project to win: narrative, demo plan, submission copy, and judge-proofing.

Open plan
  1. 01Build the judge narrative
  2. 02Script the demo
  3. 03Write the submission
  4. ··+2 more steps to Done
5 steps2-3 hoursOpen route →
Harness EngineeringFlows CuratedIntermediate

Hook a Permission Layer onto Dangerous Tools

Intercept dangerous tool calls with a hook layer: pattern rules, approval gates, and blocks that the model cannot talk its way past.

Open plan
  1. 01Define the danger rule set
  2. 02Implement the hook point
  3. 03Harden the patterns against evasion
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Memory & ContextFlows CuratedAdvanced

Implement Context Compaction

Keep long agent sessions alive by compacting old conversation into structured summaries before the context window fills.

Open plan
  1. 01Add token accounting
  2. 02Design the structured summary format
  3. 03Implement the compaction operation
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Implement the Six Core Orchestration Patterns

Worker pool, pipeline, supervisor-worker, adversarial, fork-join, resume chain - build the reusable orchestration patterns every serious multi-agent system converges on.

Open plan
  1. 01Build the shared lifecycle infrastructure
  2. 02Implement fan-out patterns: worker pool and fork-join
  3. 03Implement sequential and hierarchical patterns
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
DebuggingFlows CuratedBeginner

Improve Mobile Responsiveness

Make your app genuinely usable on phones: audit at real widths, fix layouts, and verify touch targets.

Open plan
  1. 01Audit every page at mobile widths
  2. 02Fix layout and overflow
  3. 03Fix navigation and touch targets
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Incident Response Runbook for Agent Mishaps

Prepare for the day your agent does damage: detection, containment, rollback, investigation, and prevention - written before you need it.

Open plan
  1. 01Define detection and the kill switch
  2. 02Write containment and rollback procedures
  3. 03Write the investigation procedure
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderGenerated DraftIntermediate

Integrate Background Jobs & Queue System

Add a real background job queue with persistence to the existing app.

Open plan
  1. 01Add queue library dependency
  2. 02Configure Redis connection
  3. 03Create a base job queue
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
LaunchFlows CuratedAdvanced

Investor Pitch Script

Write a tight investor pitch: narrative arc, numbers that matter, deck structure, and Q&A prep.

Open plan
  1. 01Build the narrative spine
  2. 02Prepare the numbers
  3. 03Structure the deck
  4. ··+2 more steps to Done
5 steps2-3 hoursOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Jailbreak Regression Suite

Turn every jailbreak you find into a permanent regression test, so safety boundaries never silently erode across model and prompt changes.

Open plan
  1. 01Assemble the jailbreak corpus
  2. 02Build reliable compliance evaluation
  3. 03Version, gate, and grow the suite
3 steps60-90 minutesOpen route →
LaunchFlows CuratedBeginner

Landing Page Copy

Write conversion-focused landing page copy: headline, sections, social proof, CTAs, and objection handling.

Open plan
  1. 01Define audience and message hierarchy
  2. 02Write the hero section
  3. 03Write problem and solution sections
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
App BuilderFlows CuratedBeginner

Local Service Booking Website

A complete website for a local service business: services, trust, working booking requests, and local SEO basics.

Open plan
  1. 01Structure the business content
  2. 02Build home and services pages
  3. 03Build the booking request flow
  4. ··+2 more steps to Done
5 steps60-120 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Make Parallel Sub-Agents Share the Prompt Cache

Byte-identical request prefixes are why forked workers cost a fraction of spawned ones - engineer your dispatch so every parallel child hits the same cache entry.

Open plan
  1. 01Map what must be byte-identical
  2. 02Stabilize the shared prefix
  3. 03Measure cache performance
  4. ··+1 more steps to Done
4 steps60-120 minutesOpen route →
DebuggingFlows CuratedIntermediate

Make UI Less Generic

Escape the default-AI look: define a real visual identity and apply it systematically across your app.

Open plan
  1. 01Audit the generic tells
  2. 02Define the visual direction
  3. 03Apply the foundation
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
App BuilderFlows CuratedAdvanced

Marketplace Buyer/Seller Flow

Build a two-sided marketplace core: listings, browsing, and a real transaction/request flow between buyers and sellers.

Open plan
  1. 01Define marketplace entities and rules
  2. 02Build seller listing management
  3. 03Build public browse and search
  4. ··+3 more steps to Done
6 steps2-4 hoursOpen route →
Memory & ContextFlows CuratedIntermediate

Memory Consolidation and Pruning Schedule

Keep agent memory healthy over months: scheduled consolidation, decay, promotion between layers, and safe pruning.

Open plan
  1. 01Split memory into layers
  2. 02Implement the consolidation run
  3. 03Add decay scoring and safe pruning
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Memory & ContextFlows CuratedAdvanced

Memory Recall: Ranking and Relevance

Make recall surface the right memories: hybrid lexical+semantic search, rank fusion, and explainable retrieval.

Open plan
  1. 01Build the lexical layer
  2. 02Add the semantic layer
  3. 03Fuse rankings with boosts
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
Memory & ContextFlows CuratedIntermediate

Memory Write Policies

Decide what gets remembered: write gates, provenance, confidence, and validation - because memory quality is set at write time.

Open plan
  1. 01Write the memorability criteria
  2. 02Attach provenance and confidence
  3. 03Detect and resolve contradictions
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
QAFlows CuratedBeginner

Mobile QA Checklist

A rigorous mobile QA pass: layouts, touch, keyboards, and the full core journey on phone-sized screens.

Open plan
  1. 01Layout pass at phone widths
  2. 02Fix layout breaks
  3. 03Touch and gesture pass
  4. ··+2 more steps to Done
5 steps45-60 minutesOpen route →
App BuilderFlows CuratedIntermediate

MongoDB Data Model Plan

Design a MongoDB data model that fits your queries: embed vs reference, indexes, and validation.

Open plan
  1. 01List the access patterns
  2. 02Decide embed vs reference
  3. 03Plan the indexes
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
App BuilderFlows CuratedIntermediate

Notification System

Build an in-app notification system with real triggers, unread counts, and a working notification center.

Open plan
  1. 01Define notification types and triggers
  2. 02Create notifications from real events
  3. 03Build the unread badge
  4. ··+3 more steps to Done
6 steps60-90 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Observability for Agent Runs

Instrument your agent like production software: traces, session replay, cost tracking, and failure analysis on open standards.

Open plan
  1. 01Instrument spans across the loop
  2. 02Build session replay
  3. 03Track the economics
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
Harness EngineeringFlows CuratedAdvanced

Pair Every Prompt Rule with a Code Backstop

Prompts guide, code enforces: inventory your agent's soft rules, back each critical one with an independent deterministic check, and define the allow/ask/deny escalation.

Open plan
  1. 01Inventory soft rules and classify enforcement needs
  2. 02Implement checks independent of the prompt
  3. 03Wire the escalation path
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
QAFlows CuratedAdvanced

Payment Flow QA

Trust-level testing for payments: success, decline, cancel, idempotency, and state consistency.

Open plan
  1. 01Audit the money path
  2. 02Verify the success path
  3. 03Verify decline and cancel paths
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
LaunchFlows CuratedBeginner

Press/Announcement Page

Create an announcement page and press kit that makes your launch easy to cover and share.

Open plan
  1. 01Find the story angle
  2. 02Write the announcement
  3. 03Build the press kit
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
App BuilderFlows CuratedBeginner

Pricing Page Builder

Design and build a pricing page that converts: plan structure, value anchoring, FAQs, and a working upgrade path.

Open plan
  1. 01Design the plan structure
  2. 02Write the plan copy
  3. 03Build the page
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
LaunchFlows CuratedIntermediate

Product Hunt Launch

Plan and execute a Product Hunt launch: positioning, assets, launch-day playbook, and follow-through.

Open plan
  1. 01Nail the positioning
  2. 02Plan the gallery assets
  3. 03Write the maker's first comment
  4. ··+2 more steps to Done
5 steps2-3 hours prepOpen route →
QAFlows CuratedAdvanced

Production Readiness Review

The pre-ship gate: environment, errors, data safety, performance, and the go/no-go checklist.

Open plan
  1. 01Audit environment and config
  2. 02Test failure resilience
  3. 03Verify data safety
  4. ··+2 more steps to Done
5 steps60-120 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Prompt Injection Defense Checklist

Systematically defend your agent against prompt injection: trust boundaries, content isolation, and defense-in-depth that assumes injection will happen.

Open plan
  1. 01Map trust boundaries
  2. 02Isolate and label untrusted content
  3. 03Separate authority from content
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
Memory & ContextFlows CuratedIntermediate

Prompt-Cache-Aware Conversation Design

Structure your agent's context for prefix caching: stable prefixes, append-only history, and cache-friendly dynamic content.

Open plan
  1. 01Audit context stability
  2. 02Restructure for stable-first layout
  3. 03Verify cache hits and measure savings
3 steps45-75 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Rate and Blast-Radius Limits for Destructive Tools

Cap how much damage any window of agent activity can do: rate limits, change budgets, checkpoints, and undo.

Open plan
  1. 01Set the budgets from real usage
  2. 02Implement the counters and ladder
  3. 03Add checkpoints and rollback
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Red-Team Your Agent with Adversarial Prompts

Systematically attack your own agent using red-teaming frameworks: vulnerability probes, attack methods, and a repeatable adversarial suite.

Open plan
  1. 01Build a threat-driven probe set
  2. 02Arm each probe with attack methods
  3. 03Automate execution and score
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
LaunchFlows CuratedBeginner

Reddit Launch Plan

Launch on Reddit without getting banned: subreddit research, value-first posts, and comment strategy.

Open plan
  1. 01Research target subreddits
  2. 02Write value-first posts
  3. 03Prepare comment engagement
  4. ··+2 more steps to Done
5 steps1-2 hours prepOpen route →
DebuggingFlows CuratedAdvanced

Refactor Messy AI Code

Clean up AI-generated spaghetti safely: dedupe, extract, and organize without breaking working features.

Open plan
  1. 01Capture the behavior baseline
  2. 02Map the mess
  3. 03Remove dead code
  4. ··+3 more steps to Done
6 steps60-120 minutesOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Release Gates for Agent-Generated Code

Put agent output through a real merge gate: automated review, tests, security scans, and human sign-off proportional to risk.

Open plan
  1. 01Assemble the automated gate
  2. 02Classify change risk
  3. 03Label provenance and require sign-off
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderFlows CuratedAdvanced

Role-Based Access Control

Add real roles and permissions: enforced on backend endpoints and reflected honestly in the UI.

Open plan
  1. 01Define roles and the permission matrix
  2. 02Add roles to the user model
  3. 03Enforce permissions on the backend
  4. ··+3 more steps to Done
6 steps60-120 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Rule-File Code Review Gates

Run deterministic policy checks on everything your agent produces: rule files reviewing plans, diffs, and evidence before anything merges.

Open plan
  1. 01Write the initial rule set
  2. 02Build the evaluation engine
  3. 03Wire the gates into the loop
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderFlows CuratedAdvanced

SaaS MVP Builder

Go from idea to a working SaaS MVP: auth, core feature, billing readiness, and a landing page that converts.

Open plan
  1. 01Define the MVP in one sentence
  2. 02Build the landing page
  3. 03Add working auth
  4. ··+3 more steps to Done
6 steps2-4 hoursOpen route →
Harness EngineeringFlows CuratedAdvanced

Sandbox Untrusted Code Execution

Contain what your agent runs: isolated execution environments with resource limits, network policy, and workspace mounting done right.

Open plan
  1. 01Choose the isolation and define the policy
  2. 02Build the sandboxed executor
  3. 03Enforce and verify the network policy
  4. ··+1 more steps to Done
4 steps120-180 minutesOpen route →
Agent QA & SecurityFlows CuratedIntermediate

Secrets Hygiene in Agent Logs

Keep credentials out of prompts, tool outputs, logs, and traces: detection, redaction, and safe handling across the whole agent pipeline.

Open plan
  1. 01Build the secret detector
  2. 02Redact at every capture point
  3. 03Inject real secrets safely
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
QAFlows CuratedAdvanced

Security Basics Review

The essential security pass for AI-built apps: secrets, auth enforcement, input handling, and data exposure.

Open plan
  1. 01Hunt exposed secrets
  2. 02Attack the auth enforcement
  3. 03Harden input handling
  4. ··+2 more steps to Done
5 steps60-90 minutesOpen route →
Memory & ContextFlows CuratedIntermediate

Session Summaries That Survive Compaction

Write durable session summaries at the right moments so knowledge outlives compaction and process restarts.

Open plan
  1. 01Define what deserves to survive
  2. 02Write at the moments that matter
  3. 03Load summaries into new sessions
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderFlows CuratedBeginner

Settings/Billing Page

Build a real settings area: profile edits that persist, password change, plan display, and danger zone.

Open plan
  1. 01Define settings sections
  2. 02Build layout and profile section
  3. 03Implement password change
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
Agent ArchitectureFlows CuratedIntermediate

Single-Agent vs Multi-Agent: Decide and Design

A decision flow for the most expensive architecture choice in agent systems - grounded in what actually ships versus what demos well.

Open plan
  1. 01Analyze the workload for separability
  2. 02Score the three architectures
  3. 03Sketch the chosen architecture
  4. ··+1 more steps to Done
4 steps45-75 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Stand Up an Adversarial Verification Agent

Stop trusting your agent's own 'it works': dispatch a read-only verifier that must run real commands, probe adversarially, and return an evidence-backed PASS/FAIL verdict.

Open plan
  1. 01Define the verifier with hard read-only constraints
  2. 02Feed it the real task and require evidence
  3. 03Add adversarial probes
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
Agent ArchitectureFlows CuratedIntermediate

Streaming and Partial-Result UX

Stream model output and tool progress so users see the agent think and act - the UX baseline every serious terminal agent has set.

Open plan
  1. 01Design the event protocol
  2. 02Implement server-side streaming
  3. 03Build the streaming client rendering
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderFlows CuratedIntermediate

Stripe Checkout Flow

Add real Stripe payments with checkout, webhooks, and payment status - not a button that pretends to charge.

Open plan
  1. 01Define the payment spec
  2. 02Set up Stripe keys and packages securely
  3. 03Create the checkout session endpoint
  4. ··+4 more steps to Done
7 steps60-120 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Structured Output from Tools

Make every tool and agent output validate against a schema: typed results, repair loops, and safe fallbacks.

Open plan
  1. 01Map the boundaries and define types
  2. 02Enforce schemas at generation time
  3. 03Build the repair loop and fallbacks
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Agent ArchitectureFlows CuratedAdvanced

Sub-Agent Delegation with Context Isolation

Delegate bounded work to sub-agents that run in fresh context and return only distilled results - the pattern behind scalable long tasks.

Open plan
  1. 01Specify the delegation contract
  2. 02Implement the isolated sub-loop
  3. 03Wire dispatch into the parent and distill
  4. ··+1 more steps to Done
4 steps90-150 minutesOpen route →
App BuilderFlows CuratedIntermediate

Supabase Schema Plan

Design a correct Supabase schema: tables, relationships, RLS policies, and verification queries.

Open plan
  1. 01Model the data
  2. 02Write the schema SQL
  3. 03Enable RLS with policies
  4. ··+2 more steps to Done
5 steps45-75 minutesOpen route →
QAFlows CuratedIntermediate

Test Every User Path

Systematically walk every path a user can take and verify each works - the complete functional test pass.

Open plan
  1. 01Map every user path
  2. 02Execute the happy paths
  3. 03Execute alternate and error paths
  4. ··+2 more steps to Done
5 steps60-120 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Testing MCP Tools

Bring TDD discipline to MCP servers: unit-test handlers, protocol-test the surface, and contract-test against a real host.

Open plan
  1. 01Separate logic from protocol glue
  2. 02Write the handler unit suite
  3. 03Add protocol and contract layers
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
Agent QA & SecurityFlows CuratedAdvanced

Threat-Model Your MCP Server

Systematically threat-model an MCP server before it is exploited: assets, entry points, trust boundaries, and mitigations documented and tested.

Open plan
  1. 01Inventory assets and entry points
  2. 02Map boundaries and enumerate threats
  3. 03Rank threats and assign mitigations
  4. ··+1 more steps to Done
4 steps90-120 minutesOpen route →
LaunchFlows CuratedBeginner

TikTok Content System

A repeatable short-video system for your product: hooks, formats, scripts, and a 2-week content calendar.

Open plan
  1. 01Define content pillars
  2. 02Build the hook bank
  3. 03Script the first 5 videos
  4. ··+2 more steps to Done
5 steps1-2 hoursOpen route →
MCP & ToolingFlows CuratedBeginner

Tool Descriptions That Steer the Model

Treat tool descriptions as prompt engineering: when-to-use guidance, negative cases, and worked examples that fix tool-choice errors.

Open plan
  1. 01Collect misroutes and map overlaps
  2. 02Rewrite descriptions to steer
  3. 03Verify with a routing test
3 steps45-60 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Tool Permissioning Tiers

Classify tools by risk and enforce tiered permissions: auto-allow, session-allow, always-ask, and never - enforced in the harness.

Open plan
  1. 01Classify the toolset by risk
  2. 02Enforce tiers in dispatch
  3. 03Implement session grants and revocation
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
MCP & ToolingFlows CuratedIntermediate

Tool Result Size Management

Stop tool outputs from flooding context: budgets per tool, smart truncation, pagination, and reference-based results.

Open plan
  1. 01Budget every tool's output
  2. 02Truncate to preserve signal
  3. 03Paginate lists and reference artifacts
  4. ··+1 more steps to Done
4 steps60-90 minutesOpen route →
App BuilderFlows CuratedBeginner

User Onboarding Flow

Build a multi-step onboarding that captures real user data, persists progress, and lands users in a personalized app.

Open plan
  1. 01Define onboarding steps and data
  2. 02Build the wizard shell
  3. 03Persist answers per step
  4. ··+3 more steps to Done
6 steps45-75 minutesOpen route →
Memory & ContextFlows CuratedBeginner

Vector vs Markdown Memory: Make the Decision

Choose your memory backend on evidence: when plain files win, when vectors earn their complexity, and how to test it on your own data.

Open plan
  1. 01Profile the workload honestly
  2. 02Benchmark both on your data
  3. 03Decide and set the tripwires
3 steps45-60 minutesOpen route →
Harness EngineeringFlows CuratedIntermediate

Verification Loops: Never Trust an Unrun Edit

Wire verification into your agent so every edit is checked by machines - syntax, tests, behavior - before it counts as done.

Open plan
  1. 01Verify at the write boundary
  2. 02Add the post-change verify step
  3. 03Gate completion on evidence
  4. ··+1 more steps to Done
4 steps60-100 minutesOpen route →
Harness EngineeringFlows CuratedBeginner

Version Your Harness and Track Behavior

Treat prompts, tools, and loop logic as versioned, changelogged artifacts - so behavior changes are decisions, not surprises.

Open plan
  1. 01Extract behavior into versioned artifacts
  2. 02Start the behavior changelog
  3. 03Build the smoke eval and behavioral diffing
  4. ··+1 more steps to Done
4 steps45-75 minutesOpen route →
LaunchFlows CuratedBeginner

Waitlist Launch

Launch a waitlist that actually converts: page, incentives, referral loop, and the nurture sequence.

Open plan
  1. 01Design the waitlist offer
  2. 02Build the waitlist page
  3. 03Add the referral mechanic
  4. ··+2 more steps to Done
5 steps60-120 minutesOpen route →
App BuilderFlows CuratedIntermediate

Working Signup/Auth System

Build a real signup, login, session, and protected route flow - not a form that only looks functional.

Open plan
  1. 01Define auth requirements
  2. 02Choose auth method
  3. 03Define the user database model
  4. ··+10 more steps to Done
13 steps45-90 minutesOpen route →
QAGenerated DraftIntermediate

صياغة الفرق بين الأسئلة البحثية والمساهمات في ورقة أو مشروع بحثي

تدفق عملي لمساعدة المستخدم على التمييز بوضوح بين الأسئلة البحثية والمساهمات، ثم صياغتهما بشكل صحيح وقابل للاستخدام في مقترح أو ورقة بحثية.

Open plan
  1. 01تحديد السياق الذي ستستخدم فيه المفهومين
  2. 02استخراج تعريفين منفصلين وغير ملتبسين
  3. 03بناء مقارنة مباشرة بين المفهومين
  4. ··+6 more steps to Done
9 steps30-60 minutesOpen route →