Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions artifacts/MAX-669/preview.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MAX-669 X Thread Preview</title>
<style>
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Arial, sans-serif; background: #0b1120; color: #e5eefc; }
.wrap { max-width: 980px; margin: 0 auto; padding: 40px 24px 80px; }
.hero { background: linear-gradient(135deg, #111827, #1d4ed8 58%, #f97316 120%); border-radius: 28px; padding: 32px; box-shadow: 0 18px 60px rgba(0,0,0,.35); }
h1 { margin: 0 0 10px; font-size: 42px; }
.lead { font-size: 19px; line-height: 1.6; color: #dbeafe; max-width: 820px; }
.meta { margin-top: 12px; color: #bfdbfe; font-size: 14px; }
.thread { margin-top: 26px; display: grid; gap: 16px; }
.tweet { background: #111827; border: 1px solid #24324d; border-radius: 22px; padding: 20px 22px; box-shadow: 0 12px 24px rgba(0,0,0,.22); }
.tweet-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(135deg, #2563eb, #f97316); display:flex; align-items:center; justify-content:center; font-weight: 700; }
.name { font-weight: 700; }
.handle { color: #93c5fd; font-size: 14px; }
.text { white-space: pre-wrap; line-height: 1.65; font-size: 19px; }
.footer { margin-top: 12px; color: #7dd3fc; font-size: 13px; }
</style>
</head>
<body>
<div class="wrap">
<section class="hero">
<h1>MAX-669 — X Thread</h1>
<div class="lead">Thread cut from the MAX-565 waterfall for the <strong>/orchestrator</strong> course launch. Focus: why single-agent AI workflows break and how reliable multi-agent execution becomes the next leverage point.</div>
<div class="meta">Source: artifacts/MAX-565/build.md · Channel: x_thread · Brand: maxtechera</div>
</section>

<section class="thread">
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">Single-agent AI workflows feel fast until context loss, duplicated work, and drift kill the result. That’s the wall most Claude Code users hit right after the first good demo. 🧵</div><div class="footer">Tweet 1 · Hook</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">Most people already know how to prompt one agent. The real bottleneck starts when the job needs parallel executors, clear ticket contracts, and handoffs that survive more than one session.</div><div class="footer">Tweet 2 · Problem</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">That’s where /orchestrator fits. It closes the gap between “cool demo” and “reliable workflow” by turning agent work into a system with contracts, ownership, verification, and state.</div><div class="footer">Tweet 3 · Shift</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">The course packages that operating model into 6 modules: why single-agent breaks, ticket contracts, spawning teams, memory + handoff, reliability patterns, and production orchestration.</div><div class="footer">Tweet 4 · Mechanism</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">This is not abstract theory. You get a free lesson on the context-limit wall, a coordinator ↔ executor preview, and cloneable templates you can drop into your own workflow right away.</div><div class="footer">Tweet 5 · Proof</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">The outcome is simple: run reliable, parallel multi-agent workflows in 1 week without losing context, duplicating work, or watching agents drift while you babysit the process.</div><div class="footer">Tweet 6 · Outcome</div></article>
<article class="tweet"><div class="tweet-head"><div class="avatar">M</div><div><div class="name">Max Techera</div><div class="handle">@maxtechera</div></div></div><div class="text">If you want the full framework, start with the course outline and free lesson here: https://github.com/maxtechera/orchestrator#learn-orchestrator

Join the /orchestrator waitlist before everyone else is still babysitting one prompt at a time.</div><div class="footer">Tweet 7 · CTA</div></article>
</section>
</div>
</body>
</html>
36 changes: 36 additions & 0 deletions artifacts/MAX-669/thread.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"tweets": [
{
"text": "Single-agent AI workflows feel fast until context loss, duplicated work, and drift kill the result. That’s the wall most Claude Code users hit right after the first good demo. 🧵",
"media": null
},
{
"text": "Most people already know how to prompt one agent. The real bottleneck starts when the job needs parallel executors, clear ticket contracts, and handoffs that survive more than one session.",
"media": null
},
{
"text": "That’s where /orchestrator fits. It closes the gap between “cool demo” and “reliable workflow” by turning agent work into a system with contracts, ownership, verification, and state.",
"media": null
},
{
"text": "The course packages that operating model into 6 modules: why single-agent breaks, ticket contracts, spawning teams, memory + handoff, reliability patterns, and production orchestration.",
"media": null
},
{
"text": "This is not abstract theory. You get a free lesson on the context-limit wall, a coordinator ↔ executor preview, and cloneable templates you can drop into your own workflow right away.",
"media": null
},
{
"text": "The outcome is simple: run reliable, parallel multi-agent workflows in 1 week without losing context, duplicating work, or watching agents drift while you babysit the process.",
"media": null
},
{
"text": "If you want the full framework, start with the course outline and free lesson here: https://github.com/maxtechera/orchestrator#learn-orchestrator\n\nJoin the /orchestrator waitlist before everyone else is still babysitting one prompt at a time.",
"media": null
}
],
"cta": {
"action": "Start with the /orchestrator course outline and join the waitlist.",
"reason_for_now": "Single-agent wins are getting crowded. The leverage now is reliable multi-agent execution."
}
}
Loading