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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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:
|
|
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
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:
|
|
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 })),
|