Skip to main content

AI Skills with Zeq

This recipe shows how to create, deploy, and execute domain-specific equation skills using the Skills API.

What Is a Skill?

A skill bundles 1–4 operators from the core 42+ spectrum and runs the 7-step wizard protocol automatically. Users enter a natural-language query; the skill selects operators, compiles via the HULYAS Master Equation, and returns a verified result.

Execute a Built-in Skill

curl -X POST https://www.zeq.dev/api/skills/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"skillId": "orbital-mechanics", "query": "ISS orbital period at 408km altitude"}'

Generate a New Skill

curl -X POST https://www.zeq.dev/api/skills/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"description": "Calculate drug half-life given clearance rate and volume of distribution"}'

The AI Skills Generator creates a new skill from your description, selecting appropriate operators and binding physical constants.

Built-in Categories

24+ skills across 7 categories: physics, engineering, earth-science, quantum, computer-science, medical-physics, and awareness.

Live Example

Try the Skills Library app to browse all skills and test them live.

Related

Skills API · Skills Library App · 7-Step Protocol