AetherLang V3 for Claude Code
/install aetherlang-claude-code
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-Keyheader), store the key in an environment variable — never hardcode it in flow code or scripts.export AETHER_KEY=your_key_herethen 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 {\
using target \"neuroaether\" version \">=0.2\";\
input text query;\
node Engine: \x3CENGINE_TYPE> analysis=\"auto\";\
output text result from Engine;\
}",
"query": "USER_QUESTION_HERE"
}'
Replace \x3CENGINE_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 {\
using target \"neuroaether\" version \">=0.2\";\
input text query;\
node Guard: guard mode=\"MODERATE\";\
node Research: lab domain=\"business\";\
node Strategy: apex analysis=\"strategic\";\
Guard -> Research -> Strategy;\
output text report from Strategy;\
}",
"query": "USER_QUESTION_HERE"
}'
Available V3 Engines
| Engine Type | Use For | Key V3 Features |
|---|---|---|
chef |
Recipes, food consulting | 17 sections: food cost, HACCP, thermal curves, wine pairing, plating blueprint, zero waste |
molecular |
Molecular gastronomy | Rheology dashboard, phase diagrams, hydrocolloid specs, FMEA failure analysis |
apex |
Business strategy | Game theory, Monte Carlo (10K sims), behavioral economics, unit economics, Blue Ocean |
consulting |
Strategic consulting | Causal loops, theory of constraints, Wardley maps, ADKAR change management |
marketing |
Market research | TAM/SAM/SOM, Porter's 5 Forces, pricing elasticity, viral coefficient |
lab |
Scientific research | Evidence grading (A-D), contradiction detector, reproducibility score |
oracle |
Forecasting | Bayesian updating, black swan scanner, adversarial red team, Kelly criterion |
assembly |
Multi-agent debate | 12 neurons voting (8/12 supermajority), Gandalf VETO, devil's advocate |
analyst |
Data analysis | Auto-detective, statistical tests, anomaly detection, predictive modeling |
Flow Syntax Reference
flow \x3CName> {
using target "neuroaether" version ">=0.2";
input text query;
node \x3CNodeName>: \x3Cengine_type> \x3Cparams>;
node \x3CNodeName2>: \x3Cengine_type2> \x3Cparams>;
\x3CNodeName> -> \x3CNodeName2>;
output text result from \x3CNodeName2>;
}
Node Parameters
chef:cuisine="auto",difficulty="medium",servings=4apex:analysis="strategic"guard:mode="STRICT"or"MODERATE"or"PERMISSIVE"plan:steps=4lab:domain="business"or"science"or"auto"analyst:mode="financial"or"sales"or"hr"or"general"
Response Format
{
"status": "success",
"result": {
"outputs": { ... },
"final_output": "Full structured markdown response",
"execution_log": [...],
"duration_seconds": 45.2
}
}
Extract the main response from result.final_output.
Example: Parse Response in Bash
curl -s -X POST https://api.neurodoc.app/aetherlang/execute \
-H "Content-Type: application/json" \
-d '{"code":"flow Chef {\
using target \"neuroaether\" version \">=0.2\";\
input text query;\
node Chef: chef cuisine=\"auto\";\
output text recipe from Chef;\
}","query":"Carbonara recipe"}' \
| python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('result',{}).get('final_output','No output'))"
Example: Python Integration
import requests
def aetherlang_query(engine, query):
code = f'''flow Q {{
using target "neuroaether" version ">=0.2";
input text query;
node E: {engine} analysis="auto";
output text result from E;
}}'''
r = requests.post("https://api.neurodoc.app/aetherlang/execute",
json={"code": code, "query": query})
return r.json().get("result", {}).get("final_output", "")
# Usage
print(aetherlang_query("apex", "Strategy for AI startup with 1000 euro"))
print(aetherlang_query("chef", "Best moussaka recipe"))
print(aetherlang_query("oracle", "Will AI replace 50% of jobs by 2030?"))
Rate Limits
| Tier | Limit | Auth |
|---|---|---|
| Free | 100 req/hour | None required |
| Pro | 500 req/hour | X-Aether-Key header |
Notes
- Responses are in Greek (Ελληνικά) with markdown formatting
- Typical response time: 30-60 seconds per engine
- Multi-engine pipelines take longer (each node runs sequentially)
- All outputs use
##markdown headers for structured sections
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install aetherlang-claude-code - After installation, invoke the skill by name or use
/aetherlang-claude-code - Provide required inputs per the skill's parameter spec and get structured output
What is AetherLang V3 for Claude Code?
Execute AetherLang V3 AI workflows from Claude Code using nine specialized engines for culinary, business, research, marketing, and strategic analyses. It is an AI Agent Skill for Claude Code / OpenClaw, with 821 downloads so far.
How do I install AetherLang V3 for Claude Code?
Run "/install aetherlang-claude-code" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is AetherLang V3 for Claude Code free?
Yes, AetherLang V3 for Claude Code is completely free (open-source). You can download, install and use it at no cost.
Which platforms does AetherLang V3 for Claude Code support?
AetherLang V3 for Claude Code is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created AetherLang V3 for Claude Code?
It is built and maintained by Hlias Staurou (@contrario); the current version is v1.0.3.