Examples Cookbook
Examples Cookbook
Section titled “Examples Cookbook”Examples are starting points
Section titled “Examples are starting points”| Look for | Question |
|---|---|
| Task shape | Is it really your task? |
| Secrets | Where do they come from? |
| Side effects | Can it write, send, or delete? |
| Stopping | What limits loops and retries? |
Examples show shape, not production readiness
Section titled “Examples show shape, not production readiness”Run examples in a disposable environment first. Before adapting one, identify secrets, side effects, loop limits, output shape, and review path.
| Look for | Question |
|---|---|
| Task shape | Is it actually your task? |
| Secrets | Where do keys come from? |
| Side effects | Can it write, send, spend, or delete? |
| Stopping | What limits loops and retries? |
| Output | Who or what consumes the result? |
Move serious examples into application code
Section titled “Move serious examples into application code”A useful example often grows into a workflow. When that happens, give it ownership, tests, configuration, and deployment notes like any other code.