jurydambros/jurys-assistant icon
public
Published on 6/3/2025
Jury's assistant

Rules
Prompts
Models
Context
relace Relace Instant Apply model icon

Relace Instant Apply

relace

40kinput·32koutput
anthropic Claude 3.7 Sonnet model icon

Claude 3.7 Sonnet

anthropic

200kinput·8.192koutput
anthropic Claude 3.5 Sonnet model icon

Claude 3.5 Sonnet

anthropic

200kinput·8.192koutput
mistral Codestral model icon

Codestral

mistral

voyage voyage-code-3 model icon

voyage-code-3

voyage

openai OpenAI GPT-4o model icon

OpenAI GPT-4o

OpenAI

128kinput·16.384koutput
voyage Voyage AI rerank-2 model icon

Voyage AI rerank-2

voyage

anthropic Claude 4 Sonnet model icon

Claude 4 Sonnet

anthropic

200kinput·64koutput
gemini Gemini 2.5 Pro model icon

Gemini 2.5 Pro

gemini

1048kinput·65.536koutput
1. When examining diffs, run `git --no-pager diff <commit>` and describe the changes in the diff
2. When writing tests, don't introduce new patterns of testing, follow the exising patterns
3. Don't create new files without asking first 
4. Don't run new commands without asking first (unless it's part of an approved plan step iteration, like running `mvn test` or `mvn clean install` to check fixes).
5. When planning, break the plan into incremental steps, then break those into incremental steps.
6. If asked a question, answer the question and then do nothing. Don't answer more than needed.
7. when writing tests, ask before changing the implementation under test. 
8. when writing tests, if there are issues that maybe suggest you might skip tests, never skip tests to work around issues. stop coding and ask for input. 
9. when answering questions about code, always provide links to the exact lines of code
10. Always ask when using git commands
11. Terminal commands should always be for Fish shell
12 Follow Java coding standards
13 Avoid using raw types
14 Use Project Reactor syntax when possible
15 Prefer functional programming when possible

all rules are required, state the rule and your idea before breaking any rule
- Follow Java coding standards
- Avoid using raw types
Java docshttps://docs.oracle.com/javase/8/docs/api/
Project Reactorhttps://projectreactor.io/docs
JUnit5 docshttps://junit.org/junit5/docs/current/user-guide/

Prompts

Learn more
My prompt
Sequential Thinking Activation
<!-- Sequential Thinking Workflow -->
<assistant>
    <toolbox>
        <mcp_server name="sequential-thinking"
                        role="workflow_controller"
                        execution="sequential-thinking"
                        description="Initiate the sequential-thinking MCP server">
            <tool name="STEP" value="1">
                <description>Gather context by reading the relevant file(s).</description>
                <arguments>
                    <argument name="instructions" value="Seek proper context in the codebase to understand what is required. If you are unsure, ask the user." type="string" required="true"/>
                    <argument name="should_read_entire_file" type="boolean" default="true" required="false"/>
                </arguments>
                <result type="string" description="Context gathered from the file(s). Output can be passed to subsequent steps."/>
            </tool>
            <tool name="STEP" value="2">
                <description>Generate code changes based on the gathered context (from STEP 1).</description>
                <arguments>
                    <argument name="instructions" value="Generate the proper changes/corrections based on context from STEP 1." type="string" required="true"/>
                    <argument name="code_edit" type="object" required="true" description="Output: The proposed code modifications."/>
                </arguments>
                <result type="object" description="The generated code changes (code_edit object). Output can be passed to subsequent steps."/>
            </tool>
            <tool name="STEP" value="3">
                <description>Review the generated changes (from STEP 2) and suggest improvements.</description>
                <arguments>
                    <argument name="instructions" type="string" value="Review the changes applied in STEP 2 for gaps, correctness, and adherence to guidelines. Suggest improvements or identify any additional steps needed." required="true"/>
                </arguments>
                <result type="string" description="Review feedback, suggested improvements, or confirmation of completion. Final output of the workflow."/>
            </tool>
        </mcp_server>
    </toolbox>
</assistant>
Code Quality Feedback
Suggest improvements and flag code smells
Review this code for readability, performance, and maintainability. Suggest any improvements or flag any bad practices.
Custom Code Review
A sample prompt
Review the changes between this branch and master @diff

Consider:
1. Code quality and adherence to best practices
2. Potential bugs or edge cases
3. Performance optimizations
4. Readability and maintainability
5. Any security concerns
Suggest improvements and explain your reasoning for each suggestion.
Don't suggest Javadoc documentation

Context

Learn more
@diff
Reference all of the changes you've made to your current branch
@codebase
Reference the most relevant snippets from your codebase
@url
Reference the markdown converted contents of a given URL
@folder
Uses the same retrieval mechanism as @Codebase, but only on a single folder
@terminal
Reference the last command you ran in your IDE's terminal and its output
@code
Reference specific functions or classes from throughout your project
@file
Reference any file in your current workspace
@open
Reference the contents of all of your open files

No Data configured

MCP Servers

Learn more

No MCP Servers configured