<aside>
BTW, we've been building SalesRobot since 2020. Bootstrapped.
Weβre at 5,500 users across 45 countries, but hereβs some actual crazy shit: β $1.4M ARR β 5 million organic LinkedIn impressions in 2025 alone.
Give SalesRobot your ICP, connect your LinkedIn account, and it handles the rest:
ποΈ AI video clone - your face, auto-personalized at scale
ποΈ AI voice clone - your voice, personalized per prospect
π AI appointment setter - handles replies, kills objections, books calls while you sleep.
Check it out if youβre intrigued, weβve got a 14-day free trial (you should definitely give it a shot)
Book a demo today
White-label version for agencies (your clients would never know itβs us)
</aside>
a loop is one prompt, saved to a file, run on a schedule. inside that prompt, Claude Code spawns sub-agents that each take one slice of the work and report back. the merge step turns their separate findings into one output file.
the reason it's a loop and not just an agent: it runs again next week against new inputs, and each pass builds on the last one's output. loop 1 feeds loop 4. loop 4 feeds loop 5. loop 5 feeds loops 6 and 7. loops 9 and 10 run against whatever you published.
if a loop has no natural way to split the work across sub-agents, it isn't a loop, it's a script. every loop in here has its split axis named at the top so you can see the logic instead of taking my word for it.
| # | loop | splits by | runs |
|---|---|---|---|
| 1 | pain harvest | subreddit | weekly |
| 2 | angle gap | competitor creator | weekly |
| 3 | profile mirror | analysis dimension | monthly |
| 4 | hook bank | hook pattern | weekly |
| 5 | draft | post in queue | weekly |
| 6 | platform split | draft | weekly |
| 7 | visual | post needing an asset | weekly |
| 8 | content decay | old post | monthly |
| 9 | engagement to pipeline | published post | daily |
| 10 | reply handling | open conversation | daily |
loops 1 to 8 are a content system. loops 9 and 10 are the reason it pays for itself.
run them in this order the first time. after that the schedules take over.
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
β 1 pain β β 2 angle gap β β 3 profile β
β harvest β β β β mirror β
ββββββββ¬ββββββββ ββββββββ¬ββββββββ ββββββββ¬ββββββββ
β β β
ββββββββββββββββββββΌβββββββββββββββββββ
βΌ
ββββββββββββββββ
β 4 hook bank β
ββββββββ¬ββββββββ
βΌ
ββββββββββββββββ
β 5 draft β
ββββββββ¬ββββββββ
βββββββββββββ΄ββββββββββββ
βΌ βΌ
ββββββββββββββββ ββββββββββββββββ
β 6 platform β β 7 visual β
β split β β β
ββββββββ¬ββββββββ ββββββββ¬ββββββββ
βββββββββββββ¬ββββββββββββ
βΌ
( you publish )
β
βΌ
ββββββββββββββββ
β 9 engagement β both call
β to pipelineβ βββΆ /salesrobot-mcp
ββββββββ¬ββββββββ first
βΌ
ββββββββββββββββ
β 10 reply β
β handling β
ββββββββ¬ββββββββ
βΌ
( booked call )
loop 8 (content decay) runs sideways on your archive, monthly
required for loops 1 to 8
β Claude Code installed (npm install -g @anthropic-ai/claude-code)
β python 3.9 or newer, already on most machines
β 20 minutes to fill in three config files