Wellness Swarm
Daily Run Sheet
What happens, when it happens, and who owns it. Every block maps to an endpoint that already exists — copy the command and it runs. Times are Central.
← Back to Mission Control|Niche Rings →|Launch Board →Agent Bus →News Desks →Coordinator →Non-negotiables
- Nothing gets syndicated until it passes the readiness gate. A ranked page with a dead link is worse than no page.
- Every affiliate link is live-fetched before it goes into rotation, and re-checked weekly.
- New properties join a ring. No orphans.
- Fix once, then rebuild — otherwise the fix only applies to posts published after it.
- One sale a day across all niches is the bar. Any activity that cannot be traced to that bar is a hobby.
Every day
Health check — is the machine sound?
Engine1. Blog readiness sweep
5 secAny blog that lost its offer, its media kit or its article backlog gets held automatically. This tells you which ones and why, before anything gets syndicated.
curl -s "https://hardmoneyhub.org/api/blogger/readiness" -H "x-ops-key: swarm-3f776334"
2. Link + page audit
1–2 minConfirms every URL in the syndication inventory still answers 200. This is the gate that stops us pushing dead pages to the front page.
curl -s "https://hardmoneyhub.org/api/inventory?check=1"
3. Offer pool spot-check
5 secPull the resolved offer for two or three niches. If a niche starts resolving to something off-topic, the affiliate link died overnight.
curl -s "https://hardmoneyhub.org/api/pool/offer?niche=weight-loss"
Content generation — fill the tank
Engine1. Generate the day’s articles
3–6 minPublishing can only ever be as deep as the backlog. Keep every live niche at three or more unposted articles so the readiness gate never trips.
curl -s -X POST https://hardmoneyhub.org/api/content/batch \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"niches":["weight-loss","auto-insurance","medicare","home-security","personal-injury"],"perNiche":3,"maxArticles":12}'2. Rotate the niche list daily
planningTwenty-plus niches will not all fit in one batch. Work through them on a rotation so nothing starves and nothing gets over-fed.
Publish — drip onto the network
Engine1. Post to the blog network
2–4 minTwo to three posts per blog per day is a natural cadence. Faster than that on aged blogspot properties is how footprints get flagged.
curl -s -X POST https://hardmoneyhub.org/api/blogger/post \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"niche":"weight-loss","maxPosts":6}'2. Ping the new URLs
20 secIndexNow gets fresh posts crawled in hours instead of weeks. Free, instant, and it is the cheapest ranking lever we own.
curl -s -X POST https://hardmoneyhub.org/api/indexnow/submit \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"all":true}'Money check — did anything actually pay?
You1. Call log + ad stats
10 secOne sale a day is the whole bar. This is the only block that tells you whether the bar was cleared.
curl -s "https://hardmoneyhub.org/api/ads/stats" -H "x-ops-key: swarm-3f776334"
2. MarketCall + MaxBounty + ClickBank dashboards
5 minRevenue lives in the networks, not in our database. Five minutes of eyeballs beats any report.
3. Kill what is not moving
5 minAny offer with clicks and zero conversions for a week gets deactivated so the resolver stops sending traffic into a hole.
SEO + syndication — agent2 lane
Agent21. Hand off the ready inventory
instantAgent2 pulls the list itself. No auth needed, no copy-paste, and held pages are already excluded so nothing broken gets submitted.
curl -s "https://hardmoneyhub.org/api/inventory?format=txt"
2. PDF conversion + GSA submission
agent2 sideAgent2 owns this end to end on its own box. We supply the URLs and the PDF service; it owns the target list.
curl -s -X POST https://hardmoneyhub.org/api/pdf/create \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"url":"https://hardmoneyhub.org/"}'3. Rank pull
10 secMovement is the only proof syndication is working. Check weekly at minimum, daily on the pages you are actively pushing.
curl -s "https://hardmoneyhub.org/api/rank/results" -H "x-ops-key: swarm-3f776334"
Build block — grow the footprint
You1. Add to a ring, not to the pile
20 minNew properties go into a niche that already has one or two, so every addition completes a triangle instead of creating another orphan.
2. Seed it the same day
2 minAn empty blog is excluded from its ring on purpose. Three posts turn it from a liability into a link asset.
curl -s -X POST https://hardmoneyhub.org/api/blogger/post \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"blogSiteId":"<id>","maxPosts":3}'Close out
Engine1. Rebuild anything that changed
1 min per nicheFix an offer link or a layout and the posts already live keep the old version until they are re-rendered. Same URL, no lost indexing.
curl -s -X POST https://hardmoneyhub.org/api/blogger/rebuild \
-H "Content-Type: application/json" -H "x-ops-key: swarm-3f776334" \
-d '{"niche":"weight-loss","limit":25}'2. Log the day
3 minPosts out, calls in, sales in, what broke. Four numbers. Without them next week is guesswork.
Weekly focus
The daily blocks keep the engine turning. These give each day one thing that moves the operation forward instead of just maintaining it.
Five to ten new properties. Every one lands in a niche that already has members so it completes a ring. Seed each with three posts the same day.
Live-fetch every affiliate link in the pool. Anything not answering 200 gets deactivated. This is the single highest-value hour of the week — dead links are the one thing that makes all the traffic worthless.
Refresh the custom RSS feeds, push the news blog, and hand agent2 the updated ready-inventory list for GSA.
Review the split test. Scale the winning arm, cut the loser, and write one new creative for the arm that is working.
Pull rankings, then rebuild every niche so the week’s fixes are reflected on all live posts.
Content generation and publishing keep running. No structural changes — nothing gets broken on a day nobody is watching.
Wellness Swarm internal operations. Not for public distribution.