AI-Unified-Process

32 mods across 1 repository, 118 stars between them.

AI-Unified-Process/marketplace

Instructions file

Instructions for AI-Unified-Process/marketplace, covering claude.md, repository structure, plugin architecture, two-layer design and marketplace configuration.

118 3d ago A 3,705 tokens original Apache-2.0

JavaDocs

04

AI-Unified-Process/marketplace

MCP server Claude CodeCodexCursor +2

MCP server "JavaDocs", hosted remotely at www.javadocs.dev, as configured in AI-Unified-Process/marketplace.

118 3d ago A tokens not measured original Apache-2.0

playwright

05

AI-Unified-Process/marketplace

MCP server Claude CodeCodexCursor +2

Lets the agent drive a real browser: open pages, click, type, take screenshots and read the accessibility tree, using Playwright. Runs locally from the @playwright/mcp npm package.

118 3d ago A tokens not measured copy · 100% Apache-2.0

flyway-migration

06

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates versioned Flyway database migration scripts (V.sql) with sequences, tables, constraints, and foreign keys from the entity model. Use when the user asks to "create a migration", "generate SQL scripts", "set up database tables", "write a Flyway migration", or mentions schema migration, DB migration, database…

118 3d ago B 79 tokens original Apache-2.0

implement

07

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Implements use cases across a Spring Boot + Spring Data JPA backend (flat single-module or hexagonal/ports-and-adapters multi-module) and an Angular frontend wired to that API. Use when the user asks to "implement a use case", "build the API", "create a REST endpoint", "write the data access layer", "build the Angular…

118 3d ago B 105 tokens original Apache-2.0

playwright-test

08

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates Playwright browser-based end-to-end tests for Angular views using Playwright's native accessibility-first locators (getByRole, getByLabelText, getByText). Use when the user asks to "write Playwright tests", "create e2e tests", "write integration tests", "test in the browser", or mentions end-to-end testing…

118 3d ago B 111 tokens original Apache-2.0

spring-boot-test

09

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates Spring Boot tests for REST controllers and Spring Data JPA repositories. Defaults to MockMvcTester and RestTestClient + Testcontainers for new projects (asking the user to confirm on the very first backend test), but detects and follows whichever convention a project already uses — including legacy MockMvc or…

118 3d ago B 145 tokens original Apache-2.0

vitest-test

10

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates Vitest component tests for Angular views using Angular's own testing idioms — TestBed, ComponentFixture, and HttpTestingController — not React Testing Library patterns. Use when the user asks to "write frontend tests", "test the Angular component", "write a Vitest test", "unit test an Angular page", or…

118 3d ago B 84 tokens original Apache-2.0

bunit-test

12

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Generates bUnit component unit and integration tests for Blazor components (.razor). Use when the user asks to "write bUnit tests", "test Blazor component", "create UI test for Blazor", or mentions bUnit, Blazor component testing, or xUnit rendering tests.

118 3d ago A 63 tokens original Apache-2.0

dotnet-test

13

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Generates C# backend unit and integration tests for EF Core DbContext repositories, domain services, and vertical slice handlers using xUnit / NUnit. Use when the user asks to "write unit tests for C#", "test ef core context", "write integration tests for dotnet", or mentions xUnit backend tests.

118 3d ago A 67 tokens original Apache-2.0

ef-migration

14

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Generates Entity Framework Core (EF Core) database migrations for C# / .NET projects based on the entity model specification in docs/entitymodel.md. Use when the user asks to "create database migration", "add ef migration", "update schema with ef core", "generate db migration for .net", or mentions EF Core, DbContext…

118 3d ago A 80 tokens original Apache-2.0

aiup-core

15

AI-Unified-Process/marketplace

Plugin Claude Code

AI Unified Process core - stack-agnostic requirements, entity model, and use cases.

118 3d ago A tokens not measured original Apache-2.0

entity-model

16

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates entity model documents with Mermaid.js ER diagrams and attribute tables defining entities, relationships, data types, and validation rules. Use when the user asks to "create an entity model", "design a data model", "draw an ERD", "define database schema", "model entities", or mentions entity-relationship…

118 3d ago A 153 tokens original Apache-2.0

requirements

17

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Gathers, organizes, and documents software requirements into structured catalogs with functional requirements (user stories), non-functional requirements (measurable quality attributes), and constraints. Use when the user asks to "write requirements", "create a PRD", "gather requirements", "document feature specs"…

118 3d ago A 91 tokens original Apache-2.0

reverse-engineer

18

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Reverse-engineers an existing software project into AI Unified Process artifacts: a PlantUML use case diagram, per-use-case specification documents, and an entity model with a Mermaid ER diagram. Use when the user asks to "reverse engineer this codebase", "extract use cases from existing code", "document the system we…

118 3d ago B 158 tokens original Apache-2.0

test-case

19

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates end-to-end test case documents (TC-.md) that chain several use cases into one user journey with a step-by-step Flow table, concrete test data, and final validations. Use when the user asks to "create a test case", "write a test case", "define an end-to-end scenario", "document a user journey for testing"…

118 3d ago B 152 tokens original Apache-2.0

use-case-diagram

20

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates or updates PlantUML use case diagrams defining actors, use cases, and their relationships from requirements. Use when the user asks to "create a use case diagram", "draw a UML diagram", "map actors to use cases", "generate a .puml file", or mentions PlantUML, use case overview, actor diagram, or system use…

118 3d ago A 78 tokens original Apache-2.0

use-case-spec

21

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates detailed use case specification documents with actors, preconditions, main success scenarios, alternative flows, postconditions, and business rules. Use when the user asks to "write a use case", "specify a use case", "document system behavior", "define scenarios", "write a functional spec", or mentions use…

118 3d ago A 155 tokens original Apache-2.0

drizzle-migration

23

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates Drizzle ORM schema definitions and generated SQL migrations for PostgreSQL from the entity model. Use when the user asks to "create a migration", "generate SQL", "set up database tables", "update the schema", or mentions Drizzle, drizzle-kit, pg-core, schema.ts, or database versioning for a NestJS project.

118 3d ago B 73 tokens original Apache-2.0

nest-test

24

AI-Unified-Process/marketplace

Skill Claude CodeCodex

Creates NestJS backend tests with Vitest — unit specs with stubbed repositories, and Supertest end-to-end specs that boot the application against a real PostgreSQL database in Testcontainers. Use when the user asks to "write backend tests", "test the API", "write an e2e test", "test the endpoint", or mentions…

118 3d ago B 90 tokens original Apache-2.0