@chill-sharp/chill-cli 1.1.19 → 1.1.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chill-sharp/chill-cli",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "Start a ChillSharp project with agent-ready guidance.",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "type": "module",
@@ -7,11 +7,32 @@ description: Build a connected ChillSharp application with an ASP.NET Core API,
7
7
 
8
8
  Treat a request to build a new site or application in a ChillSharp workspace as a full-stack request unless the user explicitly limits it to an API, a UI, or a static prototype.
9
9
 
10
+ ## Public package catalog
11
+
12
+ Use these published packages directly. Do not search the local filesystem, clone the ChillSharp repository, or recreate a client library to find an implementation that is already available here.
13
+
14
+ | Registry | Package | Use it for |
15
+ | --- | --- | --- |
16
+ | NuGet | `ChillSharp` | The ASP.NET Core backend, including the core API and bundled auth, schema, i18n, MCP, and attachment modules. |
17
+ | NuGet | `ChillSharp.Client` | A .NET application that consumes a ChillSharp API. |
18
+ | npm | `@chill-sharp/create-app` | Generate an Angular application shell with the standard ChillSharp UI dependencies. |
19
+ | npm | `@chill-sharp/ui-core` | The shared Angular management UI, layouts, CRUD pages, and providers. |
20
+ | npm | `@chill-sharp/ts-client` | A framework-neutral browser or TypeScript client. |
21
+ | npm | `@chill-sharp/ng-client` | Angular client helpers. |
22
+ | npm | `@chill-sharp/react-client` | React providers and hooks. |
23
+ | npm | `@chill-sharp/vue-client` | Vue plugin and composables. |
24
+ | npm | `@chill-sharp/chill-cli` | Create an agent-ready ChillSharp workspace; it is not a runtime dependency. |
25
+ | PyPI | `chill-sharp-py-client` | A Python client for a ChillSharp API. |
26
+
27
+ For a new Angular management UI, prefer `npm create @chill-sharp/app <app-name>` rather than building a replacement from local source. For another frontend stack, install its matching client package and connect it to the API. Use only the client family needed by the requested application; do not install every package in this table.
28
+
29
+ For example, add the backend with `dotnet add package ChillSharp`, a browser client with `npm install @chill-sharp/ts-client`, or a Python integration with `pip install chill-sharp-py-client`.
30
+
10
31
  ## Required delivered components
11
32
 
12
33
  Deliver all of these as working parts of the same application:
13
34
 
14
- 1. **ASP.NET Core backend.** Create a runnable backend that uses ChillSharp: an EF Core `DbContext` implementing `IChillContext`, ChillSharp entities and query types for the requested data, `AddChillApi`, and `MapChillApi`. Use the registration and model-preparation skills for the exact setup.
35
+ 1. **ASP.NET Core backend.** Create a runnable backend that uses the public `ChillSharp` NuGet package: an EF Core `DbContext` implementing `IChillContext`, ChillSharp entities and query types for the requested data, `AddChillApi`, and `MapChillApi`. Use the registration and model-preparation skills for the exact setup.
15
36
  2. **Management UI.** Create an authenticated staff/admin experience that reads and writes the backend's real ChillSharp data. Use the ChillSharp schema/menu and client guidance when a ChillSharp UI client is appropriate. Do not substitute a design mock-up, static page, or local-only data editor.
16
37
  3. **User-facing frontend.** Create the requested public/customer-facing experience and connect it to the same backend API. Its displayed and submitted data must come from real API calls, not fixtures, browser storage, or a parallel mock service.
17
38