simmer-automaton 0.6.3 → 0.6.4

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 CHANGED
@@ -436,7 +436,7 @@ export default function register(pluginApi) {
436
436
  }
437
437
  // Also record cycle history (fire-and-forget)
438
438
  const cycleData = {
439
- cycle_num: cycleCount,
439
+ cycle_num: thisCycleNumber,
440
440
  tier: currentTier,
441
441
  epsilon: parseFloat(config.epsilon.toFixed(4)),
442
442
  selected_skills: meta.map((m) => ({ slug: m.slug, reason: m.reason, score: m.score })),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simmer-automaton",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "Simmer Automaton plugin for OpenClaw — autonomous trading skill orchestration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -508,7 +508,7 @@ export default function register(pluginApi: PluginApi) {
508
508
 
509
509
  // Also record cycle history (fire-and-forget)
510
510
  const cycleData: Record<string, unknown> = {
511
- cycle_num: cycleCount,
511
+ cycle_num: thisCycleNumber,
512
512
  tier: currentTier,
513
513
  epsilon: parseFloat(config.epsilon.toFixed(4)),
514
514
  selected_skills: meta.map((m) => ({ slug: m.slug, reason: m.reason, score: m.score })),