27 lines
866 B
Markdown
27 lines
866 B
Markdown
# weatherreporter
|
|
|
|
`weatherreporter` is a Go application for preparing human-facing weather
|
|
reports from normalized forecast data.
|
|
|
|
The application can currently generate Daily Today, Daily Tomorrow, and 3-Day
|
|
Outlook Markdown reports through `scriptorium`, with inspectable briefing,
|
|
prompt input, preflight, report, and metadata artifacts under the configured
|
|
workspace.
|
|
|
|
## Quickstart
|
|
|
|
```sh
|
|
weatherreporter generate daily --date 2026-05-29 --out ./daily.md
|
|
weatherreporter generate tomorrow --out ./tomorrow.md
|
|
weatherreporter generate three-day --out ./three-day.md
|
|
```
|
|
|
|
## Documentation
|
|
|
|
- [CLI reference](docs/cli.md)
|
|
- [Configuration reference](docs/config.md)
|
|
- [Operations guide](docs/operations.md)
|
|
- [Architecture policy](docs/policy/architecture.md)
|
|
- [Development policy](docs/policy/development.md)
|
|
- [Implementation roadmap](docs/roadmap/initial.md)
|