Skip to content

Commit 5184d2f

Browse files
testac974claude
andcommitted
Fix deployment and add buttondown assets
- Add --legacy-peer-deps to npm ci to resolve date-fns/react-day-picker peer dependency conflict - Add website/out/ to gitignore (Next.js static export output) - Track website/buttondown/ directory with branding and email templates Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 1f2f7a7 commit 5184d2f

6 files changed

Lines changed: 82 additions & 1 deletion

File tree

.github/workflows/deploy-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Install dependencies
3939
working-directory: ./website
40-
run: npm ci
40+
run: npm ci --legacy-peer-deps
4141

4242
- name: Build Next.js site
4343
working-directory: ./website

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
output/
33
*.pdf
44
_site/
5+
website/out/
56

67
# Dependencies
78
node_modules/
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"lastSync": "2026-02-08T05:34:43.396Z",
3+
"syncedEmails": {
4+
"6083540b-53b3-4d17-8502-1eee03ad37eb": {
5+
"modified": "2026-02-08T05:34:43.396Z",
6+
"localPath": "buttondown/emails/welcome-to-the-agentic-coding-playbook.md",
7+
"slug": "welcome-to-the-agentic-coding-playbook",
8+
"contentHash": "710050751"
9+
}
10+
},
11+
"syncedImages": {},
12+
"syncedNewsletter": {
13+
"id": "18523f5d-227c-419a-b660-13258daa7794",
14+
"lastSynced": "2026-02-08T05:33:43.286Z",
15+
"contentHash": "-2122920049"
16+
}
17+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Chris Testa",
3+
"description": "The Agentic Coding Playbook",
4+
"username": "agentic-coding-book",
5+
"branding": {
6+
"tint_color": "#0069FF",
7+
"header": null,
8+
"footer": null,
9+
"from_name": "Agentic Coding Playbook"
10+
}
11+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
* This file is for template CSS that will be shared across emails
3+
* You can include this in your custom CSS by using:
4+
* @import url('template.css');
5+
*/
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
id: 6083540b-53b3-4d17-8502-1eee03ad37eb
3+
slug: welcome-to-the-agentic-coding-playbook
4+
status: draft
5+
subject: Welcome to the Agentic Coding Playbook
6+
---
7+
8+
<!-- buttondown-editor-mode: markdown -->
9+
10+
Hey there,
11+
12+
Thanks for subscribing! You're now on the list for updates about **The Agentic Coding Playbook**.
13+
14+
## What you get
15+
16+
- **Early access** to new chapters as they drop
17+
- **Behind-the-scenes insights** on building products with AI agents
18+
- **Practical patterns and tools** you can use immediately
19+
20+
## What's available now
21+
22+
**Part 1: Foundations** is live and ready to read:
23+
24+
👉 [Start Reading Part 1](https://testaco.github.io/agentic-coding-book)
25+
26+
You'll learn:
27+
- The **Renaissance Developer** mindset (breadth over depth)
28+
- What **agentic coding** actually means (beyond the hype)
29+
- **Architecture principles** for AI-friendly code
30+
- The **Digestibility Principle** (why humans and AI have the same constraints)
31+
- The **5 new bottlenecks** when coding gets 5-10x faster
32+
33+
## What's coming
34+
35+
- **Part 2: The Playbook** — The complete 6-week journey from idea to production
36+
- **Part 3: Patterns & Tools** — Architecture patterns, testing strategies, and the agent-friendly toolchain
37+
- **Part 4: Complete Example** — A real, non-trivial product built using the entire playbook
38+
39+
I'll only email when there's something worth your time—no spam, no fluff.
40+
41+
**The meta story:** This book was built using its own methodology. The planning docs are public. The git history shows the process. It's proof that this approach works.
42+
43+
Thanks for being here.
44+
45+
— Chris Testa
46+
Author, The Agentic Coding Playbook
47+
https://testaco.github.io/agentic-coding-book

0 commit comments

Comments
 (0)