- Planner uses cursor-agent ask mode (not plan mode) for stdout output
- llmExtract: structured metadata extraction via DashScope qwen-plus + tool_choice
- Replaces fragile regex name parsing with reliable LLM tool call
- Removed unknown-sense artifact from failed generation
小橘 🍊(NEKO Team)
34 lines
594 B
YAML
34 lines
594 B
YAML
# nerve.yaml — Nerve workspace configuration
|
|
senses:
|
|
cpu-usage:
|
|
group: system
|
|
throttle: 5s
|
|
timeout: 10s
|
|
grace_period: null
|
|
linux-system-health:
|
|
group: system
|
|
throttle: 10s
|
|
timeout: 15s
|
|
grace_period: null
|
|
unknown-sense:
|
|
group: system
|
|
throttle: 10s
|
|
timeout: 15s
|
|
grace_period: null
|
|
|
|
workflows:
|
|
sense-generator:
|
|
concurrency: 1
|
|
overflow: drop
|
|
|
|
reflexes:
|
|
- kind: sense
|
|
sense: cpu-usage
|
|
interval: 10s
|
|
- kind: sense
|
|
sense: linux-system-health
|
|
interval: 30s
|
|
- kind: sense
|
|
sense: unknown-sense
|
|
interval: 60s
|