text
| 1 | # Hello World |
| 2 | |
| 3 | The smallest useful OpenAgents package: a three-step workflow that proves an |
| 4 | agent can read a package, greet you, look around the repository it's running |
| 5 | in, and report back. Use it to sanity-check a new runtime install, or as a |
| 6 | starting template for your own workflow package. |
| 7 | |
| 8 | ## What it does |
| 9 | |
| 10 | 1. **Greet** — says hello, using the `name` input if you provided one. |
| 11 | 2. **Inspect** — looks at the current repository (file tree, `README.md` if |
| 12 | present, package manifest if present) to get oriented. |
| 13 | 3. **Summarize** — writes a short plain-language summary of what the repo |
| 14 | appears to be, plus what it just did. |
| 15 | |
| 16 | ## Install |
| 17 | |
| 18 | ``` |
| 19 | npx openagents-cli add openagents/hello-world |
| 20 | ``` |
| 21 | |
| 22 | See the package page for runtime-specific install paths. |
| 23 | |
| 24 | ## Inputs |
| 25 | |
| 26 | | name | type | required | description | |
| 27 | |------|--------|----------|--------------------------------------| |
| 28 | | name | string | no | Name to greet. Defaults to "there". | |
| 29 | |
| 30 | ## Files |
| 31 | |
| 32 | - `WORKFLOW.md` — the workflow steps (entry point). |
| 33 |