Skip to content

Commit 102ece0

Browse files
committed
Intro fixes and updates
1 parent 550636f commit 102ece0

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

website/docs/intro.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ The dangerous runs are not the obviously broken ones. They look finished early
7070

7171
**Agentic Coding is about making that moment predictable:** direct the work, expose the pressure, and keep acceptance in your hands.
7272

73-
## Trust note
73+
## Free & open source — nothing to sell
7474

75-
The book is written by [Ofri Wolfus](/about) and grounded in production practice and open-source experimentation. Inspect the [book source](https://github.com/agenticoding/agenticoding.github.io), the [ChunkHound source](https://github.com/chunkhound/chunkhound), or the [author background](/about).
75+
This book, the tools it references, and everything built around them are **100% open source, community-backed projects with no commercial agenda.**
76+
77+
- **Book source:** [github.com/agenticoding/agenticoding.github.io](https://github.com/agenticoding/agenticoding.github.io)
78+
- **ChunkHound:** [github.com/chunkhound/chunkhound](https://github.com/chunkhound/chunkhound)
79+
- **Pi agenticoding extension:** [github.com/agenticoding/pi-agenticoding](https://github.com/agenticoding/pi-agenticoding)
80+
81+
No paid tiers. No enterprise licenses. Nothing to buy. Everything here exists because the problems are real and the solutions should be shared.

website/src/components/VisualElements/OperatorTransformationDiagram.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const SCENE_HEIGHT = 416;
3838
const ONE_SHOT_TILE_HEIGHT = 208;
3939
const SCENE_BOTTOM_PADDING = TILE_TO_GATE_GAP;
4040
const DESKTOP_SCENE_Y = 24;
41+
const DESKTOP_VIEWBOX_BOTTOM_PADDING = 24;
4142
const DESKTOP_TRANSITION_Y = DESKTOP_SCENE_Y + SCENE_HEIGHT / 2 - 114;
4243

4344
function calloutLines(lines: readonly string[], width: number, size: number) {
@@ -98,6 +99,9 @@ function workingSceneHeight(width: number) {
9899
);
99100
}
100101

102+
const DESKTOP_VIEWBOX_HEIGHT =
103+
DESKTOP_SCENE_Y + workingSceneHeight(320) + DESKTOP_VIEWBOX_BOTTOM_PADDING;
104+
101105
function DiagramText({
102106
x,
103107
y,
@@ -458,7 +462,7 @@ function DesktopDiagram() {
458462
return (
459463
<svg
460464
className={styles.operatorDesktop}
461-
viewBox="0 0 960 448"
465+
viewBox={`0 0 960 ${DESKTOP_VIEWBOX_HEIGHT}`}
462466
aria-hidden="true"
463467
xmlns="http://www.w3.org/2000/svg"
464468
>

0 commit comments

Comments
 (0)