Package Exports
- @super-dev/openclaw-plugin
- @super-dev/openclaw-plugin/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@super-dev/openclaw-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@super-dev/openclaw-plugin
Super Dev pipeline governance plugin for OpenClaw -- research-first, commercial-grade AI coding delivery.
Installation
# 1. Install super-dev CLI (required)
pip install super-dev
# 2. Install the OpenClaw plugin
openclaw plugins install @super-dev/openclaw-pluginUsage
In the OpenClaw Agent chat panel, type:
super-dev: Build an online education platform with Next.js and Node.jsor
/super-dev Build an online education platformThe agent will activate the Super Dev pipeline and walk through: research -> docs -> spec -> frontend -> backend -> quality -> delivery.
Registered Tools (20)
| Tool | Purpose |
|---|---|
super_dev_pipeline |
Run the full 9-stage pipeline from requirement description |
super_dev_init |
Initialize Super Dev in an existing project (creates super-dev.yaml) |
super_dev_status |
Check pipeline status, completed phases, and blocking gates |
super_dev_quality |
Run quality check by type: prd, architecture, ui, code, all |
super_dev_spec |
Manage specs: list, show, propose, scaffold, validate, archive |
super_dev_config |
View or modify project config: list, get, set |
super_dev_review |
Run review or confirm a gate: docs, ui, architecture, quality |
super_dev_release |
Check release readiness or generate proof-pack |
super_dev_expert |
Consult an expert: PM, ARCHITECT, UI, UX, SECURITY, CODE, DBA, QA, DEVOPS, RCA |
super_dev_deploy |
Generate CI/CD config, Dockerfile, or release rehearsal |
super_dev_analyze |
Analyze project structure, tech stack, and dependencies |
super_dev_doctor |
Run health check and diagnostics for host integration |
super_dev_governance |
Governance management: status, rules, ADR, knowledge report, templates |
super_dev_task |
Manage spec tasks: list, run, check completion status |
super_dev_fix |
Start lightweight bugfix pipeline (skip research/docs) |
super_dev_confirm |
Quick confirm a gate: docs, ui, architecture, quality, preview |
super_dev_jump |
Jump to a specific pipeline stage by name or number |
super_dev_product_audit |
Run comprehensive product audit: feature gaps, journey, credibility |
super_dev_metrics |
View pipeline metrics, quality trends, and DORA indicators |
super_dev_run |
Run any super-dev CLI command directly (optional, fallback) |
Configuration
In your OpenClaw config (~/.openclaw/openclaw.json):
{
"plugins": {
"entries": {
"super-dev": {
"enabled": true,
"config": {
"projectDir": "",
"superDevBin": "super-dev",
"qualityThreshold": 80,
"timeout": 300000,
"language": "zh"
}
}
}
}
}| Option | Default | Description |
|---|---|---|
projectDir |
"" (cwd) |
Project working directory |
superDevBin |
"super-dev" |
Path to super-dev CLI |
qualityThreshold |
80 |
Quality gate threshold (0-100) |
timeout |
300000 |
CLI command timeout in ms |
language |
"zh" |
Output language: zh or en |
How It Works
OpenClaw Agent -> Plugin (TypeScript) -> child_process.execFile -> super-dev (Python CLI)The plugin registers 20 tools that bridge OpenClaw to the super-dev Python CLI via subprocess. The built-in SKILL.md teaches the agent the complete pipeline protocol including:
- 9 pipeline stages with per-stage execution guidance
- 2 mandatory confirmation gates (DOC_CONFIRM_GATE + PREVIEW_CONFIRM_GATE)
- UI/architecture/quality rework protocols
- Resume/status/jump flow control
- First-response contract matching Claude Code experience
Requirements
- Node.js >= 18
- Python >= 3.10
super-devCLI installed (pip install super-dev)- OpenClaw >= 2026.1.0
License
MIT