catylst 1.0.1 → 1.0.4

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
@@ -1,8 +1,15 @@
1
1
  # catylst
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/catylst?style=flat-square&color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/catylst)
4
+ [![AGP](https://img.shields.io/badge/AGP-9.0-3DDC84?style=flat-square&logo=android&logoColor=white)](https://developer.android.com/build)
5
+ [![Room](https://img.shields.io/badge/Room-3.1-3DDC84?style=flat-square&logo=android&logoColor=white)](https://developer.android.com/jetpack/androidx/releases/room)
6
+ [![Navigation3](https://img.shields.io/badge/Navigation-3.0-7F52FF?style=flat-square&logo=kotlin&logoColor=white)](https://developer.android.com/jetpack/androidx/releases/navigation)
7
+ [![Material3](https://img.shields.io/badge/Material-M3%20Expressive-F06292?style=flat-square)](https://m3.material.io)
8
+ [![AI Skills](https://img.shields.io/badge/AI%20Skills-bloom--build%20%7C%20bloom--navigate-FF6F00?style=flat-square)](https://github.com/rohit-554/Catylst)
9
+
3
10
  Generate customized **Kotlin Multiplatform** projects with an interactive wizard.
4
11
 
5
- Instead of cloning a template and manually deleting files, just run `catylst` and answer a few questions. You get a ready-to-build KMP project with only the features you want.
12
+ Instead of cloning a template and manually deleting files, just run `catylst --interactive` and answer a few questions. You get a ready-to-build KMP project - Android, iOS, Desktop - with only the features you want.
6
13
 
7
14
  ## Requirements
8
15
 
@@ -25,11 +32,11 @@ The wizard walks you through:
25
32
 
26
33
  - **Package name** — e.g. `com.example.myapp`
27
34
  - **App name** — e.g. `MyApp`
28
- - **Features** — pick from AI, Notifications, Permissions, Room, Preferences, Ktor, Server
35
+ - **Features** — AI, Notifications, Permissions, Room 3.1, Preferences, Ktor, Server
29
36
  - **AI provider** — Claude / Groq / Gemini (multi-select)
30
37
  - **Sample code** — include demo screens or start clean
31
- - **Theme** — pick any hex color, get a full Material 3 light + dark theme
32
- - **Agent Skills** — install bloom-build, bloom-navigate, and community skills
38
+ - **Theme** — pick any hex color, get a full M3 Expressive light + dark theme
39
+ - **Agent Skills** — install `bloom-build`, `bloom-navigate`, and 6 community skills
33
40
 
34
41
  ### Non-interactive
35
42
 
@@ -44,7 +51,7 @@ catylst --package com.example.myapp --name MyApp --features ai,room,ktor
44
51
  | `--interactive`, `-i` | Run interactive wizard |
45
52
  | `--package`, `-p` | Application package name |
46
53
  | `--name`, `-n` | Application display name |
47
- | `--features`, `-f` | Comma-separated: `ai,notifications,permissions,room,preferences,ktor,server` |
54
+ | `--features`, `-f` | `ai,notifications,permissions,room,preferences,ktor,server` |
48
55
  | `--no-sample` | Exclude sample/demo code |
49
56
  | `--ai-provider`, `-a` | `claude`, `groq`, `gemini`, `none` |
50
57
  | `--theme-color` | Seed color hex e.g. `#6750A4` |
@@ -55,19 +62,28 @@ catylst --package com.example.myapp --name MyApp --features ai,room,ktor
55
62
 
56
63
  ```
57
64
  MyApp/
58
- ├── androidApp/ # Android entry point
65
+ ├── androidApp/ # Android entry point (AGP 9)
59
66
  ├── composeApp/ # Shared KMP code
60
- │ ├── src/commonMain/
67
+ │ ├── src/commonMain/ # Navigation3 · Room 3.1 · Ktor 3 · Koin
61
68
  │ ├── src/androidMain/
62
69
  │ ├── src/iosMain/
63
70
  │ └── src/desktopMain/
64
71
  ├── iosApp/ # iOS Xcode project
65
- └── .claude/skills/ # AI agent skills (if selected)
72
+ └── .claude/skills/ # bloom-build · bloom-navigate (if selected)
66
73
  ```
67
74
 
75
+ ## AI Agent Skills
76
+
77
+ Skills are installed into `.claude/skills/` and picked up automatically by Claude Code.
78
+
79
+ | Skill | What it does |
80
+ |-------|-------------|
81
+ | `bloom-build` | Add screens end-to-end — composable, navigation, ViewModel, Room Entity/DAO/Repository, Koin DI |
82
+ | `bloom-navigate` | Modify your project — swap AI provider, configure notifications/permissions, remove features |
83
+
68
84
  ## Updating
69
85
 
70
- Re-run install to get the latest template and CLI:
86
+ Re-run to get the latest template and CLI:
71
87
 
72
88
  ```bash
73
89
  npm install -g catylst
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "catylst",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Generate customized Kotlin Multiplatform projects with an interactive wizard",
5
- "keywords": ["kotlin", "kmp", "android", "ios", "multiplatform", "compose", "generator"],
5
+ "keywords": [
6
+ "kotlin",
7
+ "kmp",
8
+ "android",
9
+ "ios",
10
+ "multiplatform",
11
+ "compose",
12
+ "generator"
13
+ ],
6
14
  "homepage": "https://github.com/rohit-554/Catylst",
7
15
  "repository": {
8
16
  "type": "git",
package/postinstall.js CHANGED
@@ -20,6 +20,7 @@ const TRUSTED_HOSTS = [
20
20
  "github.com",
21
21
  "objects.githubusercontent.com",
22
22
  "releases.githubusercontent.com",
23
+ "release-assets.githubusercontent.com",
23
24
  "codeload.github.com",
24
25
  ];
25
26