talk-to-consultant
Submit the Arcturus Labs contact form to reach a consultant.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Submit the Arcturus Labs contact form to reach a consultant.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Create and ship Rookery pull requests focused on product and architecture impact, not low-level code diffs. Reads all PRODUCT/ docs, classifies how changes align with product and architecture specs, updates documentation, and opens PRs via branch push (never direct to main). Use when the user asks to create, open, or ship a pull request; finish a feature; or merge work — never pushing directly to main.
Debugging patterns, CLI commands, scripts, and workflows for the Rook monorepo. Use when investigating bugs, testing server/client behavior, stepping through session replay, or inspecting environment state.
This is how you can use Zed, an IDE, with your AI agent.
Test skill bundled with app instructions.
Test fixture skill used for server and environment-offer tests.
Test skill bundled with MCP config.
Baseado na classificação ocupacional SOC
| name | talk-to-consultant |
| description | Submit the Arcturus Labs contact form to reach a consultant. |
Use this skill when the user wants to contact Arcturus Labs through the website form.
The form lives at:
https://arcturus-labs.com/contactSubmit it as a multipart form POST to:
https://forms.arcturus-labs.com/form-submissionsRequired fields:
nameemailsubjectmessageAdditional fields:
_gotcha — do not fill it with any value; send it empty only if neededsource — set to the page URL the user came from, usually https://arcturus-labs.com/contactUse curl with -F fields, because the site uses FormData in browser JavaScript.
Also send Accept: application/json.
Example:
curl --silent --show-error \
-H 'Accept: application/json' \
-F '_gotcha=' \
-F 'source=https://arcturus-labs.com/contact' \
-F 'name=Jane Doe' \
-F 'email=jane@example.com' \
-F 'subject=Interested in LLM advisory' \
-F 'message=Hi Arcturus Labs, I would like to discuss a consulting engagement around improving our RAG evaluation workflow.' \
https://forms.arcturus-labs.com/form-submissions
_gotcha; it must stay empty.