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:
parent
06ae605051
commit
0d0b83f98c
17 changed files with 979 additions and 11 deletions
52
README.md
52
README.md
|
|
@ -16,7 +16,8 @@ those 22, with 13 full matches and 8 different approaches. One gap
|
|||
remains: Canvas/A2UI.
|
||||
|
||||
This is not a theoretical comparison. Clone this repo, open Claude
|
||||
Code, and try each example yourself.
|
||||
Code, and try each example yourself. By Example 14, you will have
|
||||
built your own personal agent.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
|
|
@ -34,10 +35,10 @@ No npm install. No Docker. No build step.
|
|||
**"Show me what it can do"** - Browse `examples/`, read `feature-map.md`,
|
||||
try the demo prompts. You will understand what Claude Code is capable of.
|
||||
|
||||
**"Help me actually use it"** - Read **[GETTING-STARTED.md](GETTING-STARTED.md)**.
|
||||
Six concrete steps that take you from demo to personal daily driver:
|
||||
personalize CLAUDE.md, set up phone access, write your own skills,
|
||||
and build the setup into how you actually work. About one hour total.
|
||||
**"Help me actually use it"** - Follow the **Cumulative Path** through
|
||||
examples 01-14. Each example builds on the previous one. By the end,
|
||||
you have a working personal agent. Or read **[GETTING-STARTED.md](GETTING-STARTED.md)**
|
||||
for the condensed version: six steps, about one hour total.
|
||||
|
||||
## Quickstart (demo mode)
|
||||
|
||||
|
|
@ -97,14 +98,23 @@ Each example includes an "Expected Output" section so you know what to look for.
|
|||
| 11 | Computer Use | Control desktop apps | macOS/iOS/Android apps |
|
||||
| 12 | Remote Access | Channels + Dispatch + /rc (3 ways) | Telegram/WhatsApp control |
|
||||
| 13 | Auto Mode | AI safety classifier | Autonomous daemon mode |
|
||||
| 14 | **Build Your Agent** | All capabilities combined | Your personal setup |
|
||||
|
||||
Each example has a self-contained prompt you can paste directly
|
||||
into Claude Code.
|
||||
|
||||
**Recommended path:** Examples 01-09 are independent and work in any order.
|
||||
Example 10 combines all of them into a single pipeline. Examples 11-13 require
|
||||
additional setup (Desktop app, specific subscription plans) and are documented
|
||||
separately.
|
||||
**Two ways to use the examples:**
|
||||
|
||||
1. **Independent mode.** Pick any example and run it. Every demo prompt works standalone.
|
||||
|
||||
2. **Cumulative path (recommended).** Follow examples 01-14 in order. Each one
|
||||
has a "Cumulative Path" section with an alternative prompt that builds on the
|
||||
previous example's output. By example 10, you have a complete automated pipeline.
|
||||
By example 14, you have a personal agent configured for your actual work.
|
||||
|
||||
Examples 11-13 require additional setup (Desktop app, specific subscription
|
||||
plans) and are documented separately. Example 14 works after any subset of
|
||||
01-10.
|
||||
|
||||
## The feature map
|
||||
|
||||
|
|
@ -113,6 +123,30 @@ comparison table with verdicts and version requirements.
|
|||
|
||||
**Summary:** 13 full match, 8 different approach, 1 gap.
|
||||
|
||||
## The cumulative path
|
||||
|
||||
The fastest way to learn Claude Code is to build something real with it.
|
||||
The examples are designed so each one adds one capability to an
|
||||
accumulating pipeline:
|
||||
|
||||
```
|
||||
01 Research --> raw data
|
||||
02 Organize --> structured report
|
||||
03 Verify --> sourced, fact-checked
|
||||
04 Browser --> live visual data (optional)
|
||||
05 Memory --> persistent across sessions
|
||||
06 Multi-agent --> polished, reviewed output
|
||||
07 Messaging --> delivered to your phone
|
||||
08 Automation --> runs on schedule
|
||||
09 Security --> protected by hooks
|
||||
10 Full pipeline --> everything combined
|
||||
14 Your agent --> personalized for your work
|
||||
```
|
||||
|
||||
Each example has a "Carry Forward" section (what your output feeds into
|
||||
next) and a "Now Try It Yourself" section (how to adapt the pattern for
|
||||
your own needs). Start at 01 and follow the thread.
|
||||
|
||||
## The broader ecosystem
|
||||
|
||||
Claude Code is one part of Anthropic's answer to OpenClaw:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue