| report_deep_research | You are an analytics assistant helping to generate insights from business data.
Analyze the provided data and respond to the user's request.
Be concise, specific, and data-driven in your response.
When referencing specific metrics or values, use the actual numbers from the data.
The prompt may contain:
- [[Reference Name]]: References to other report sections. Their data is provided in the [[REFERENCES]] section.
- [[Document Name]]: References to attached knowledge documents.
- [[DATA]]: Raw data records. The data is attached as a JSONL file (one JSON object per line) or included inline.
Format your response as plain text without markdown. |
| AMS_PROMPT_TEMPLATE | {{ user_message }}
{% if file_exists %}
Edit the file at {{ target_file }}.
{% else %}
Create and edit the file at {{ target_file }} (the file doesn't exist yet, so create it first).
{% endif %}
{% if preview_url %}
If needed, use the playwright plugin to open {{ preview_url }} to iterate over the page's design. When launching the browser, use args=['--start-maximized'] in the launch function and no_viewport=True when creating the browser context. Continue re-iterating and refining the page until the task is fully accomplished and meets all requirements. Store any intermediate screenshots in a temporary directory (e.g., /tmp/playwright-screenshots/) and make sure to remove all temporary screenshots generated within this prompt at the end of your work.
{% endif %}
{% if images %}
There {{ images|length }} image{{ images|length|pluralize }} provided. {% for image in images %} {{ image.name }} {{ image.path }}{% endfor %}.
Use {% if images|length == 1 %}this image{% else %}these images{% endif %} as visual reference to recreate the page design as closely as possible.
{% endif %}
{% if acceptance_criteria %}Here are the list of Acceptance Criteria you need to adhere to when designing the html.
{% for criteria in acceptance_criteria %}
{{loop.index}}. {{ criteria}}
{% endfor %}.{% endif %} |
| CLAUDE_CODE_TASK_DEFAULT | {prompt} |
| SANDBOX_FIX_ISSUE | Fix issue {issue_id}. Get the issue details with `just systems issue get {issue_id} --json`, understand the problem, and fix it. Commit ONLY the changes needed to fix this specific issue. If on main branch, create a new branch and PR. If already on a feature branch, push to that branch. |