ferix-code 0.0.1 → 0.0.2-beta.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/dist/index.js +49 -2
- package/package.json +7 -8
package/dist/index.js
CHANGED
|
@@ -68,6 +68,54 @@ var init_registry = __esm({
|
|
|
68
68
|
init_esm_shims();
|
|
69
69
|
import { Command } from "commander";
|
|
70
70
|
|
|
71
|
+
// package.json
|
|
72
|
+
var package_default = {
|
|
73
|
+
name: "ferix-code",
|
|
74
|
+
version: "0.0.2-beta.0",
|
|
75
|
+
description: "Composable RALPH loops for AI coding agents - v2 with Effect",
|
|
76
|
+
type: "module",
|
|
77
|
+
bin: {
|
|
78
|
+
"ferix-code": "./dist/index.js"
|
|
79
|
+
},
|
|
80
|
+
files: [
|
|
81
|
+
"dist"
|
|
82
|
+
],
|
|
83
|
+
scripts: {
|
|
84
|
+
build: "tsup",
|
|
85
|
+
dev: "tsup --watch",
|
|
86
|
+
"check-types": "tsc --noEmit",
|
|
87
|
+
test: "bun test",
|
|
88
|
+
"test:watch": "bun test --watch"
|
|
89
|
+
},
|
|
90
|
+
dependencies: {
|
|
91
|
+
"@effect/platform": "^0.72.0",
|
|
92
|
+
"@effect/platform-node": "^0.66.0",
|
|
93
|
+
commander: "^14.0.0",
|
|
94
|
+
effect: "^3.12.0",
|
|
95
|
+
"human-id": "^4.1.3",
|
|
96
|
+
picocolors: "^1.1.1"
|
|
97
|
+
},
|
|
98
|
+
devDependencies: {
|
|
99
|
+
"@types/bun": "latest",
|
|
100
|
+
"@types/node": "^22.15.3",
|
|
101
|
+
tsup: "^8.4.0",
|
|
102
|
+
typescript: "5.9.2"
|
|
103
|
+
},
|
|
104
|
+
publishConfig: {
|
|
105
|
+
access: "public"
|
|
106
|
+
},
|
|
107
|
+
keywords: [
|
|
108
|
+
"cli",
|
|
109
|
+
"ai",
|
|
110
|
+
"ralph",
|
|
111
|
+
"claude",
|
|
112
|
+
"coding-agent",
|
|
113
|
+
"automation",
|
|
114
|
+
"effect"
|
|
115
|
+
],
|
|
116
|
+
license: "MIT"
|
|
117
|
+
};
|
|
118
|
+
|
|
71
119
|
// src/program.ts
|
|
72
120
|
init_esm_shims();
|
|
73
121
|
import { Effect as Effect17, Stream as Stream10 } from "effect";
|
|
@@ -5354,8 +5402,7 @@ init_esm_shims();
|
|
|
5354
5402
|
|
|
5355
5403
|
// src/index.ts
|
|
5356
5404
|
var program = new Command();
|
|
5357
|
-
program.name("ferix-code").description("Composable RALPH loops for AI coding agents").version("
|
|
5358
|
-
program.command("run").description("Run a ralph loop").argument("<task>", "Task description or path to PRD file").option("-i, --iterations <n>", "Maximum iterations", "1").option("-v, --verify <commands...>", "Verification commands").option("--branch <name>", "Git branch to create").option("--push", "Push branch after completion").option("--pr", "Create PR after pushing").action(async (task, options) => {
|
|
5405
|
+
program.name("ferix-code").description("Composable RALPH loops for AI coding agents").version(package_default.version).argument("<task>", "Task description or path to PRD file").option("-i, --iterations <n>", "Maximum iterations", "1").option("-v, --verify <commands...>", "Verification commands").option("--branch <name>", "Git branch to create").option("--push", "Push branch after completion").option("--pr", "Create PR after pushing").action(async (task, options) => {
|
|
5359
5406
|
const config = {
|
|
5360
5407
|
task,
|
|
5361
5408
|
maxIterations: Number.parseInt(options.iterations, 10),
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ferix-code",
|
|
3
|
-
"version": "0.0.1",
|
|
3
|
+
"version": "0.0.2-beta.1",
|
|
4
4
|
"description": "Composable RALPH loops for AI coding agents - v2 with Effect",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"ferix-code": "
|
|
7
|
+
"ferix-code": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
@@ -19,17 +19,16 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@effect/platform": "^0.72.0",
|
|
21
21
|
"@effect/platform-node": "^0.66.0",
|
|
22
|
-
"commander": "
|
|
22
|
+
"commander": "^14.0.0",
|
|
23
23
|
"effect": "^3.12.0",
|
|
24
24
|
"human-id": "^4.1.3",
|
|
25
|
-
"picocolors": "
|
|
25
|
+
"picocolors": "^1.1.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@ferix/typescript-config": "*",
|
|
29
28
|
"@types/bun": "latest",
|
|
30
|
-
"@types/node": "
|
|
31
|
-
"tsup": "
|
|
32
|
-
"typescript": "
|
|
29
|
+
"@types/node": "^22.15.3",
|
|
30
|
+
"tsup": "^8.4.0",
|
|
31
|
+
"typescript": "5.9.2"
|
|
33
32
|
},
|
|
34
33
|
"publishConfig": {
|
|
35
34
|
"access": "public"
|