claude-toolkit 0.1.20 → 0.1.24
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/CHANGELOG.md +12 -0
- package/README.md +61 -26
- package/bin/cli.ts +57 -12
- package/docs/README.md +1 -0
- package/docs/best-practices/capacitor/README.md +64 -0
- package/docs/best-practices/capacitor/capacitor-8.md +60 -0
- package/docs/best-practices/capacitor/capgo-setup.md +151 -0
- package/docs/best-practices/capacitor/channels-and-rollouts.md +101 -0
- package/docs/best-practices/capacitor/live-updates-ota.md +75 -0
- package/docs/best-practices/capacitor/security-encryption.md +68 -0
- package/docs/stacks/capacitor-ota.md +145 -0
- package/package.json +1 -1
- package/src/detect.ts +152 -0
- package/src/index.ts +2 -0
- package/src/types.ts +5 -1
- package/stacks/capacitor/skills/ct-capacitor-ota/SKILL.md +178 -0
- package/stacks/capacitor/stack.json +64 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ct-capacitor-ota",
|
|
3
|
+
"description": "Capacitor 8 native runtime and Capgo OTA live updates: channels, encryption, staged rollouts",
|
|
4
|
+
"defaultMappings": {
|
|
5
|
+
"capacitor.config.ts": "ct-capacitor-ota",
|
|
6
|
+
"capacitor.config.json": "ct-capacitor-ota",
|
|
7
|
+
"ios": "ct-capacitor-ota",
|
|
8
|
+
"android": "ct-capacitor-ota"
|
|
9
|
+
},
|
|
10
|
+
"fileExtensions": [],
|
|
11
|
+
"skillRules": {
|
|
12
|
+
"ct-capacitor-ota": {
|
|
13
|
+
"description": "Capacitor 8 live updates with Capgo: notifyAppReady, channels, encryption, CLI, staged rollouts",
|
|
14
|
+
"priority": 7,
|
|
15
|
+
"triggers": {
|
|
16
|
+
"keywords": [
|
|
17
|
+
"capacitor",
|
|
18
|
+
"capgo",
|
|
19
|
+
"ota",
|
|
20
|
+
"live update",
|
|
21
|
+
"updater",
|
|
22
|
+
"notifyAppReady",
|
|
23
|
+
"channel",
|
|
24
|
+
"bundle",
|
|
25
|
+
"hot update",
|
|
26
|
+
"app store",
|
|
27
|
+
"setChannel"
|
|
28
|
+
],
|
|
29
|
+
"keywordPatterns": [
|
|
30
|
+
"\\bcapacitor\\b",
|
|
31
|
+
"\\bcapgo\\b",
|
|
32
|
+
"\\bota\\b",
|
|
33
|
+
"\\blive\\s+updates?\\b",
|
|
34
|
+
"\\bnotifyAppReady\\b"
|
|
35
|
+
],
|
|
36
|
+
"pathPatterns": [
|
|
37
|
+
"**/capacitor.config.ts",
|
|
38
|
+
"**/capacitor.config.json",
|
|
39
|
+
"**/capacitor.config.js",
|
|
40
|
+
"**/android/**",
|
|
41
|
+
"**/ios/**"
|
|
42
|
+
],
|
|
43
|
+
"intentPatterns": [
|
|
44
|
+
"(?:ship|push|deploy|roll\\s*out).*(?:update|bundle|version)",
|
|
45
|
+
"(?:setup|configure|add).*(?:capgo|capacitor|live\\s+update|ota)",
|
|
46
|
+
"(?:rollback|revert).*(?:bundle|channel|update)"
|
|
47
|
+
],
|
|
48
|
+
"contentPatterns": [
|
|
49
|
+
"@capgo/capacitor-updater",
|
|
50
|
+
"CapacitorUpdater",
|
|
51
|
+
"notifyAppReady",
|
|
52
|
+
"setChannel",
|
|
53
|
+
"@capacitor/core",
|
|
54
|
+
"autoUpdate"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"relatedSkills": [
|
|
58
|
+
"ct-vite-vitest-patterns",
|
|
59
|
+
"ct-playwright-patterns",
|
|
60
|
+
"ct-typescript-conventions"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|