ferix-code 0.0.1 → 0.0.2-beta.0

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.
Files changed (2) hide show
  1. package/dist/index.js +50 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -68,6 +68,55 @@ 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: "catalog:",
94
+ effect: "^3.12.0",
95
+ "human-id": "^4.1.3",
96
+ picocolors: "catalog:"
97
+ },
98
+ devDependencies: {
99
+ "@ferix/typescript-config": "*",
100
+ "@types/bun": "latest",
101
+ "@types/node": "catalog:",
102
+ tsup: "catalog:",
103
+ typescript: "catalog:"
104
+ },
105
+ publishConfig: {
106
+ access: "public"
107
+ },
108
+ keywords: [
109
+ "cli",
110
+ "ai",
111
+ "ralph",
112
+ "claude",
113
+ "coding-agent",
114
+ "automation",
115
+ "effect"
116
+ ],
117
+ license: "MIT"
118
+ };
119
+
71
120
  // src/program.ts
72
121
  init_esm_shims();
73
122
  import { Effect as Effect17, Stream as Stream10 } from "effect";
@@ -5354,8 +5403,7 @@ init_esm_shims();
5354
5403
 
5355
5404
  // src/index.ts
5356
5405
  var program = new Command();
5357
- program.name("ferix-code").description("Composable RALPH loops for AI coding agents").version("0.1.0");
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) => {
5406
+ 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
5407
  const config = {
5360
5408
  task,
5361
5409
  maxIterations: Number.parseInt(options.iterations, 10),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ferix-code",
3
- "version": "0.0.1",
3
+ "version": "0.0.2-beta.0",
4
4
  "description": "Composable RALPH loops for AI coding agents - v2 with Effect",
5
5
  "type": "module",
6
6
  "bin": {