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
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ cat > index.html << 'HTMLHEAD'
<div class="sidebar-group">
<div class="sidebar-group-title">Get Started</div>
<a href="#" class="sidebar-link" data-page="index">Overview</a>
<a href="#" class="sidebar-link" data-page="top-picks">Top Picks</a>
<a href="#" class="sidebar-link" data-page="table-of-contents">Table of Contents</a>
<a href="#" class="sidebar-link" data-page="reading-list">Reading List</a>
<a href="#" class="sidebar-link" data-page="changelog">Changelog</a>
Expand Down Expand Up @@ -134,7 +135,7 @@ cat > index.html << 'HTMLHEAD'
HTMLHEAD

# Inline each markdown file as a script tag
for page in index table-of-contents reading-list changelog approaches patterns harness-engineering context-engineering tool-design skills memory evals benchmarks models schools who-is-who organizations inference sandboxes infrastructure tenki generative-ui deployment observability safety cost-economics research-notes; do
for page in index table-of-contents reading-list changelog approaches patterns harness-engineering context-engineering tool-design skills memory evals benchmarks models schools who-is-who organizations inference sandboxes infrastructure tenki generative-ui deployment observability safety cost-economics research-notes top-picks; do
echo " <script type=\"text/markdown\" data-page=\"${page}\">" >> index.html
# Escape </script> in content just in case
sed 's|</script>|<\\/script>|g' "content/${page}.md" >> index.html
Expand Down
4 changes: 3 additions & 1 deletion content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

A comprehensive reference to autonomous coding agents, agentic organizations, and the emerging patterns of AI-native software engineering.

**Just want recommendations?** → **[Top Picks](top-picks.md)** — opinionated, star-rated editorial picks for each category (frontier models, coding agents, sandboxes, CI runners, observability, evals, memory, safety, code reviewers, self-hosted inference). Skips the methodology; points at what to use.

---

## Chapters
Expand All @@ -33,7 +35,7 @@ A comprehensive reference to autonomous coding agents, agentic organizations, an
| 17 | [Generative UI](generative-ui.md) | The agent's front-end story — Static, Declarative (A2UI), Open-ended patterns; CopilotKit, AG-UI, A2UI, MCP-UI; Vercel AI SDK; trade-offs between consistency and flexibility |
| 18 | [Research Notes](research-notes.md) | Source-of-truth bibliography: structured digest of 100+ primary sources behind everything above — key claims, specific numbers, frameworks named, "which slot it fills" |

**Also worth knowing:** [Reading List](reading-list.md) — curated newsletters, blogs, podcasts, courses, communities, and reference repos · [Changelog](changelog.md) — what's been added to this site, newest first.
**Also worth knowing:** [Top Picks](top-picks.md) — opinionated star-rated recommendations per category · [Reading List](reading-list.md) — curated newsletters, blogs, podcasts, courses, communities, and reference repos · [Changelog](changelog.md) — what's been added to this site, newest first.

The [Approaches](approaches.md) chapter surveys 30+ agentic systems, organized by category in its Index — commercial vs. open-source vs. harness packs.

Expand Down
Loading
Loading