perstack 0.0.77 → 0.0.78
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 +3 -53
- package/dist/bin/cli.js +290 -4289
- package/dist/bin/cli.js.map +1 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -45,67 +45,17 @@ perstack run <expert> <query>
|
|
|
45
45
|
| `--model <model>` | Model name | `claude-sonnet-4-5` |
|
|
46
46
|
| `--max-steps <n>` | Maximum steps | unlimited |
|
|
47
47
|
| `--max-retries <n>` | Max retry attempts | `5` |
|
|
48
|
-
| `--timeout <ms>` | Timeout per generation | `
|
|
48
|
+
| `--timeout <ms>` | Timeout per generation | `300000` |
|
|
49
|
+
| `--reasoning-budget <budget>` | Reasoning budget for native LLM reasoning | - |
|
|
49
50
|
| `--job-id <id>` | Custom job ID | auto-generated |
|
|
50
|
-
| `--run-id <id>` | Custom run ID | auto-generated |
|
|
51
51
|
| `--env-path <path...>` | Environment file paths | `.env`, `.env.local` |
|
|
52
|
-
| `--env <name...>` | Env vars to pass to Docker runtime | - |
|
|
53
|
-
| `--runtime <runtime>` | Execution runtime | `docker` |
|
|
54
|
-
| `--workspace <path>` | Workspace directory for Docker runtime | `./workspace` |
|
|
55
52
|
| `--continue` | Continue latest job | - |
|
|
56
53
|
| `--continue-job <id>` | Continue specific job | - |
|
|
57
54
|
| `--resume-from <id>` | Resume from checkpoint | - |
|
|
58
55
|
| `-i, --interactive-tool-call-result` | Query is tool call result | - |
|
|
56
|
+
| `--filter <types>` | Filter events by type (`run` only) | - |
|
|
59
57
|
| `--verbose` | Enable verbose logging | - |
|
|
60
58
|
|
|
61
|
-
---
|
|
62
|
-
|
|
63
|
-
### `publish`: Publish to Registry
|
|
64
|
-
|
|
65
|
-
Publish an Expert to the Perstack registry.
|
|
66
|
-
|
|
67
|
-
```bash
|
|
68
|
-
perstack publish [expertName]
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
**Options:**
|
|
72
|
-
- `--config <path>`: Path to `perstack.toml`.
|
|
73
|
-
- `--dry-run`: Validate without publishing.
|
|
74
|
-
|
|
75
|
-
---
|
|
76
|
-
|
|
77
|
-
### `unpublish`: Remove from Registry
|
|
78
|
-
|
|
79
|
-
Remove an Expert version from the registry.
|
|
80
|
-
|
|
81
|
-
```bash
|
|
82
|
-
perstack unpublish [expertKey]
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
**Options:**
|
|
86
|
-
- `--config <path>`: Path to `perstack.toml`.
|
|
87
|
-
- `--force`: Skip confirmation prompt.
|
|
88
|
-
|
|
89
|
-
---
|
|
90
|
-
|
|
91
|
-
### `tag`: Manage Tags
|
|
92
|
-
|
|
93
|
-
Add or update tags on an Expert version.
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
perstack tag [expertKey] [tags...]
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
---
|
|
100
|
-
|
|
101
|
-
### `status`: Change Status
|
|
102
|
-
|
|
103
|
-
Change the status of an Expert version (`available`, `deprecated`, `disabled`).
|
|
104
|
-
|
|
105
|
-
```bash
|
|
106
|
-
perstack status [expertKey] [status]
|
|
107
|
-
```
|
|
108
|
-
|
|
109
59
|
## Configuration
|
|
110
60
|
|
|
111
61
|
Perstack is configured via a `perstack.toml` file in your project root.
|