plugins marketplace
← All plugins

universal-workflow

v2.0.6

14 skills, 7 custom agents, and 8 hooks for architecture, code review, debugging, security, testing, and more. Full Codex support via .codex/agents/ and .codex/hooks.json.

CodexClaude Code14 skills

by CloudAI-XMIT1.4kupdated 5 days ago

Source

git clone https://github.com/CloudAI-X/claude-workflow-v2

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

universal-workflow/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/analyzing-projects/SKILL.md
├── skills/convex-backend/SKILL.md
├── skills/database-design/SKILL.md
├── skills/designing-apis/SKILL.md
├── skills/designing-architecture/SKILL.md
├── skills/designing-tests/SKILL.md
├── skills/devops-infrastructure/SKILL.md
├── skills/error-handling/SKILL.md
├── skills/managing-git/SKILL.md
├── skills/optimizing-performance/SKILL.md
├── skills/parallel-execution/SKILL.md
├── skills/security-patterns/SKILL.md
├── skills/vercel-react-best-practices/SKILL.md
└── skills/web-design-guidelines/SKILL.md

Skills14

analyzing-projectsskills/analyzing-projects/SKILL.md

Analyzes codebases to understand structure, tech stack, patterns, and conventions. Use when onboarding to a new project, exploring unfamiliar code, or when asked "how does this work?" or "what's the architecture?"

convex-backendskills/convex-backend/SKILL.md

Convex backend development guidelines. Use when writing Convex functions, schemas, queries, mutations, actions, or any backend code in a Convex project. Triggers on tasks involving Convex database operations, real-time subscriptions, file storage, or serverless functions.

database-designskills/database-design/SKILL.md

Designs database schemas, indexing strategies, query optimization, and migration patterns for SQL and NoSQL databases. Use when designing tables, optimizing queries, fixing N+1 problems, planning migrations, or when asked about database performance, normalization, ORMs, or data modeling.

designing-apisskills/designing-apis/SKILL.md

Designs REST and GraphQL APIs including endpoints, error handling, versioning, and documentation. Use when creating new APIs, designing endpoints, reviewing API contracts, or when asked about REST, GraphQL, or API patterns.

designing-architectureskills/designing-architecture/SKILL.md

Designs software architecture and selects appropriate patterns for projects. Use when designing systems, choosing architecture patterns, structuring projects, making technical decisions, or when asked about microservices, monoliths, or architectural approaches.

designing-testsskills/designing-tests/SKILL.md

Designs and implements testing strategies for any codebase. Use when adding tests, improving coverage, setting up testing infrastructure, debugging test failures, or when asked about unit tests, integration tests, or E2E testing.

devops-infrastructureskills/devops-infrastructure/SKILL.md

Guides Docker, CI/CD pipelines, deployment strategies, infrastructure as code, and observability setup. Use when writing Dockerfiles, configuring GitHub Actions, planning deployments, setting up monitoring, or when asked about containers, pipelines, Terraform, or production infrastructure.

error-handlingskills/error-handling/SKILL.md

Implements error handling patterns, structured logging, retry strategies, circuit breakers, and graceful degradation. Use when designing error handling, setting up logging, implementing retries, adding error tracking, or when asked about error boundaries, log aggregation, alerting, or resilience patterns.

managing-gitskills/managing-git/SKILL.md

Manages Git workflows including branching, commits, and pull requests. Use when working with Git, creating commits, opening PRs, managing branches, resolving conflicts, or when asked about version control best practices.

optimizing-performanceskills/optimizing-performance/SKILL.md

Analyzes and optimizes application performance across frontend, backend, and database layers. Use when diagnosing slowness, improving load times, optimizing queries, reducing bundle size, or when asked about performance issues.

parallel-executionskills/parallel-execution/SKILL.md

Patterns for parallel subagent execution using Task tool with run_in_background. Use when coordinating multiple independent tasks, spawning dynamic subagents, or implementing features that can be parallelized.

