prompts-gpt 0.2.19 → 0.3.1

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
@@ -141,12 +141,11 @@ prompts-gpt models --provider codex
141
141
  # Sync model registry from cloud
142
142
  prompts-gpt sync-models
143
143
 
144
- # Use model aliases for shorter commands
145
- prompts-gpt run --model opus # resolves to claude-opus-4-7
146
- prompts-gpt run --agent cursor --model opus-4.6 # resolves to claude-4.6-opus-high
147
- prompts-gpt run --model mini # resolves to gpt-5.4-mini
148
- prompts-gpt run --model pro # resolves to gpt-5.5-pro
149
- prompts-gpt run --model o3 # resolves to o3
144
+ # Use canonical model names only
145
+ prompts-gpt run --agent claude --model claude-opus-4-7
146
+ prompts-gpt run --agent cursor --model claude-4.6-opus-high
147
+ prompts-gpt run --agent codex --model gpt-5.4-mini
148
+ prompts-gpt run --agent codex --model gpt-5.5
150
149
 
151
150
  # Sync from cloud
152
151
  prompts-gpt sync --agent all
@@ -188,6 +187,22 @@ All options can be overridden via environment variables. See `prompts-gpt help s
188
187
  - `run --watch`: rerun automatically when the prompt file changes.
189
188
  - `doctor --fix`: scaffold `.prompts-gpt/config.json`, detect prompt sources, and add the artifacts directory to `.gitignore`.
190
189
 
190
+ ### Visibility implementation workflow
191
+
192
+ Use orchestration after a monitor or checker identifies a concrete gap:
193
+
194
+ 1. Export the prompt, answer evidence, cited URLs, and desired fix from Prompts-GPT.com.
195
+ 2. Run `prompts-gpt orchestrate --mode parallel` when multiple agents should propose competing fixes.
196
+ 3. Run `prompts-gpt orchestrate --mode pipeline` when research, implementation, and review should stay separated.
197
+ 4. Run `prompts-gpt orchestrate --mode eval` or `prompts-gpt sweep --eval --eval-criteria correctness,risk,clarity` when output quality needs a score.
198
+ 5. Run `prompts-gpt diff <run-id>` before sharing the worktree changes.
199
+
200
+ Dry-runs verify command wiring, prompt resolution, evaluator selection, and criteria parsing without launching a provider:
201
+
202
+ ```bash
203
+ npx prompts-gpt orchestrate --mode eval --dry-run --eval-criteria correctness,risk,clarity
204
+ ```
205
+
191
206
  ---
192
207
 
193
208
  ## SDK