Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ Non-interactive chat for automation:

```bash
extropy chat ask \
--study-db study.db \
--agent-id agent_042 \
--prompt "What changed your mind?" \
--json
Expand All @@ -119,7 +118,7 @@ extropy chat ask \
List available agents:

```bash
extropy chat list --study-db study.db --json
extropy chat list --json
```

**Note:** The interactive REPL (`extropy chat`) requires a TTY and is not suitable for automation. Use `extropy chat ask` instead.
Expand Down
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ Run a simulation from a scenario spec.

```bash
extropy simulate -s ai-adoption
extropy simulate -s ai-adoption --seed 42 --strong openai/gpt-5
extropy simulate -s ai-adoption --seed 42 --strong anthropic/claude-sonnet-4-6
extropy simulate -s ai-adoption --fidelity high
extropy simulate -s asi-announcement --early-convergence off
```
Expand Down
4 changes: 2 additions & 2 deletions extropy/cli/commands/config_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def config_command(
Examples:
extropy config show
extropy config set models.fast openai/gpt-5-mini
extropy config set models.strong anthropic/claude-sonnet-4.5
extropy config set simulation.strong openrouter/anthropic/claude-sonnet-4.5
extropy config set models.strong anthropic/claude-sonnet-4-6
extropy config set simulation.strong openrouter/anthropic/claude-sonnet-4-6
extropy config reset
"""
if action == "show":
Expand Down
2 changes: 1 addition & 1 deletion extropy/cli/commands/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def simulate_command(
help="Scenario name (auto-selects if only one exists)",
),
output: Path | None = typer.Option(
None, "--output", "-o", help="Output results directory (defaults to results/)"
None, "--output", "-o", help="Output results directory (defaults to results/{scenario}/)"
),
strong: str = typer.Option(
"",
Expand Down
2 changes: 1 addition & 1 deletion extropy/cli/commands/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def validate_command(
EXIT CODES:
0 = Success (valid spec)
1 = Validation error (invalid spec)
2 = File not found
3 = File not found

EXAMPLES:
extropy validate surgeons.yaml # Population spec
Expand Down
Loading