Documentation

How teams use PurePoint

From overnight background agents to real-time coaching sessions, discover the workflows that make PurePoint indispensable.

01
terminal
pu spawn --task "Refactor auth module to use JWT"
Spawned agent-12 in worktree wt-a3b...
pu spawn --task "Add integration tests for /api/users"
Spawned agent-13 in worktree wt-f7c...
pu spawn --task "Migrate ORM from Prisma to Drizzle"
Spawned agent-14 in worktree wt-k2d...
pu status
3 agents running · 0 idle · 0 failed
Automation

Overnight Background Agents

Spawn long-running agents that work while you sleep. Wake up to pull requests, not TODOs.

backgroundasyncunattended
02
Parallelism

Parallel Focused Work

Run multiple agents on different features simultaneously. Each gets its own isolated worktree — zero merge conflicts.

worktreesisolationparallel
terminal
pu spawn --task "Build user dashboard" --worktree
pu spawn --task "Add payment flow" --worktree
pu spawn --task "Create admin panel" --worktree
WORKTREE AGENT STATUS
wt-dashboard agent-7 ██████░░░░ 60%
wt-payments agent-8 ████░░░░░░ 40%
wt-admin agent-9 ██░░░░░░░░ 20%
03
terminal
pu attach agent-7
Attached to agent-7 (wt-dashboard)
Agent: I'll create the dashboard layout with a sidebar...
Use the existing <Shell> component from src/components
Agent: Got it — reusing <Shell> and adding dashboard routes...
Add a date range picker to the analytics section
Agent: Adding DateRangePicker with react-day-picker...
Real-Time

Real-Time Agent Coaching

Attach to any running agent and steer its work in real time. Provide context, correct course, refine output.

interactiveguidancelive
04
Scheduling

Scheduled & Recurring Tasks

Set up cron-style schedules for routine work. Dependency updates, test runs, code quality checks — all on autopilot.

cronrecurringmaintenance
terminal
pu schedule --cron "0 9 * * 1" \
--task "Weekly dependency audit and update"
Scheduled: runs every Monday at 9:00 AM
pu schedule --cron "0 0 * * *" \
--task "Nightly test suite + coverage report"
Scheduled: runs daily at midnight
pu schedule list
2 active schedules · next run in 4h 22m
05
terminal
pu review --pr 142 --swarm 3
Spawning review swarm for PR #142...
Agent 1 — Architecture review............ ✓ done
Agent 2 — Test coverage analysis......... ✓ done
Agent 3 — Security audit................ ✓ done
3/3 reviews complete · 2 suggestions · 0 blockers
Collaboration

Code Review Swarms

Send a swarm of agents to review a pull request from multiple angles. Architecture, tests, security — in parallel.

reviewswarmquality

Real-World Scenarios

Every team has their own playbook.

Here are some of the ways teams put PurePoint to work.

Late-night hotfix

A critical bug surfaces at midnight. Spawn an agent, describe the fix, go to sleep.

Feature sprint

Five features, one week. Run parallel agents on isolated worktrees with zero conflicts.

Legacy modernization

Migrate thousands of files systematically. Agents handle the tedium, you review the output.

Test coverage push

Go from 40% to 80% coverage in a day. Swarm agents across your test suite.

Codebase onboarding

New team member starts Monday. Generate comprehensive docs and walkthroughs overnight.

Release preparation

Changelog, version bumps, dependency checks — automated and ready for your sign-off.

Get Started

Ready to try it?

PurePoint is open source and free for individual use.

terminal
git clone https://github.com/2witstudios/purepoint.git
cd purepoint && cargo build --release
pu init
PurePoint initialized. Ready to go.