# Reddit — value-first drafts (r/ClaudeAI / r/ClaudeHomies)

**Important.** Reddit's promotional rules are strict. Both subs allow first-person experience reports with disclosure but ban naked affiliate links. Treat these as discussion posts that happen to mention what you used.

**Posting rules to keep:**
- Affiliate link goes in your **profile bio**, not the post body. Or in a comment if mods explicitly allow it.
- Disclose with a clear `[affiliate]` flair or a one-line disclosure at the end.
- Lead with the build, not the tool. Show the diff/output before naming what produced it.
- Engage in comments for at least 24 hours after posting — don't post and ghost.

---

## Draft 1 — "I built a cron-driven Telegram bot in one prompt. Posting the protocol I used because it's not the model that did it."

**Subreddit:** r/ClaudeAI

**Title:** I built a cron-driven Telegram bot in one prompt. Posting the protocol I used because it's not the model that did it.

**Body:**

I've been running Claude Code daily for ~6 months. Like everyone else, my "1-prompt completion rate" was maybe 20%. The other 80% of the time I was re-prompting, fixing, telling Claude where it broke its own logic.

Last weekend I tried something different. I added an execution skill (Godmode) that wraps every task in an 8-layer protocol: plan → fan out sub-agents → run in parallel → verify outputs → score ≥0.92 or self-fix → evolve the skill.

The thing I asked for: "Build a cron-driven Telegram bot that posts AEMO grid prices to a channel every morning at 6am AEST."

What I got back, one prompt later:
- A working FastAPI/Python script with the AEMO scraping logic
- Telegram Bot API integration with proper auth
- A Render cron config (already in YAML)
- A health endpoint for monitoring
- Tests that ran green before the assistant handed it to me

The output isn't magic. The protocol is.

Three things the loop catches that vanilla Claude misses:
1. It plans before it codes (so it doesn't have to refactor mid-task)
2. It scores its own work before submitting (catches half-finished features)
3. The skill literally gets sharper the more you use it (week 3 vs week 1 is a different tool)

For people grinding away at re-prompting: the gap is the verification loop, not the model. Adding one will make your existing Claude Code subscription feel like a different product.

Happy to share the bot diff and the skill chain in comments if there's interest.

---

[disclosure] I'm in their affiliate program — link is in my profile if you want to try it. The Lite tier is free and runs the same protocol, so try that before paying.

---

## Draft 2 — "Honest comparison: Cursor agent mode vs Claude Code with skills, after 30 days each"

**Subreddit:** r/ClaudeAI

**Title:** Honest comparison: Cursor agent mode vs Claude Code with skills, after 30 days each

**Body:**

Spent the last 60 days alternating between Cursor (with agent mode) and Claude Code (with the Godmode execution skill set). Same projects, same kind of tasks. Wanted a head-to-head.

**Where Cursor still wins:**
- IDE-native UX. Hover, jump, in-line edits. Nothing beats it for "polish this function."
- Multi-file context for refactors. Cursor sees the project structure cleanly.
- Lower friction for non-CLI people on my team.

**Where Claude Code + skills wins:**
- Agent runs are actually parallel. Cursor agent mode is sequential.
- Verification loop. Cursor agent ships first attempt; the skill stack scores ≥0.92 or self-fixes.
- Skill evolution. The longer I run a skill, the sharper its outputs get. Cursor's agent doesn't have an analogous compound.
- Pure terminal/Cron-friendly. I can run it from a Render scheduled job.

**Where they're roughly tied:**
- Code quality on small isolated tasks (< 100 LOC).
- Cost (Cursor sub vs Claude API + tier sub).

**TL;DR:**
- For inline editing or pair-programming: Cursor.
- For agent flows that need to finish without supervision: Claude Code with a verification skill stack.

For me the answer was both, but I now do 80% of agent-style work in Claude Code and reserve Cursor for editing.

---

[disclosure] I'm an affiliate of one of these (it's in my profile). Try the free tiers of both before deciding.
