rapidkit 0.31.0 → 0.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  > RapidKit is an open-source workspace platform that standardizes how teams build, scale, and deploy backend services.
4
4
 
5
- Production-ready scaffolding for FastAPI, NestJS, Spring Boot, Go/Fiber, and Go/Gin.
6
- **27+ plug-and-play modules** are available for FastAPI and NestJS projects. Spring Boot and Go kits run as npm-level generators.
5
+ Production-ready scaffolding for FastAPI, NestJS, Spring Boot, Go/Fiber, Go/Gin, and ASP.NET Core.
6
+ **50+ RapidKit Core modules** are available through the CLI for supported module-capable runtimes, with FastAPI and NestJS as first-class module installation targets. Spring Boot, Go, and ASP.NET Core kits run as npm-level generators.
7
7
  Built for clean architecture, minimal boilerplate, and fast deployment.
8
8
 
9
9
  > **💡 Recommended:** Install the [Workspai VS Code extension](https://marketplace.visualstudio.com/items?itemName=rapidkit.rapidkit-vscode) for AI-assisted project creation, workspace exploration, and context-aware coding — all backed by this CLI.
@@ -17,7 +17,7 @@ Built for clean architecture, minimal boilerplate, and fast deployment.
17
17
  The official RapidKit npm CLI for creating and operating workspaces and projects.
18
18
 
19
19
  - Workspace-first lifecycle (`create workspace` → `bootstrap` → `setup` → `create project`)
20
- - Multi-runtime support across Python, Node.js, Java, and Go
20
+ - Multi-runtime support across Python, Node.js, Java, Go, and .NET
21
21
  - Policy enforcement with `warn` / `strict` modes
22
22
  - Cache and mirror lifecycle commands for stable environments
23
23
 
@@ -51,6 +51,7 @@ It works alongside Workspai, a product developed by RapidKit.
51
51
  - Python `>= 3.10` (for Python/Core workflows)
52
52
  - Java 21+ and Maven 3.9+ (optional, for Spring Boot projects)
53
53
  - Go (optional, for Go projects)
54
+ - .NET SDK 8+ (optional, for ASP.NET Core projects)
54
55
 
55
56
  ## Install
56
57
 
@@ -109,6 +110,7 @@ npx rapidkit setup python
109
110
  npx rapidkit setup node --warm-deps
110
111
  npx rapidkit setup java --warm-deps
111
112
  npx rapidkit setup go --warm-deps
113
+ npx rapidkit setup dotnet --warm-deps
112
114
  ```
113
115
 
114
116
  ### 3) Create projects
@@ -120,6 +122,8 @@ npx rapidkit create project fastapi.ddd my-api --yes --skip-install
120
122
  npx rapidkit create project nestjs.standard my-nest --yes --skip-install
121
123
  npx rapidkit create project springboot.standard my-spring --yes --skip-install
122
124
  npx rapidkit create project gofiber.standard my-fiber --yes --skip-install
125
+ npx rapidkit create project gogin.standard my-gin --yes --skip-install
126
+ npx rapidkit create project dotnet.webapi.clean my-dotnet --yes --skip-install
123
127
  ```
124
128
 
125
129
  ## Core Commands
@@ -130,7 +134,7 @@ npx rapidkit create project gofiber.standard my-fiber --yes --skip-install
130
134
  npx rapidkit create # Prompts: workspace | project
131
135
  npx rapidkit create workspace <name> [--profile <profile>] [--author <name>] [--yes]
132
136
  npx rapidkit bootstrap [--profile <profile>] [--json]
133
- npx rapidkit setup <python|node|go|java> [--warm-deps]
137
+ npx rapidkit setup <python|node|go|java|dotnet> [--warm-deps]
134
138
  npx rapidkit analyze [--workspace <path>] [--json] [--strict] [--output <file>]
135
139
  npx rapidkit readiness [--json] [--strict]
136
140
  npx rapidkit autopilot release [--mode <audit|safe-fix|enforce>] [--json] [--output <file>] [--since <ref>] [--parallel] [--max-workers <n>]
@@ -199,7 +203,12 @@ JSON output (`--json`) includes:
199
203
  - `workspaceResolution` (`explicit` | `nearest` | `default-auto`)
200
204
  - `defaultWorkspaceCreated`
201
205
  - `suggestedCdCommand`
202
- - `importedProject` (`name`, `path`, `stack`, `confidence`, `source`)
206
+ - `importedProject` (`name`, `path`, `stack`, `runtime`, `framework`, `supportTier`, `moduleSupport`, `confidence`, `source`)
207
+
208
+ Imported projects also receive `.rapidkit/import-readiness.json`, which records framework detection,
209
+ runtime command support, and module mutation policy. Existing projects from Laravel, Rails, Rust,
210
+ Elixir, Kotlin, Deno, Bun, and other ecosystems are importable/governed even when RapidKit does not
211
+ yet ship a first-class scaffold for that stack.
203
212
 
204
213
  ### Workspace snapshots and safe project operations
205
214
 
@@ -394,6 +403,8 @@ Compatibility policy for automation consumers:
394
403
 
395
404
  ```bash
396
405
  npx rapidkit create project <kit> <name> [--yes] [--skip-install]
406
+ npx rapidkit project commands [--json]
407
+ npx rapidkit commands --scope project [--json]
397
408
  npx rapidkit init
398
409
  npx rapidkit dev
399
410
  npx rapidkit test
@@ -401,6 +412,13 @@ npx rapidkit build
401
412
  npx rapidkit start
402
413
  ```
403
414
 
415
+ `project commands` shows the effective command contract for the current project. Core-backed
416
+ FastAPI/NestJS projects can use module commands such as `add` and `modules`. npm-backed Go, Spring
417
+ Boot, and ASP.NET Core projects use runtime lifecycle commands and workspace governance while Core
418
+ module mutation remains disabled. Imported observed projects are safe to inspect, share, and govern;
419
+ they expose help-level lifecycle support until a runtime adapter or project-local command mapping is
420
+ available.
421
+
404
422
  ### Operations
405
423
 
406
424
  ```bash
@@ -551,11 +569,14 @@ project `consumes` it. Legacy `.rapidkit/workspace-dependency-graph.json` remain
551
569
  | **Go** | Fiber, Gin, Echo, Chi | Built-in |
552
570
  | **Java** | Spring Boot, Quarkus, Gradle | Built-in |
553
571
  | **Python** | FastAPI, Django, Flask, Poetry | Built-in |
554
- | **PHP** | Laravel, Symfony, Slim | Stable |
555
- | **Rust** | Actix, Axum, Rocket, Tokio | Stable |
556
- | **.NET** | ASP.NET Core, Entity Framework | Stable |
557
- | **Elixir** | Phoenix, Umbrella Projects | Stable |
558
- | **Ruby** | Rails, Sinatra, RSpec | Stable |
572
+ | **PHP** | Laravel, Symfony, Slim | Observed |
573
+ | **Rust** | Actix, Axum, Rocket, Tokio | Observed |
574
+ | **.NET** | ASP.NET Core, Entity Framework | Built-in |
575
+ | **Elixir** | Phoenix, Umbrella Projects | Observed |
576
+ | **Ruby** | Rails, Sinatra, RSpec | Observed |
577
+
578
+ For the public scaffold/import/lifecycle/module support contract, see
579
+ [docs/contracts/RUNTIME_SUPPORT_MATRIX.md](docs/contracts/RUNTIME_SUPPORT_MATRIX.md).
559
580
 
560
581
  ### Enterprise Features
561
582