ferix-code 0.0.2-beta.4 → 0.0.2-beta.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/dist/index.d.ts CHANGED
@@ -2264,7 +2264,7 @@ declare const FerixParser: {
2264
2264
  * );
2265
2265
  * ```
2266
2266
  */
2267
- declare const ProductionLayers: Layer.Layer<LLM | SignalParser | PlanStore | SessionStore | ProgressStore | GuardrailsStore, never, never>;
2267
+ declare const ProductionLayers: Layer.Layer<GuardrailsStore | LLM | PlanStore | ProgressStore | SessionStore | SignalParser, never, never>;
2268
2268
  /**
2269
2269
  * Test layer bundle.
2270
2270
  *
@@ -2287,7 +2287,7 @@ declare const ProductionLayers: Layer.Layer<LLM | SignalParser | PlanStore | Ses
2287
2287
  * expect(result).toContainEqual({ _tag: "LoopCompleted", ... });
2288
2288
  * ```
2289
2289
  */
2290
- declare const TestLayers: Layer.Layer<LLM | SignalParser | PlanStore | SessionStore | ProgressStore | GuardrailsStore, never, never>;
2290
+ declare const TestLayers: Layer.Layer<GuardrailsStore | LLM | PlanStore | ProgressStore | SessionStore | SignalParser, never, never>;
2291
2291
  /**
2292
2292
  * Creates a test layer bundle with custom mock LLM events.
2293
2293
  *
@@ -2304,7 +2304,7 @@ declare const TestLayers: Layer.Layer<LLM | SignalParser | PlanStore | SessionSt
2304
2304
  * Effect.runPromise(program.pipe(Effect.provide(customTestLayers)));
2305
2305
  * ```
2306
2306
  */
2307
- declare function createTestLayers(events: Parameters<typeof Mock.layer>[0]["events"]): Layer.Layer<LLM | SignalParser | PlanStore | SessionStore | ProgressStore | GuardrailsStore, never, never>;
2307
+ declare function createTestLayers(events: Parameters<typeof Mock.layer>[0]["events"]): Layer.Layer<GuardrailsStore | LLM | PlanStore | ProgressStore | SessionStore | SignalParser, never, never>;
2308
2308
 
2309
2309
  /**
2310
2310
  * Required services for the orchestrator.
package/dist/index.js CHANGED
@@ -71,10 +71,11 @@ import { Command } from "commander";
71
71
  // package.json
72
72
  var package_default = {
73
73
  name: "ferix-code",
74
- version: "0.0.2-beta.4",
74
+ version: "0.0.2-beta.5",
75
75
  description: "Composable RALPH loops for AI coding agents - v2 with Effect",
76
76
  type: "module",
77
77
  bin: {
78
+ ferix: "dist/index.js",
78
79
  "ferix-code": "dist/index.js"
79
80
  },
80
81
  files: [
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "ferix-code",
3
- "version": "0.0.2-beta.4",
3
+ "version": "0.0.2-beta.5",
4
4
  "description": "Composable RALPH loops for AI coding agents - v2 with Effect",
5
5
  "type": "module",
6
6
  "bin": {
7
+ "ferix": "dist/index.js",
7
8
  "ferix-code": "dist/index.js"
8
9
  },
9
10
  "files": [