@chigichan24/crune 0.1.1 → 0.1.3
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/dist-cli/cli.js +5 -11
- package/package.json +1 -1
package/dist-cli/cli.js
CHANGED
|
@@ -44,7 +44,7 @@ export function parseCliArgs(argv) {
|
|
|
44
44
|
return { sessionsDir, outputDir, count, model, skipSynthesis, dryRun };
|
|
45
45
|
}
|
|
46
46
|
function printUsage() {
|
|
47
|
-
console.
|
|
47
|
+
console.log(`Usage: crune [options]
|
|
48
48
|
|
|
49
49
|
Generate reusable skill definitions from Claude Code session logs.
|
|
50
50
|
|
|
@@ -203,13 +203,7 @@ function extractSkillName(markdown, fallbackLabel) {
|
|
|
203
203
|
.slice(0, 40);
|
|
204
204
|
}
|
|
205
205
|
// ─── Entry point ───────────────────────────────────────────────────
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
if (isDirectRun) {
|
|
211
|
-
main().catch((err) => {
|
|
212
|
-
console.error("Fatal error:", err);
|
|
213
|
-
process.exit(1);
|
|
214
|
-
});
|
|
215
|
-
}
|
|
206
|
+
main().catch((err) => {
|
|
207
|
+
console.error("Fatal error:", err);
|
|
208
|
+
process.exit(1);
|
|
209
|
+
});
|