Plugins, skills, and function definitions for AI coding agents to build with the hellojade.ai Request API.
This repo gives Claude Code, Gemini, Codex/GPT, and any LLM the tools they need to submit, validate, and manage service requests through the hellojade.ai platform — no boilerplate required.
1. Get an API key
Sign in at hellojade.ai and copy your API key from the dashboard.
2. Pick your agent
| Agent | Directory | Format |
|---|---|---|
| Claude Code | claude/ |
CLAUDE.md skill + MCP tool |
| Gemini | gemini/ |
Function calling + system prompt |
| OpenAI / Codex | codex/ |
Tool definition + system prompt |
| Any LLM | general/ |
OpenAPI spec, llms.txt, prompt template |
3. Submit your first request
curl -X POST https://api.hellojade.ai/v1/submissions \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d @examples/submit-project-start.jsonExpected response (202 Accepted):
{"id": "550e8400-e29b-41d4-a716-446655440000", "status": "received"}- API Reference — complete field reference, enums, validation rules
- Claude Code integration — CLAUDE.md skill,
/jade-submitslash command, MCP tool - Gemini integration — function calling definition, system prompt
- OpenAI / Codex integration — tool definition, system prompt
- General / any LLM — OpenAPI 3.1 spec, llms.txt, copy-paste prompt
- Examples — complete valid payloads for every request type
- Contributing
POST /v1/submissions accepts a contact, a property, and a service request — and returns a submission ID.
See API_REFERENCE.md for every field, enum, and validation rule.