1
0
Fork 0

feat: make examples cumulative with carry-forward chain and capstone

Add three new sections to all 14 examples:
- "Carry Forward": what output feeds into later examples (01-10)
- "The Cumulative Path": alternative prompt building on previous output (02-10)
- "Now Try It Yourself": personalized template with transferable pattern (all)
- "Building On" callout connecting back to previous examples (02-10)

Add Example 14: Build Your Personal Agent - capstone that guides reader
through writing their own CLAUDE.md, creating a personal skill, connecting
a messaging channel, setting up automation, and testing end-to-end.

Update README with cumulative path diagram, two usage modes, and example 14.
Update GETTING-STARTED.md with cross-references to relevant examples.

17 files changed, 703+ lines added. The examples now form a coherent
learning path from "see what it can do" to "build your own agent."

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kjell Tore Guttormsen 2026-03-26 21:14:35 +01:00
commit 0d0b83f98c
17 changed files with 979 additions and 11 deletions

View file

@ -10,6 +10,18 @@ about an hour of setup and a week of use.
Here is exactly what to do.
### How this connects to the examples
The `examples/` directory shows what Claude Code can do. This guide
shows how to make it do that for *you*. Each step below references
the relevant examples so you can see the capability in action before
personalizing it.
If you want the full guided path, run the examples 01-10 first
(follow the Cumulative Path in each one), then come here to build
your permanent setup. Or jump straight to [Example 14](examples/14-build-your-agent/prompt.md),
which condenses this guide into one hands-on session.
---
## Step 1: Make Claude Code know you (30 minutes)
@ -59,6 +71,10 @@ your work changes.
| List what is off-limits | Assume Claude will guess |
| Update it weekly | Write it once and forget it |
> **See it in action:** [Example 05](examples/05-memory-system/prompt.md)
> shows how CLAUDE.md drives Claude's behavior. [Example 14](examples/14-build-your-agent/prompt.md)
> walks you through writing your own from scratch.
---
## Step 2: Set up your phone channel (10 minutes)
@ -92,6 +108,11 @@ claude --channels
Send a test message from your phone. If Claude responds,
you are connected.
> **See it in action:** [Example 07](examples/07-messaging/prompt.md)
> demonstrates messaging with Telegram and Slack.
> [Example 12](examples/12-remote-control/prompt.md) covers all three
> remote access methods (Channels, Dispatch, Remote Control).
---
## Step 3: Keep your session alive (5 minutes)
@ -228,6 +249,11 @@ A skill is worth writing when you:
Start with 2-3 skills. Add more as you notice patterns.
> **See it in action:** [Example 06](examples/06-multi-agent/prompt.md)
> shows the researcher-writer-reviewer agent pattern that makes complex
> skills powerful. The "Now Try It Yourself" section in each example
> helps you adapt demo capabilities into personal skills.
---
## Step 5: Add your tools via MCP (15 minutes per tool)
@ -270,6 +296,10 @@ Each MCP server you add is a new capability. Claude
automatically discovers what tools are available and uses
them when relevant.
> **See it in action:** [Example 04](examples/04-browser-automation/prompt.md)
> demonstrates Playwright MCP for browser automation.
> [Example 07](examples/07-messaging/prompt.md) shows Slack MCP in action.
---
## Step 6: Let it learn (ongoing)
@ -369,4 +399,6 @@ you work.
| Automate a routine task | Step 4 (write a skill) |
| Connect a new service | Step 5 (add MCP server) |
| Try the demo examples | See `examples/` directory |
| Follow the cumulative path | Start at `examples/01-agent-runtime/` |
| Build your personal agent | See `examples/14-build-your-agent/` |
| Understand the OpenClaw comparison | See `feature-map.md` |