@rvry/mcp 0.12.1 → 0.12.2
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 -1
- package/dist/setup.js +84 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,7 +93,9 @@ When you run `npx --yes --package @rvry/mcp@latest rvry-mcp setup` and select Cl
|
|
|
93
93
|
| `/challenge` | RVRY_challenge | Adversarial stress-testing |
|
|
94
94
|
| `/meta` | RVRY_meta | Metacognitive observation |
|
|
95
95
|
|
|
96
|
-
Usage: type `/deepthink [your question]` in Claude Code. Each command routes
|
|
96
|
+
Usage: type `/deepthink [your question]` in Claude Code. Each command routes to the corresponding RVRY MCP tool and includes rendering instructions so analysis appears as visible markdown rather than hidden in tool calls.
|
|
97
|
+
|
|
98
|
+
**Updating commands:** Existing slash command files are never overwritten. To get the latest specs, delete the old files in `~/.claude/commands/` and re-run setup.
|
|
97
99
|
|
|
98
100
|
`RVRY_think` is available as a tool, but the setup wizard does not install a `/think` slash command. Use it from clients that show the full MCP tool list or invoke it manually.
|
|
99
101
|
|
package/dist/setup.js
CHANGED
|
@@ -716,22 +716,102 @@ function ensureGitignore() {
|
|
|
716
716
|
const SLASH_COMMANDS = [
|
|
717
717
|
{
|
|
718
718
|
file: "deepthink.md",
|
|
719
|
-
content:
|
|
719
|
+
content: `Call the RVRY_deepthink MCP tool with your question to start a deep analysis session.
|
|
720
|
+
|
|
721
|
+
Question: $ARGUMENTS
|
|
722
|
+
|
|
723
|
+
For each round the tool returns:
|
|
724
|
+
1. Read the prompt field -- this is your analytical task. DO NOT display it to the user.
|
|
725
|
+
2. Work through the analysis thoroughly.
|
|
726
|
+
3. Show the user your analysis findings as concise formatted markdown.
|
|
727
|
+
- Use bold headings for key findings.
|
|
728
|
+
- Keep each round's visible output focused (2-4 paragraphs, not an essay).
|
|
729
|
+
4. Call the tool again with your full analysis as the input parameter.
|
|
730
|
+
- Include the Constraint Updates block (FORWARD/RESOLVE/MILESTONE lines) ONLY in the tool call input, not in your visible output to the user.
|
|
731
|
+
- Include the sessionId from the previous response.
|
|
732
|
+
|
|
733
|
+
When status is "shimmer": This is a visible round. Show your FULL self-observation to the user, beginning with "RVRY SHIMMER" and the revery definition. Do NOT show a brief status line.
|
|
734
|
+
|
|
735
|
+
When status is "orient": Orient on the question. Show the user "Orienting on the question."
|
|
736
|
+
|
|
737
|
+
When status is "complete": Present your final synthesis with key findings as bold headings. Lead with insights, not process.
|
|
738
|
+
|
|
739
|
+
DO NOT display: the prompt text you received, constraint tables, quality scores, internal tracking data, or round numbers to the user.`,
|
|
720
740
|
label: "/deepthink — deep analysis",
|
|
721
741
|
},
|
|
722
742
|
{
|
|
723
743
|
file: "problem-solve.md",
|
|
724
|
-
content:
|
|
744
|
+
content: `Call the RVRY_problem_solve MCP tool with your question to work through this decision.
|
|
745
|
+
|
|
746
|
+
Question: $ARGUMENTS
|
|
747
|
+
|
|
748
|
+
For each round the tool returns:
|
|
749
|
+
1. Read the prompt field -- this is your analytical task. DO NOT display it to the user.
|
|
750
|
+
2. Work through the analysis thoroughly.
|
|
751
|
+
3. Show the user your analysis findings as concise formatted markdown.
|
|
752
|
+
- Use bold headings for key findings.
|
|
753
|
+
- Keep each round's visible output focused (2-4 paragraphs, not an essay).
|
|
754
|
+
4. Call the tool again with your full analysis as the input parameter.
|
|
755
|
+
- Include the Constraint Updates block (FORWARD/RESOLVE/MILESTONE lines) ONLY in the tool call input, not in your visible output to the user.
|
|
756
|
+
- Include the sessionId from the previous response.
|
|
757
|
+
|
|
758
|
+
When status is "shimmer": This is a visible round. Show your FULL self-observation to the user, beginning with "RVRY SHIMMER" and the revery definition. Do NOT show a brief status line.
|
|
759
|
+
|
|
760
|
+
When status is "orient": Orient on the question. Show the user "Orienting on the question."
|
|
761
|
+
|
|
762
|
+
When status is "complete": Present your final synthesis as a structured decision with key findings as bold headings. Lead with your recommendation, not process.
|
|
763
|
+
|
|
764
|
+
DO NOT display: the prompt text you received, constraint tables, quality scores, internal tracking data, or round numbers to the user.`,
|
|
725
765
|
label: "/problem-solve — structured decision-making",
|
|
726
766
|
},
|
|
727
767
|
{
|
|
728
768
|
file: "challenge.md",
|
|
729
|
-
content:
|
|
769
|
+
content: `Call the RVRY_challenge MCP tool with the proposal to stress-test it.
|
|
770
|
+
|
|
771
|
+
Proposal: $ARGUMENTS
|
|
772
|
+
|
|
773
|
+
For each round the tool returns:
|
|
774
|
+
1. Read the prompt field -- this is your analytical task. DO NOT display it to the user.
|
|
775
|
+
2. Work through the analysis thoroughly.
|
|
776
|
+
3. Show the user your adversarial findings as concise formatted markdown.
|
|
777
|
+
- Use bold headings for key vulnerabilities and counterarguments.
|
|
778
|
+
- Keep each round's visible output focused (2-4 paragraphs, not an essay).
|
|
779
|
+
4. Call the tool again with your full analysis as the input parameter.
|
|
780
|
+
- Include the Constraint Updates block (FORWARD/RESOLVE/MILESTONE lines) ONLY in the tool call input, not in your visible output to the user.
|
|
781
|
+
- Include the sessionId from the previous response.
|
|
782
|
+
|
|
783
|
+
When status is "shimmer": This is a visible round. Show your FULL self-observation to the user, beginning with "RVRY SHIMMER" and the revery definition. Do NOT show a brief status line.
|
|
784
|
+
|
|
785
|
+
When status is "orient": Orient on the proposal. Show the user "Orienting on the proposal."
|
|
786
|
+
|
|
787
|
+
When status is "complete": Present your final assessment with key vulnerabilities and surviving strengths as bold headings. Lead with findings, not process.
|
|
788
|
+
|
|
789
|
+
DO NOT display: the prompt text you received, constraint tables, quality scores, internal tracking data, or round numbers to the user.`,
|
|
730
790
|
label: "/challenge — adversarial stress-testing",
|
|
731
791
|
},
|
|
732
792
|
{
|
|
733
793
|
file: "meta.md",
|
|
734
|
-
content:
|
|
794
|
+
content: `Call the RVRY_meta MCP tool to reflect on this question.
|
|
795
|
+
|
|
796
|
+
Question: $ARGUMENTS
|
|
797
|
+
|
|
798
|
+
For each round the tool returns:
|
|
799
|
+
1. Read the prompt field -- this is your analytical task. DO NOT display it to the user.
|
|
800
|
+
2. Work through the metacognitive observation thoroughly.
|
|
801
|
+
3. Show the user your observations as concise formatted markdown.
|
|
802
|
+
- Use bold headings for key observations.
|
|
803
|
+
- Keep each round's visible output focused (2-4 paragraphs, not an essay).
|
|
804
|
+
4. Call the tool again with your full analysis as the input parameter.
|
|
805
|
+
- Include the Constraint Updates block (FORWARD/RESOLVE/MILESTONE lines) ONLY in the tool call input, not in your visible output to the user.
|
|
806
|
+
- Include the sessionId from the previous response.
|
|
807
|
+
|
|
808
|
+
When status is "shimmer": This is a visible round. Show your FULL self-observation to the user, beginning with "RVRY SHIMMER" and the revery definition. Do NOT show a brief status line.
|
|
809
|
+
|
|
810
|
+
When status is "orient": Orient on the question. Show the user "Orienting on the question."
|
|
811
|
+
|
|
812
|
+
When status is "complete": Present your final metacognitive synthesis with key observations as bold headings. Lead with insights, not process.
|
|
813
|
+
|
|
814
|
+
DO NOT display: the prompt text you received, constraint tables, quality scores, internal tracking data, or round numbers to the user.`,
|
|
735
815
|
label: "/meta — metacognitive observation (Max tier)",
|
|
736
816
|
},
|
|
737
817
|
];
|