security-patternsskills/security-patterns/SKILL.md

Implements authentication, authorization, encryption, secrets management, and security hardening patterns. Use when designing auth flows, managing secrets, configuring CORS, implementing rate limiting, or when asked about JWT, OAuth, password hashing, API keys, RBAC, or security best practices.

vercel-react-best-practicesskills/vercel-react-best-practices/SKILL.md

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

web-design-guidelinesskills/web-design-guidelines/SKILL.md

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", "check my site against best practices", or "web interface guidelines".

Manifests2

.codex-plugin/plugin.json
{
  "name": "universal-workflow",
  "version": "2.0.6",
  "description": "14 skills, 7 custom agents, and 8 hooks for architecture, code review, debugging, security, testing, and more. Full Codex support via .codex/agents/ and .codex/hooks.json.",
  "author": {
    "name": "CloudAI-X",
    "email": "opensource@cloudai-x.dev",
    "url": "https://github.com/CloudAI-X"
  },
  "homepage": "https://github.com/CloudAI-X/claude-workflow-v2#readme",
  "repository": "https://github.com/CloudAI-X/claude-workflow-v2",
  "license": "MIT",
  "keywords": [
    "openai-codex",
    "codex-cli",
    "codex-plugin",
    "universal-workflow",
    "workflow",
    "agents",
    "code-review",
    "debugging",
    "security",
    "refactoring",
    "testing",
    "documentation",
    "hooks",
    "automation"
  ],
  "skills": "./skills/",
  "hooks": "./.codex/hooks.json",
  "interface": {
    "displayName": "Universal Workflow",
    "shortDescription": "14 skills, 7 agents, and 8 hooks for software development workflows",
    "longDescription": "14 production-ready skills covering architecture, API design, database design, security patterns, performance optimization, test design, Git workflows, error handling, DevOps, parallel execution, web design, and React best practices. 7 custom agents (orchestrator, code-reviewer, debugger, docs-writer, security-auditor, refactorer, test-architect) and 8 lifecycle hooks for command logging, branch protection, completion verification, documentation suggestions, environment validation, and prompt validation.",
    "developerName": "CloudAI-X",
    "category": "Coding",
    "capabilities": [
      "Read",
      "Write",
      "Interactive"
    ],
    "websiteURL": "https://github.com/CloudAI-X/claude-workflow-v2",
    "privacyPolicyURL": "https://github.com/CloudAI-X/claude-workflow-v2/blob/main/PRIVACY.md",
    "termsOfServiceURL": "https://github.com/CloudAI-X/claude-workflow-v2/blob/main/TERMS.md",
    "defaultPrompt": [
      "Run a full code review using the custom reviewer and hook checks.",
      "Orchestrate a multi-step implementation plan with specialist agents.",
      "Audit a repo for security, tests, docs, and release readiness."
    ],
    "brandColor": "#2563EB",
    "composerIcon": "./.codex-plugin/assets/icon.png",
    "logo": "./.codex-plugin/assets/logo.png",
    "screenshots": [
      "./.codex-plugin/assets/screenshot-1.png",
      "./.codex-plugin/assets/screenshot-2.png",
      "./.codex-plugin/assets/screenshot-3.png"
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "project-starter",
  "version": "2.0.6",
  "description": "Universal Claude Code workflow with specialized agents, skills, hooks, and output styles for any software project. Includes orchestrator, code-reviewer, debugger, docs-writer, security-auditor, refactorer, and test-architect agents.",
  "author": {
    "name": "CloudAI-X"
  },
  "license": "MIT",
  "repository": "https://github.com/CloudAI-X/claude-workflow-v2",
  "homepage": "https://github.com/CloudAI-X/claude-workflow-v2#readme",
  "keywords": [
    "workflow",
    "agents",
    "code-review",
    "debugging",
    "security",
    "refactoring",
    "testing",
    "documentation",
    "hooks",
    "automation"
  ]
}