@rvry/mcp 0.11.3 → 0.12.0
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,9 +74,12 @@ All tools accept:
|
|
|
74
74
|
| `input` | string | Yes | Your question (new session) or analysis (continuation) |
|
|
75
75
|
| `sessionId` | string | No | Session ID for continuing an existing session |
|
|
76
76
|
| `requiresCurrentData` | boolean | No | Set to `true` when the question involves facts, policies, prices, or events that may have changed. Seeds a verification constraint that persists across all rounds. |
|
|
77
|
+
| `skipShimmer` | boolean | No | Set to `true` to skip the self-observation priming phase and go directly to analysis. Default `false`. Not available on `RVRY_meta`. |
|
|
77
78
|
|
|
78
79
|
**When to use `requiresCurrentData`:** Any question about regulations, pricing, legal rulings, market conditions, API specifications, or current events. The engine will require the model to explicitly classify every cited fact as either verified-current or training-data-dependent before concluding.
|
|
79
80
|
|
|
81
|
+
**When to use `skipShimmer`:** If you want to minimize round count and have a well-scoped, specific question, skipping shimmer removes one round of priming. For exploratory or open-ended questions, leave shimmer enabled — the self-observation priming improves cold-start depth.
|
|
82
|
+
|
|
80
83
|
## Slash Commands (Claude Code)
|
|
81
84
|
|
|
82
85
|
When you run `npx --yes --package @rvry/mcp@latest rvry-mcp setup` and select Claude Code, the wizard installs 4 slash commands:
|