Docs(README): Quickstart is incomplete and wrong. #53

Open
opened 2026-06-12 23:04:18 +00:00 by brent.edwards · 0 comments
Member

Metadata

Commit Message: docs(registry): update Quickstart documentation
Branch: docs/quickstart

Details

The current README.md quick start is just:

from cleveractors import ReactiveCleverAgentsApp

app = ReactiveCleverAgentsApp(config_files=["config.yaml"])
result = await app.run_single_shot("Hello, agents!")
print(result)

There are multiple problems with this code:

  1. There is no example config.yaml file.
  2. The second line makes a request to await outside of an async method.
## Metadata Commit Message: docs(registry): update Quickstart documentation Branch: docs/quickstart ## Details The current `README.md` quick start is just: ```python from cleveractors import ReactiveCleverAgentsApp app = ReactiveCleverAgentsApp(config_files=["config.yaml"]) result = await app.run_single_shot("Hello, agents!") print(result) ``` There are multiple problems with this code: 1. There is no example `config.yaml` file. 2. The second line makes a request to `await` outside of an async method.
brent.edwards changed title from Docs(README): Quickstart is incomplete. to Docs(README): Quickstart is incomplete and wrong. 2026-06-12 23:04:29 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cleveragents/cleveractors-core#53
No description provided.