perstack 0.0.92 → 0.0.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -43,7 +43,6 @@ perstack run <expert> <query>
43
43
  | `--config <path>` | Path to `perstack.toml` | Auto-discover |
44
44
  | `--provider <provider>` | LLM provider | `anthropic` |
45
45
  | `--model <model>` | Model name | `claude-sonnet-4-5` |
46
- | `--max-steps <n>` | Maximum steps | unlimited |
47
46
  | `--max-retries <n>` | Max retry attempts | `5` |
48
47
  | `--timeout <ms>` | Timeout per generation | `300000` |
49
48
  | `--reasoning-budget <budget>` | Reasoning budget for native LLM reasoning | - |
@@ -93,7 +92,7 @@ PERSTACK_API_KEY=...
93
92
  This package is part of the Perstack monorepo. To build and run locally:
94
93
 
95
94
  ```bash
96
- pnpm install
97
- pnpm build
98
- node dist/bin/cli.js start
95
+ bun install
96
+ bun run build
97
+ bun dist/bin/cli.js start
99
98
  ```