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

7:00 AM

Health check — is the machine sound?

Engine

1. Blog readiness sweep

5 sec

Any 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 min

Confirms 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 sec

Pull 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"
8:00 AM

Content generation — fill the tank

Engine

1. Generate the day’s articles

3–6 min

Publishing 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

planning

Twenty-plus niches will not all fit in one batch. Work through them on a rotation so nothing starves and nothing gets over-fed.

9:00 AM

Publish — drip onto the network

Engine

1. Post to the blog network

2–4 min

Two 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 sec

IndexNow 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}'
12:00 PM

Money check — did anything actually pay?

You

1. Call log + ad stats

10 sec

One 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 min

Revenue lives in the networks, not in our database. Five minutes of eyeballs beats any report.

3. Kill what is not moving

5 min

Any offer with clicks and zero conversions for a week gets deactivated so the resolver stops sending traffic into a hole.

2:00 PM

SEO + syndication — agent2 lane

Agent2

1. Hand off the ready inventory

instant

Agent2 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 side

Agent2 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 sec

Movement 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"
4:00 PM

Build block — grow the footprint

You

1. Add to a ring, not to the pile

20 min

New 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 min

An 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}'
6:00 PM

Close out

Engine

1. Rebuild anything that changed

1 min per niche

Fix 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 min

Posts 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.

MondayBuild batch

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.

TuesdayOffer audit

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.

WednesdayFeeds + syndication

Refresh the custom RSS feeds, push the news blog, and hand agent2 the updated ready-inventory list for GSA.

ThursdayPaid traffic

Review the split test. Scale the winning arm, cut the loser, and write one new creative for the arm that is working.

FridayRank + rebuild

Pull rankings, then rebuild every niche so the week’s fixes are reflected on all live posts.

WeekendLight drip only

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.