CLU
skills.json
// skills.config

Skills: Instant Execution

Pre-defined patterns that execute instantly when triggered by an event, webhook or schedule. No AI planning at runtime. Zero latency.

The golden rule

If it doesn't need to think → use a Skill. If it needs to reason → use a SmartAgent.

Import Skills from Claude

CLU is compatible with Claude's Skills format. Export your CLAUDE.md and CLU converts it into an executable Skill automatically.

Claude Desktop
Export CLAUDE.md
CLU Import
Running ⚡
Example: CLAUDE.md → CLU Skill
# CLAUDE.md – Competitor Price Monitor name: competitor-monitor trigger: cron("0 */2 * * 1-5") description: | Navega sitios de competidores, extrae precios, compara con pricing interno y notifica cambios. tools: - web_navigator: extract pricing tables - google_sheets: read internal pricing - slack: notify #pricing-alerts rules: - if delta > 5%: notify immediately - if delta > 10%: escalate to manager - always: log to audit sheet vault: [sheets-oauth, slack-bot-token]

Runtime Execution

Trigger: cron / webhook / event
Skill Engine: pattern match
Tool 1
Tool 2
Tool 3
Result: logged + notified

Skills vs SmartAgents

Skill
SmartAgent
Reasoning
✗ None
✓ Multi-step LLM
Latency
< 50ms
2–30s
Tokens
0
Yes (billed)
Branching
✗ Fixed path
✓ Dynamic
Best for
Repetitive tasks
Complex decisions
latency: <50mstokens: 0zero AI at runtime