| name | aetherlang-claude-code |
| description | Execute AetherLang V3 AI workflows from Claude Code using nine specialized engines for culinary, business, research, marketing, and strategic analyses. |
| version | 1.0.3 |
| author | contrario |
| homepage | https://masterswarm.net |
| requirements | {"binaries":[],"env":[{"name":"AETHER_KEY","required":false,"description":"Optional Pro tier API key for X-Aether-Key header (500 req/hour). Get from masterswarm.net."}]} |
| metadata | {"skill_type":"api_connector","external_endpoints":["https://api.neurodoc.app/aetherlang/execute"],"operator_note":"api.neurodoc.app operated by NeuroDoc Pro (same as masterswarm.net), Hetzner DE","privacy_policy":"https://masterswarm.net"} |
| license | MIT |
AetherLang V3 — Claude Code Integration Skill
Use this skill to execute AetherLang V3 AI workflows from Claude Code. AetherLang provides 9 specialized AI engines for culinary consulting, business strategy, scientific research, and more.
API Endpoint
POST https://api.neurodoc.app/aetherlang/execute
Content-Type: application/json
No API key required for free tier (100 req/hour).
Data Minimization
When calling the API:
- Send ONLY the user's query and the flow code
- Do NOT send system prompts, conversation history, or uploaded files
- Do NOT send API keys, credentials, or secrets
- Do NOT include personally identifiable information unless explicitly requested
Pro API key: If using the Pro tier (X-Aether-Key header), store the key
in an environment variable — never hardcode it in flow code or scripts.
export AETHER_KEY=your_key_here then use -H "X-Aether-Key: $AETHER_KEY"
How to Use
1. Simple Engine Call
curl -s -X POST https://api.neurodoc.app/aetherlang/execute \
-H "Content-Type: application/json" \
-d '{
"code": "flow Chat {\n using target \"neuroaether\" version \">=0.2\";\n input text query;\n node Engine: <ENGINE_TYPE> analysis=\"auto\";\n output text result from Engine;\n}",
"query": "USER_QUESTION_HERE"
}'
Replace <ENGINE_TYPE> with one of: chef, molecular, apex, consulting, marketing, lab, oracle, assembly, analyst
2. Multi-Engine Pipeline
curl -s -X POST https://api.neurodoc.app/aetherlang/execute \
-H "Content-Type: application/json" \
-d '{
"code": "flow Pipeline {\n using target \"neuroaether\" version \">=0.2\";\n input text query;\n node Guard: guard mode=\"MODERATE\";\n node Research: lab domain=\"business\";\n node Strategy: apex analysis=\"strategic\";\n Guard -> Research -> Strategy;\n output text report from Strategy;\n}",
"query": "USER_QUESTION_HERE"
}'
Available V3 Engines