create-minlang-app 0.4.1 → 0.5.0

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": "create-minlang-app",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "Scaffold a MinLang web app: write one .ml file, compile with ml1, deploy.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,6 +32,8 @@ https://github.com/codeshift-ai-solutions/minlang-releases/releases/latest/downl
32
32
 
33
33
  It contains the canonical rules (Creator + Gatekeeper packets), the
34
34
  detector list, and the end-to-end web-app authoring guide. Highlights:
35
+ - Run `ml1 features` for a compact catalog of the current language surface
36
+ before searching the docs or inventing syntax.
35
37
  - Forbidden everywhere: `now()`, `today()`, `random()`, `current_user`
36
38
  (runtime inputs are injected: `created_at`, `current_time`, `actor_id`,
37
39
  `rng_draw`, `request_id`).
@@ -54,6 +56,7 @@ it. `ml1 update` advances the pin for additive upgrades and never edits your
54
56
  | Task | Command |
55
57
  |------|---------|
56
58
  | One-time setup | `corepack enable && corepack prepare pnpm@10.33.0 --activate` |
59
+ | Print current language features for agents | `ml1 features` |
57
60
  | Validate the program | `make validate` |
58
61
  | Compile to `app/generated/` | `make compile` |
59
62
  | Refresh language-support prompt without compiling | `ml1 support __APP_NAME__.ml` |
@@ -61,6 +61,7 @@ performance, and E2E checks from MinLang declarations.
61
61
  ## Agent prompt
62
62
 
63
63
  Read this file together with the current MinLang bundle and the app source.
64
+ Run `ml1 features` first if you need a compact map of supported constructs.
64
65
  Then write findings to `MINLANG_LANGUAGE_SUPPORT_RESULTS.md` with:
65
66
 
66
67
  1. The product behavior still implemented outside MinLang.
@@ -10,9 +10,9 @@
10
10
  "test:e2e": "next build && playwright test"
11
11
  },
12
12
  "dependencies": {
13
- "@minlang/design-system": "^0.2.1",
14
- "@minlang/runtime-web": "^0.2.1",
15
- "@minlang/tailwind-preset": "^0.2.1",
13
+ "@minlang/design-system": "^0.3.0",
14
+ "@minlang/runtime-web": "^0.3.0",
15
+ "@minlang/tailwind-preset": "^0.3.0",
16
16
  "next": "15.5.19",
17
17
  "react": "19.2.7",
18
18
  "react-dom": "19.2.7",