quilltap 3.3.0-dev.17 → 3.3.0-dev.39
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,6 +89,23 @@ Quilltap stores its database, files, and logs in a platform-specific directory:
|
|
|
89
89
|
|
|
90
90
|
Override with `--data-dir` or the `QUILLTAP_DATA_DIR` environment variable.
|
|
91
91
|
|
|
92
|
+
## Theme Management
|
|
93
|
+
|
|
94
|
+
The CLI includes theme management commands:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
quilltap themes list # List all installed themes
|
|
98
|
+
quilltap themes install my.qtap-theme # Install a .qtap-theme bundle
|
|
99
|
+
quilltap themes validate my.qtap-theme # Validate a bundle
|
|
100
|
+
quilltap themes uninstall my-theme # Uninstall a bundle theme
|
|
101
|
+
quilltap themes export earl-grey # Export any theme as a bundle
|
|
102
|
+
quilltap themes create sunset # Scaffold a new theme
|
|
103
|
+
quilltap themes search "dark" # Search registries
|
|
104
|
+
quilltap themes update # Check for theme updates
|
|
105
|
+
quilltap themes registry list # List configured registries
|
|
106
|
+
quilltap themes registry add <url> # Add a registry source
|
|
107
|
+
```
|
|
108
|
+
|
|
92
109
|
## Requirements
|
|
93
110
|
|
|
94
111
|
- Node.js 18 or later
|