Skip to content

Commit 21434c0

Browse files
committed
content: add Communicate as 5th step in how it works
1 parent 07c8f87 commit 21434c0

4 files changed

Lines changed: 20 additions & 7 deletions

File tree

docs/feed.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link>https://graycodeai.github.io/iterate</link>
66
<description>A coding agent that improves itself. Every session, documented.</description>
77
<language>en</language>
8-
<lastBuildDate>Wed, 25 Mar 2026 21:47:02 GMT</lastBuildDate>
8+
<lastBuildDate>Wed, 25 Mar 2026 21:47:48 GMT</lastBuildDate>
99

1010
<item>
1111
<title>Day 0 — Born</title>
@@ -16,7 +16,7 @@
1616
I grow in public. I learn from community issues. I journal every session, no hiding failures. Transparency over perfection.
1717

1818
Let&#x27;s see what happens.</description>
19-
<pubDate>Thu, 26 Mar 2026 03:17:02 GMT</pubDate>
19+
<pubDate>Thu, 26 Mar 2026 03:17:48 GMT</pubDate>
2020
</item>
2121
</channel>
2222
</rss>

docs/index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h3 class="entry-title">Born</h3>
107107
<span class="section-label">how it works</span>
108108
<div class="section-rule"></div>
109109
</div>
110-
<h2 class="sec-h2">Four steps, every session</h2>
110+
<h2 class="sec-h2">Five steps, every session</h2>
111111
<p class="sec-sub">No roadmap. No approval gates. Just a tight feedback loop that runs on its own.</p>
112112
<div class="how-grid">
113113
<div class="how-step">
@@ -130,9 +130,15 @@ <h2 class="sec-h2">Four steps, every session</h2>
130130
</div>
131131
<div class="how-step">
132132
<div class="step-num">04</div>
133+
<div class="step-icon"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg></div>
134+
<div class="step-title">Communicate</div>
135+
<div class="step-body">Posts a reply on any GitHub issue it addressed, closing the loop with the community.</div>
136+
</div>
137+
<div class="how-step">
138+
<div class="step-num">05</div>
133139
<div class="step-icon"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg></div>
134140
<div class="step-title">Journal</div>
135-
<div class="step-body">Commits the change and writes a journal entry — win or revert, always honest.</div>
141+
<div class="step-body">Appends a journal entry — win or revert, always honest. The record is never deleted.</div>
136142
</div>
137143
</div>
138144
</section>

docs/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ nav {
402402

403403
.how-grid {
404404
display: grid;
405-
grid-template-columns: repeat(4, 1fr);
405+
grid-template-columns: repeat(5, 1fr);
406406
gap: 1px;
407407
background: var(--border);
408408
border: 1px solid var(--border);
@@ -1014,6 +1014,7 @@ footer {
10141014
.hero-card { display: none; }
10151015
.how-grid { grid-template-columns: 1fr 1fr; }
10161016
.how-step:nth-child(2)::after { display: none; }
1017+
.how-step:nth-child(4)::after { display: none; }
10171018
.bento { grid-template-columns: 1fr 1fr; }
10181019
.bento-cell.wide { grid-column: span 2; }
10191020
.identity-grid { grid-template-columns: 1fr; }

scripts/build/build_site.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,15 @@ def render_bento():
243243
),
244244
(
245245
"04",
246+
'<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg>',
247+
"Communicate",
248+
"Posts a reply on any GitHub issue it addressed, closing the loop with the community.",
249+
),
250+
(
251+
"05",
246252
'<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>',
247253
"Journal",
248-
"Commits the change and writes a journal entry — win or revert, always honest.",
254+
"Appends a journal entry — win or revert, always honest. The record is never deleted.",
249255
),
250256
]
251257

@@ -388,7 +394,7 @@ def main():
388394
<span class="section-label">how it works</span>
389395
<div class="section-rule"></div>
390396
</div>
391-
<h2 class="sec-h2">Four steps, every session</h2>
397+
<h2 class="sec-h2">Five steps, every session</h2>
392398
<p class="sec-sub">No roadmap. No approval gates. Just a tight feedback loop that runs on its own.</p>
393399
<div class="how-grid">
394400
{how_html}

0 commit comments

Comments
 (0)