Quick Start
This guide walks you through sending your first task with PlanDrop. We’ll create a simple Python script as an example.
Your First Task
-
Open the PlanDrop side panel
Click the PlanDrop icon in Chrome or use the keyboard shortcut
Ctrl+Shift+P(orCmd+Shift+Pon Mac). -
Select your server and project
Use the dropdowns at the top to select where Claude Code should run.
-
Type your task
In the message input at the bottom, type:
Create a Python script called hello.py that prints "Hello from PlanDrop!"Then run it to verify it works. -
Click “Send” or press Ctrl+Enter
Claude Code will analyze your request and produce a plan.
-
Review the plan
In the activity feed, you’ll see Claude’s proposed approach:
Claude: I'll create a simple Python script and run it.Plan:1. Write hello.py with print statement2. Run with python3 to verifyFiles to create: hello.pyCommands to run: python3 hello.py -
Click “Execute”
Claude Code will now actually create the file and run it. You’ll see the output in the activity feed:
✅ Write: hello.py✅ Run: python3 hello.pyOutput: Hello from PlanDrop!Complete · Free (Max) · 4.2s
Understanding the Workflow
PlanDrop enforces a plan-review-execute workflow:
- Plan Phase — Claude Code analyzes your request and proposes actions (read-only)
- Review Phase — You see exactly what Claude wants to do before it happens
- Execute Phase — After your approval, Claude runs the plan
This keeps you in control. Claude can’t delete files, run commands, or make changes without your explicit approval.
Try More Examples
Data analysis:
Analyze the CSV file in data/sales.csv.Calculate monthly totals and create a bar chart.Save as monthly_sales.png.File organization:
Find all .log files older than 7 days and list them.Don't delete anything yet, just show me what would be cleaned up.Documentation:
Read the main.py file and create a README.mddocumenting its functions and usage.Next Steps
- Configuration — Customize your setup
- Permission Profiles — Control what Claude can access
- Session Continuity — Build on previous work