@serranolabs.io/munchkins 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/agents/_shared/presets.ts +1 -0
- package/package.json +7 -2
- package/src/index.ts +4 -0
|
@@ -15,6 +15,7 @@ export const SUMMARY_WRITER_PATH = join(SHARED_PROMPTS, "summary-writer.md");
|
|
|
15
15
|
export const TEST_WRITER_PATH = join(SHARED_PROMPTS, "test-writer.md");
|
|
16
16
|
|
|
17
17
|
export const DEFAULT_CHECKS: readonly string[] = [
|
|
18
|
+
"bun run lint:fix",
|
|
18
19
|
"bun run lint",
|
|
19
20
|
"bun run typecheck",
|
|
20
21
|
"bun run scenario",
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serranolabs.io/munchkins",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/serranoio/munchkins.git",
|
|
10
|
+
"directory": "packages/munchkins"
|
|
11
|
+
},
|
|
7
12
|
"publishConfig": {
|
|
8
13
|
"access": "public"
|
|
9
14
|
},
|
|
@@ -22,6 +27,6 @@
|
|
|
22
27
|
"typecheck": "tsc --noEmit"
|
|
23
28
|
},
|
|
24
29
|
"dependencies": {
|
|
25
|
-
"@serranolabs.io/munchkins-core": "0.1.
|
|
30
|
+
"@serranolabs.io/munchkins-core": "0.1.1"
|
|
26
31
|
}
|
|
27
32
|
}
|
package/src/index.ts
CHANGED
|
@@ -8,6 +8,10 @@ if (import.meta.main) {
|
|
|
8
8
|
if (process.argv[2] === "daemon") {
|
|
9
9
|
const { runDaemon } = await import("@serranolabs.io/munchkins-core");
|
|
10
10
|
await runDaemon();
|
|
11
|
+
} else if (process.argv[2] === "resume") {
|
|
12
|
+
const { runResume } = await import("@serranolabs.io/munchkins-core");
|
|
13
|
+
const result = await runResume(process.argv.slice(3));
|
|
14
|
+
process.exit(result.exitCode);
|
|
11
15
|
} else if (process.argv[2] === "skills" && process.argv[3] === "install") {
|
|
12
16
|
const { runSkillsInstall } = await import("./skills-install.js");
|
|
13
17
|
runSkillsInstall(process.argv.slice(4));
|