> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usealmanac.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Improve pages with Garden

> Run a managed editorial job across a wiki or one page.

Garden is Almanac's maintenance job. It reviews existing pages against their
sources and applies a focused editorial update.

## Improve the whole wiki

```bash theme={"theme":{"light":"github-light","dark":"vesper"}}
almanac garden \
  --guidance "merge duplicate onboarding guidance and tighten stale pages"
almanac jobs wait last
```

Describe the outcome you want. Almanac still validates and records the resulting
page changes as one observable job.

## Improve one page

```bash theme={"theme":{"light":"github-light","dark":"vesper"}}
almanac garden \
  --page operations/customer-onboarding \
  --guidance "make escalation steps concrete and cite the current policy"
almanac jobs wait last
```

Use the extensionless path returned by `almanac search` or `almanac pages list`.

## Verify the result

```bash theme={"theme":{"light":"github-light","dark":"vesper"}}
almanac jobs show last
almanac show operations/customer-onboarding --sources
```

The Python SDK currently gardens an entire wiki; page-scoped Garden is available
through the CLI and REST API. See [Uploads and jobs](/concepts/uploads-and-jobs)
for lifecycle details and [CLI automation](/cli/automation) before scripting it.
