Extropy OpenClaw Plugin & Skill | ClawHub
Looking to integrate Extropy into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.
What this skill does
Execution-first operator for Extropy: run pipelines, diagnose failures, and deliver evidence-backed simulation analysis using current CLI contracts.
Install
openclaw skills install @deveshparagiri/extropynpx clawhub@latest install extropyFull SKILL.md
Open original| name | description | homepage |
|---|---|---|
| extropy | Execution-first operator for Extropy: run pipelines, diagnose failures, and deliver evidence-backed simulation analysis using current CLI contracts. | https://github.com/exaforge/extropy |
SKILL.md content below is scrollable.
Extropy Operator
Run experiments end to end, with strict quality gates and reproducible commands.
Operating Rules
- Execute commands; do not only describe them.
- Validate upstream artifacts before expensive downstream stages.
- Use explicit evidence (paths, SQL, metrics) for every conclusion.
- Keep assumptions visible and minimal.
- Escalate after repeated failure of the same gate.
Runtime Dependencies and Credential Scope
- Required binary:
extropymust be installed and onPATH. - Config file read:
~/.config/extropy/config.json. - Credentials expected: provider API keys from env vars (
OPENAI_API_KEY,ANTHROPIC_API_KEY,OPENROUTER_API_KEY,DEEPSEEK_API_KEY,AZURE_API_KEY/AZURE_OPENAI_API_KEY). - Azure endpoint vars:
AZURE_ENDPOINTorAZURE_OPENAI_ENDPOINTwhen using Azure providers. - Safety boundary: only access credentials/config needed to execute extropy commands for the requested study/scenario, do not inspect raw
.envvalues, and avoid reading unrelated files.
Canonical Pipeline
extropy spec -> extropy scenario -> extropy persona -> extropy sample -> extropy network -> extropy simulate -> extropy results
Quick Runbook
STUDY=runs/my-study
SCENARIO=ai-shock
# 1) Study + base population
extropy spec "5000 US working-age adults" -o "$STUDY" --use-defaults
cd "$STUDY"
extropy config set cli.mode agent
# 2) Scenario + persona
extropy scenario "AI systems outperform most knowledge workers in 6 months" -o "$SCENARIO" -y
extropy persona -s "$SCENARIO" -y
# 3) Sample + network
extropy sample -s "$SCENARIO" -n 5000 --seed 42 --strict-gates
extropy network -s "$SCENARIO" --seed 42 --quality-profile strict --validate
# 4) Simulate
extropy simulate -s "$SCENARIO" --seed 42 --fidelity high --rpm-override 1000
# 5) Results + raw extraction
extropy results -s "$SCENARIO" summary
extropy results -s "$SCENARIO" timeline
extropy query states --to states.jsonl
Required Quality Gates
spec:extropy validate population.vN.yamlpasses.scenario:extropy validate scenario/<name>/scenario.vN.yamlpasses.persona: persona file exists and validates.sample: count correct, coherence gates pass, no critical impossibles.network: no isolated catastrophes, topology metrics in acceptable range.simulate: run completes or checkpoints cleanly with recoverable state.
Recommended Command Surface
- Build:
spec,scenario,persona,sample,network,simulate - Inspect:
results summary|timeline|segment|agent - Deep checks:
query summary|network|network-status|sql|agents|edges|states - Agent QA:
chat list,chat ask
Module Map
OPERATIONS.md: stage-by-stage execution and rerun strategy.TROUBLESHOOTING.md: failure diagnosis and escalation policy.ANALYSIS.md: post-run metrics, SQL patterns, reporting structure.SCENARIOS.md: scenario/pipeline design patterns and limits.REPORT_TEMPLATE.md: standardized delivery format.