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 +25 -9
- package/package.json +10 -2
- package/postinstall.js +1 -0
package/README.md
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
# catylst
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/catylst)
|
|
4
|
+
[](https://developer.android.com/build)
|
|
5
|
+
[](https://developer.android.com/jetpack/androidx/releases/room)
|
|
6
|
+
[](https://developer.android.com/jetpack/androidx/releases/navigation)
|
|
7
|
+
[](https://m3.material.io)
|
|
8
|
+
[](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** —
|
|
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
|
|
32
|
-
- **Agent Skills** — install bloom-build
|
|
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` |
|
|
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/ #
|
|
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
|
|
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.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Generate customized Kotlin Multiplatform projects with an interactive wizard",
|
|
5
|
-
"keywords": [
|
|
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",
|