Skip to workspace
Flows

Plans

Choose a plan for a project, or create a new one. Plans become work you can check and release.

Create a plan
Category
Source

Showing 24 of 141 plans · curated + generated

QAFlows CuratedIntermediate

Accessibility QA

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

Start plan
  1. 01Keyboard-only audit
  2. 02Fix keyboard operability
  3. 03Contrast and visual pass
  4. ··+2 more steps to Done
5 steps60-90 minutes
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.

Start 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 minutes
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.

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Activity Feed Feature

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

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Core SEO Features to Existing App

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

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Dark Mode Toggle

Implement a persistent dark mode switch in the existing app.

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

Add Database Persistence

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

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Direct Messaging Feature

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

Start 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 minutes
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.

Start 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 minutes
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.

Start 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 minutes
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.

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Internationalization (i18n) to Existing App

Integrate multilingual support with language selection and persisted user preference.

Start 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 minutes
DebuggingFlows CuratedBeginner

Add Loading/Error States

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

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

Add Magic‑Link Passwordless Login

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

Start 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 minutes
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.

Start 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 hours
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.

Start 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 hours
App BuilderGenerated DraftIntermediate

Add Persistent Rate Limiting to Existing App

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

Start 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 minutes
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.

Start 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 hours
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.

Start 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 hours
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.

Start 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 minutes
App BuilderGenerated DraftIntermediate

Add Search Functionality to Existing App

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

Start 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 minutes
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.

Start 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 minutes
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.

Start 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 minutes
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.

Start 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 minutes

117 plans remaining