tanuki-telemetry 1.1.4 → 1.1.5
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/bin/tanuki.mjs +15 -7
- package/package.json +1 -1
package/bin/tanuki.mjs
CHANGED
|
@@ -324,15 +324,23 @@ if (command === "start") {
|
|
|
324
324
|
log("");
|
|
325
325
|
log(` ${d}─────────────────────────────────────────${r}`);
|
|
326
326
|
log("");
|
|
327
|
-
log(` ${
|
|
328
|
-
log(` ${w}data${r} ${d}${DATA_DIR}${r}`);
|
|
327
|
+
log(` ${g}${b}ready${r}`);
|
|
329
328
|
log("");
|
|
330
|
-
log(` ${
|
|
331
|
-
log(` ${
|
|
329
|
+
log(` ${w}dashboard${r} ${cy}http://localhost:${PORT}${r}`);
|
|
330
|
+
log(` ${w}data${r} ${d}${DATA_DIR}${r}`);
|
|
332
331
|
log("");
|
|
333
|
-
log(` ${
|
|
334
|
-
log(`
|
|
335
|
-
log(`
|
|
332
|
+
log(` ${w}skills installed:${r}`);
|
|
333
|
+
log(` ${g}/start-work${r} ${d}autonomous dev — context to PR${r}`);
|
|
334
|
+
log(` ${g}/coordinate${r} ${d}manage cmux workspaces${r}`);
|
|
335
|
+
log(` ${g}/walkthrough${r} ${d}execute UI test scenarios${r}`);
|
|
336
|
+
log(` ${g}/debug${r} ${d}systematic bug investigation${r}`);
|
|
337
|
+
log(` ${g}/review-code${r} ${d}PR code review${r}`);
|
|
338
|
+
log(` ${g}/sessions${r} ${d}browse past sessions${r}`);
|
|
339
|
+
log(` ${g}/create-path${r} ${d}generate walkthrough scenarios${r}`);
|
|
340
|
+
log(` ${g}/edit-path${r} ${d}update walkthrough scenarios${r}`);
|
|
341
|
+
log(` ${g}/cmux-guide${r} ${d}workspace navigation ref${r}`);
|
|
342
|
+
log("");
|
|
343
|
+
log(` ${y}restart claude code to load MCP tools + skills${r}`);
|
|
336
344
|
log("");
|
|
337
345
|
}
|
|
338
346
|
|