super-dev
WorkflowFreeEngineering workflow layer for AI coding tools with specs, review, quality gates, and traceability.为 AI 编程工具提供工程化流程、质量门禁与可追溯能力。
Capabilities13 decomposed
8-stage spec-driven development pipeline with mandatory quality gates
Medium confidenceOrchestrates a linear 8-stage workflow (Documentation → Spec → Red Team Review → Quality Gate → Code Review Guide → AI Prompt → CI/CD → Migration) using a WorkflowEngine that enforces a mandatory 80+ quality score threshold at Stage 4 before proceeding to implementation stages. Each stage generates artifacts that feed into the next, creating an auditable chain of custody from requirements to production-ready code. The pipeline uses scenario detection and domain-aware context to adapt generation strategies based on project type and tech stack.
Implements a mandatory quality gate (Stage 4) with 80+ score threshold that blocks progression to implementation stages, combined with a red team review stage (Stage 3) that proactively identifies risks before code generation — this two-layer quality enforcement is distinct from tools that generate code first and review later
Unlike Cursor or Claude Code which generate code directly from prompts, Super Dev enforces spec-first development with mandatory quality gates and red team review, reducing implementation rework and ensuring auditable decision trails
multi-document generation system with domain and tech-stack awareness
Medium confidenceThe DocumentGenerator class produces three categories of human-readable artifacts (PRD, Architecture, UI/UX) by leveraging domain knowledge (6 business domains × 4 tech platforms × common patterns) and project analysis results. Generation is context-aware: it detects project type (e.g., SaaS, mobile app, API service) and tech stack (e.g., React + Node.js + PostgreSQL) and adapts templates and content accordingly. Uses Claude to synthesize requirements into structured documents with sections for acceptance criteria, non-functional requirements, and architectural constraints.
Combines domain-aware generation (6 business domains × 4 tech platforms) with project analysis to produce tech-stack-specific documentation, rather than generic templates — e.g., generates different architecture docs for React+Node vs. Django+PostgreSQL
Produces domain and tech-stack-aware documentation that reflects project context, whereas generic doc generators (Notion templates, ChatGPT) produce one-size-fits-all output without architectural awareness
code review guide generation with architectural compliance checks
Medium confidenceStage 5 of the pipeline that generates detailed code review guidelines and checklists specific to the project's architecture, tech stack, and quality standards. The guide includes acceptance criteria from specs, architectural compliance checks (e.g., microservices isolation, API contract validation), performance benchmarks, security requirements, and testing expectations. Formatted as a structured document that human reviewers or AI tools can follow during code review, with specific checks tied to the generated specifications and architecture documentation.
Generates spec-aligned code review guidelines with architectural compliance checks tied to generated specifications, rather than generic review templates
Produces specification-aligned code review guidelines with architectural compliance checks, whereas generic code review tools (Gerrit, GitHub) provide generic frameworks without spec-driven context
dual-mode architecture supporting cli tool and claude code agent skills
Medium confidenceSuper Dev operates in two distinct modes that share core engines: (1) CLI tool for standalone artifact generation (specs, docs, prompts, CI/CD, migrations), and (2) Agent Skills for integration with Claude Code and other AI IDEs via OpenClaw/MCP protocols. The dual architecture enables both batch processing workflows (CLI) and interactive development workflows (agent skills). Both modes use the same underlying components (DocumentGenerator, ProjectAnalyzer, QualityGateChecker, etc.) but expose different interfaces and integration points.
Implements a dual-mode architecture where CLI tool and Claude Code agent skills share the same core engines (DocumentGenerator, QualityGateChecker, etc.), enabling consistent quality standards and reusable components across batch and interactive workflows
Provides both CLI and IDE integration with shared core engines, whereas most tools focus on one interface (CLI or IDE) and require separate implementations
workflow context and enforcement system with memory and state management
Medium confidenceA WorkflowContext system that maintains state across the 8-stage pipeline, tracking artifacts, quality scores, approvals, and decisions at each stage. Implements an enforcement layer that ensures mandatory quality gates are met before stage progression and prevents skipping stages. Uses a memory system to persist workflow state (local or cloud-based) and enable resumption of interrupted workflows. Provides audit trails of all decisions, approvals, and quality checks for compliance and traceability.
Implements a stateful workflow context with mandatory enforcement of quality gates and audit trail tracking across the 8-stage pipeline, enabling resumption and compliance tracking — most tools are stateless or provide only basic logging
Provides stateful workflow management with mandatory quality gate enforcement and audit trails, whereas most tools are stateless and require external workflow orchestration (Jenkins, Airflow)
spec-driven development (sdd) workflow with delta specifications and change lifecycle tracking
Medium confidenceImplements a spec-first development model where specifications are generated before code, and changes are tracked as delta specifications rather than code diffs. The SDD workflow manages a directory structure that separates specs, designs, and code artifacts, and tracks the lifecycle of each change (proposed → reviewed → approved → implemented). Uses OpenSpec format (machine-readable specification standard) to enable AI tools to consume specs directly. Supports incremental updates via delta specifications that describe only what changed, reducing context bloat for iterative development.
Tracks changes as delta specifications (spec-level diffs) rather than code diffs, enabling spec-first change management and reducing context for iterative development — most tools track code changes, not specification changes
Enables spec-first development with delta specifications for incremental changes, whereas traditional workflows (Git-based) track code changes after the fact, losing specification-level intent
design intelligence engine with bm25+ search and design system generation
Medium confidenceA design asset repository system that indexes design patterns, components, and tokens using BM25+ full-text search, enabling semantic retrieval of relevant design assets for new features. The engine generates design systems and design tokens (color palettes, typography, spacing scales) based on project context and tech stack. Uses a Design Asset Repository to store and retrieve design patterns, and a Design System Generator to synthesize tokens and component specifications from project analysis and domain knowledge.
Implements BM25+ full-text search over design assets combined with design token generation, enabling semantic retrieval and synthesis of design specifications — most design tools focus on visual editing, not specification generation
Provides semantic search over design assets and auto-generates design tokens and specifications, whereas design tools (Figma, Sketch) focus on visual design and require manual specification extraction
expert system with persona-based knowledge base and agent skills integration
Medium confidenceAn expert system that models domain expertise through expert personas (e.g., Backend Architect, Frontend Engineer, QA Lead) with associated knowledge bases and skills. Each persona has specialized knowledge for their domain and can be invoked as an agent skill in Claude Code or other AI IDEs. The system integrates with agent skill frameworks (OpenClaw, MCP) to expose expert personas as callable functions that AI tools can invoke during development. Uses a knowledge base per persona to provide context-specific guidance and best practices.
Models domain expertise as callable agent personas that integrate with Claude Code and other AI IDEs via OpenClaw/MCP, enabling AI tools to consult expert knowledge during development — most tools embed expertise as static rules, not interactive personas
Provides interactive expert personas as agent skills that AI tools can invoke, whereas linters and style guides are passive and require manual consultation
quality assurance system with scenario detection and multi-dimensional quality checks
Medium confidenceA QualityGateChecker system that evaluates generated artifacts against 80+ quality dimensions (code quality, architectural compliance, security, performance, testability, etc.) and produces a composite quality score. Uses scenario detection to identify project-specific quality concerns (e.g., high-concurrency systems require performance checks, healthcare projects require compliance checks) and adapts quality checks accordingly. Enforces a mandatory 80+ score threshold at Stage 4 before proceeding to implementation stages, with detailed feedback on failing checks to guide remediation.
Combines multi-dimensional quality checks (80+ dimensions) with scenario detection to adapt quality standards based on project type and risk profile, then enforces a mandatory quality gate threshold before implementation — most tools provide post-hoc quality feedback, not pre-implementation gates
Enforces quality gates with scenario-aware checks before code generation, whereas linters and code review tools operate on already-generated code and cannot prevent low-quality generation
project analyzer with tech stack detection and project type classification
Medium confidenceA ProjectAnalyzer component that inspects existing codebases to automatically detect tech stack (languages, frameworks, databases, deployment platforms) and classify project type (SaaS, mobile app, API service, monolith, microservices, etc.). Uses pattern matching on file structures, dependency files (package.json, requirements.txt, pom.xml, etc.), and code samples to infer tech stack. Feeds analysis results to downstream components (DocumentGenerator, QualityGateChecker, DesignEngine) to enable context-aware generation and quality checks.
Automatically detects tech stack and project type from codebase inspection using pattern matching on file structures and dependencies, feeding results to downstream components for context-aware generation — most tools require manual tech stack configuration
Eliminates manual tech stack configuration through automatic detection, enabling context-aware generation without user input, whereas most tools require explicit configuration or produce generic output
ai prompt generation with platform-specific formatting for 15+ ai tools
Medium confidenceGenerates AI-ready prompts (Stage 6 of pipeline) formatted specifically for 15+ AI coding platforms (Claude Code, Cursor, Windsurf, Aider, ChatGPT, GitHub Copilot, etc.) from specifications and documentation. Each platform has a distinct prompt format and capability set; the generator adapts prompt structure, context injection, and instruction style to match each platform's strengths. Produces prompts that include specs, architecture docs, code review guidelines, and expert persona knowledge, enabling AI tools to implement features with full context and quality standards.
Generates platform-specific prompts for 15+ AI tools with format adaptation (Claude Code artifacts, Cursor context injection, etc.) rather than generic prompts, enabling each tool to leverage its unique capabilities
Produces platform-optimized prompts that leverage each tool's strengths (e.g., Claude Code artifacts, Cursor multi-file context), whereas generic prompting tools produce one-size-fits-all output
ci/cd configuration generation with orm type detection and migration support
Medium confidenceGenerates CI/CD pipeline configurations (GitHub Actions, GitLab CI, etc.) and database migration scripts based on project analysis and detected ORM type (SQLAlchemy, Django ORM, Sequelize, etc.). The CI/CD Generator produces workflow files that implement quality gates, automated testing, and deployment stages aligned with the 8-stage pipeline. The Migration Generator detects ORM patterns and generates migration scripts for schema changes, with support for common ORMs and databases. Integrates with Stage 7 (CI/CD Configuration) and Stage 8 (Database Migration) of the pipeline.
Combines CI/CD generation with ORM-aware database migration generation, producing both workflow files and migration scripts from specifications — most tools generate one or the other, not both
Generates both CI/CD pipelines and database migrations from specs with ORM awareness, whereas infrastructure tools (Terraform, CloudFormation) focus on cloud resources and require manual migration scripting
red team review stage with risk identification and mitigation guidance
Medium confidenceStage 3 of the pipeline that performs adversarial review of generated specifications and designs to identify potential risks, security vulnerabilities, performance bottlenecks, and architectural issues before implementation. Uses expert personas (Security Architect, Performance Engineer, etc.) to evaluate specs from multiple perspectives and generate detailed risk reports with mitigation recommendations. Feeds risk findings into Stage 4 (Quality Gate) to inform quality scoring and may trigger spec revisions before proceeding to implementation stages.
Performs adversarial review of specifications before code generation using expert personas, identifying risks and providing mitigation guidance — most tools perform security review on code after generation, not on specs before implementation
Identifies architectural and security risks at the specification stage before code generation, enabling early mitigation, whereas SAST tools and code review operate on already-generated code
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with super-dev, ranked by overlap. Discovered automatically through the match graph.
pilot-shell
Make Claude Code production-ready — spec-driven plans, enforced quality gates, persistent knowledge
English Compiler
Converting markdown specs into functional code
Codegen
Solve tickets, write tests, level up your workflow
pro-workflow
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
vibe-coding-prompt-template
Templates and workflow for generating PRDs, Tech Designs, and MVP and more using LLMs for AI IDEs
awesome-copilot
Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
Best For
- ✓teams building production systems with AI coding assistants who need governance and traceability
- ✓enterprises requiring audit trails and quality enforcement for AI-assisted development
- ✓developers migrating from ad-hoc AI prompting to spec-driven workflows
- ✓product teams that need rapid documentation without manual writing
- ✓AI-assisted development workflows where docs serve as input to code generation
- ✓organizations standardizing on spec-driven development across multiple projects
- ✓teams with formal code review processes who want spec-aligned guidelines
- ✓projects with strict architectural constraints (microservices, API contracts, etc.)
Known Limitations
- ⚠Pipeline is linear and sequential — no parallel stage execution, adding latency for large projects
- ⚠Quality gate threshold (80+) is fixed and not customizable per project type or risk profile
- ⚠Requires explicit project analysis upfront; cannot auto-detect all tech stacks (ORM detection limited to common patterns)
- ⚠No built-in rollback or stage-skipping — all 8 stages must complete even for minor changes
- ⚠Domain knowledge is limited to 6 predefined business domains; custom domains require code modification
- ⚠Tech stack detection is pattern-based and may misidentify polyglot projects or emerging frameworks
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 16, 2026
About
Engineering workflow layer for AI coding tools with specs, review, quality gates, and traceability.为 AI 编程工具提供工程化流程、质量门禁与可追溯能力。
Categories
Alternatives to super-dev
Are you the builder of super-dev?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →