npx skills add https://github.com/duc01226/easyplatform --skill markdown-to-docxInstala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.
Easy.Platform is a comprehensive framework for building enterprise applications with .NET 9 backend and Angular 19 frontend, featuring Clean Architecture, CQRS, Domain-Driven Design, and event-driven patterns.
| I am a... | Start Here | Learn More |
|---|---|---|
| New Developer | Getting Started | Learning Paths |
| Backend Dev | Backend Quickref | CLAUDE.md Patterns |
| Frontend Dev | Frontend Quickref | CLAUDE.md Patterns |
| AI Agent | CLAUDE.md | docs/claude/ |
Easy.Platform provides a complete foundation for enterprise application development:
The framework is battle-tested in production enterprise applications and provides patterns for common challenges like background jobs, data migrations, authorization, and multi-tenancy.
# Backend
dotnet run --project src/Backend/PlatformExampleApp.TextSnippet.Api
# Frontend
cd src/Frontend && npm install && nx serve playground-text-snippet
# Infrastructure
docker-compose -f src/platform-example-app.docker-compose.yml -f src/platform-example-app.docker-compose.override.yml up -d
Detailed setup: Getting Started Guide
| Doc | Purpose |
|---|---|
| Getting Started | Prerequisites, setup, commands, troubleshooting |
| Architecture Overview | System design, project structure, diagrams |
| Backend Quickref | Backend decision tree and key patterns |
| Frontend Quickref | Frontend decision tree and key patterns |
| Learning Paths | Developer onboarding by role |
| CLAUDE.md | Complete code patterns, AI agent instructions |
| Business Features | Module documentation, features, APIs |
Business Documentation: For detailed business module documentation (requirements, workflows, APIs, test specs), see
docs/business-features/withdocs/BUSINESS-FEATURES.mdas the master index.
This project includes a complete team collaboration system for AI agents, supporting agile workflows from idea capture to release.
| Role | Commands | Purpose |
|---|---|---|
| Product Owner | /team-idea, /team-prioritize |
Capture ideas, backlog prioritization |
| Business Analyst | /team-refine, /team-story |
PBI refinement, user story creation |
| QA Engineer | /team-test-spec, /team-test-cases |
Test specification, test case generation |
| UX Designer | /team-design-spec, /team-figma-extract |
UI specs, Figma design extraction |
| QC Specialist | /team-quality-gate |
Pre-dev/QA/release quality gates |
| Project Manager | /team-status, /team-dependency, /team-team-sync |
Status reports, dependency mapping, meetings |
team-artifacts/
├── ideas/ # Raw ideas (IDEA-YYMMDD-NNN)
├── pbis/ # Product Backlog Items (PBI-YYMMDD-NNN)
├── test-specs/ # Test specifications (TS-MOD-NNN)
├── design-specs/ # UI/UX specifications
├── qc-reports/ # Quality gate reports
└── templates/ # Artifact templates
Full guide: Team Collaboration Guide
graph TB
subgraph "Frontend - Nx Workspace"
subgraph "Apps"
PLAYGROUND["playground-text-snippet"]
end
subgraph "Libraries"
PLATFORM_CORE["platform-core"]
PLATFORM_COMP["platform-components"]
APPS_DOMAINS["apps-domains"]
end
PLAYGROUND --> PLATFORM_CORE
PLAYGROUND --> APPS_DOMAINS
end
subgraph "Backend - .NET 9"
API["TextSnippet.Api"]
APP["TextSnippet.Application"]
DOMAIN["TextSnippet.Domain"]
PERSIST["TextSnippet.Persistence"]
end
subgraph "Infrastructure"
RABBIT["RabbitMQ"]
REDIS["Redis"]
DB["MongoDB/SQL/Postgres"]
end
PLAYGROUND --> API
API --> APP
APP --> DOMAIN
APP --> PERSIST
PERSIST --> DB
APP --> RABBIT
APP --> REDIS
| Layer | Technologies |
|---|---|
| Backend | .NET 9, ASP.NET Core, CQRS |
| Frontend | Angular 19, TypeScript, RxJS, PlatformVmStore |
| Data | MongoDB, SQL Server, PostgreSQL |
| Messaging | RabbitMQ |
| Caching | Redis |
| Jobs | Hangfire |
Full architecture details: Architecture Overview
src/Platform/ # Easy.Platform framework
├── Easy.Platform/ # Core (CQRS, validation, repositories)
├── Easy.Platform.AspNetCore/ # ASP.NET Core integration
├── Easy.Platform.MongoDB/ # MongoDB patterns
├── Easy.Platform.RabbitMQ/ # Message bus
└── Easy.Platform.*/ # Other modules
src/Backend/ # Example microservice
├── *.Api/ # Web API layer
├── *.Application/ # CQRS handlers, jobs, events
├── *.Domain/ # Entities, domain events
├── *.Infrastructure/ # External concerns (storage, external APIs)
└── *.Persistence*/ # Database implementations
src/Frontend/ # Angular 19 Nx workspace
├── apps/
│ └── playground-text-snippet/ # Example app
└── libs/
├── platform-core/ # Base classes, utilities
├── platform-components/ # Reusable UI components
├── apps-domains/ # Business domain code
├── apps-domains-components/ # Domain-specific components
└── apps-shared-components/ # Shared app components
IPlatformQueryableRootRepository<TEntity, TKey>PlatformValidationResult fluent API (never throw)MapToEntity()AppBaseComponent → Feature ComponentPlatformVmStore for complex statePlatformApiServiceuntilDestroyed()block__element --modifier)Complete patterns: CLAUDE.md
# Backend
dotnet build src/Easy.Platform.sln
dotnet run --project src/Backend/PlatformExampleApp.TextSnippet.Api
dotnet test [Project].csproj
# Frontend
cd src/Frontend
npm install
nx serve playground-text-snippet
nx build playground-text-snippet
nx test platform-core
src/Backend/ for backend, src/Frontend/apps/playground-text-snippet/ for frontenddocs/ directory for guides, CLAUDE.md for patternsFor detailed code patterns and complete examples, see CLAUDE.md and the working examples in src/Backend/.