@untitled-devs/wasla 0.1.0 → 0.1.1
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 +10 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -121,7 +121,7 @@ The same pattern applies across every asset type:
|
|
|
121
121
|
WaslaGenie is cross-platform via `npx` — no global install required:
|
|
122
122
|
|
|
123
123
|
```bash
|
|
124
|
-
npx wasla
|
|
124
|
+
npx @untitled-devs/wasla sync
|
|
125
125
|
```
|
|
126
126
|
|
|
127
127
|
This runs the CLI directly. It does not register helper skills inside Claude, Gemini, or other tools.
|
|
@@ -129,7 +129,7 @@ This runs the CLI directly. It does not register helper skills inside Claude, Ge
|
|
|
129
129
|
**Or install globally:**
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
|
-
npm install -g wasla
|
|
132
|
+
npm install -g @untitled-devs/wasla
|
|
133
133
|
waslagenie sync
|
|
134
134
|
```
|
|
135
135
|
|
|
@@ -155,6 +155,9 @@ waslagenie sync
|
|
|
155
155
|
# Keep syncing while you work
|
|
156
156
|
waslagenie watch
|
|
157
157
|
|
|
158
|
+
# Open the visualizer dashboard
|
|
159
|
+
waslagenie visualizer
|
|
160
|
+
|
|
158
161
|
# Optional: install helper skill in all detected providers
|
|
159
162
|
waslagenie register
|
|
160
163
|
|
|
@@ -165,7 +168,11 @@ waslagenie register --to claude,gemini
|
|
|
165
168
|
You can also run without global install:
|
|
166
169
|
|
|
167
170
|
```bash
|
|
168
|
-
|
|
171
|
+
# Run sync
|
|
172
|
+
npx @untitled-devs/wasla sync
|
|
173
|
+
|
|
174
|
+
# Open visualizer
|
|
175
|
+
npx @untitled-devs/wasla visualizer
|
|
169
176
|
```
|
|
170
177
|
|
|
171
178
|
### You (developing this repo)
|