perchai-cli 2.4.53 → 2.4.54

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/perch.mjs +9 -5
  2. package/package.json +1 -1
package/dist/perch.mjs CHANGED
@@ -76566,7 +76566,6 @@ function getToolDisplayName(toolName) {
76566
76566
  var NON_MODULE_TOOL_OWNERS, TOOL_RISK, TOOL_DISPLAY_NAMES;
76567
76567
  var init_catalog = __esm({
76568
76568
  "features/perchTerminal/runtime/toolSystem/catalog.ts"() {
76569
- "use strict";
76570
76569
  init_toolNames();
76571
76570
  NON_MODULE_TOOL_OWNERS = {
76572
76571
  [TOOL_NAMES.listSources]: "lane",
@@ -91722,6 +91721,7 @@ Final answers lead with findings, name artifacts or delivery status, and give on
91722
91721
  var MARKET_DESK_TOOL_NAMES;
91723
91722
  var init_marketDeskAccess = __esm({
91724
91723
  "features/perchTerminal/runtime/marketDesk/marketDeskAccess.ts"() {
91724
+ "use strict";
91725
91725
  init_toolNames();
91726
91726
  MARKET_DESK_TOOL_NAMES = /* @__PURE__ */ new Set([
91727
91727
  TOOL_NAMES.getMarketSignal,
@@ -92401,6 +92401,7 @@ function listFinancialPlaybooks() {
92401
92401
  var AP_AUDIT_PACKET_DEF, PLAYBOOKS;
92402
92402
  var init_registry2 = __esm({
92403
92403
  "features/perchTerminal/runtime/financialPlaybooks/registry.ts"() {
92404
+ "use strict";
92404
92405
  init_managedWorkflowRegistry2();
92405
92406
  init_toolNames();
92406
92407
  AP_AUDIT_PACKET_DEF = {
@@ -199476,6 +199477,7 @@ function recordDispatchBatchResult(tasks, result2, ctx, opts = {}) {
199476
199477
  var lifecycleByRun, MAX_LIFECYCLE_RUNS;
199477
199478
  var init_workerLifecycle = __esm({
199478
199479
  "features/perchTerminal/runtime/workers/workerLifecycle.ts"() {
199480
+ "use strict";
199479
199481
  init_workerManifest();
199480
199482
  lifecycleByRun = /* @__PURE__ */ new Map();
199481
199483
  MAX_LIFECYCLE_RUNS = 200;
@@ -226230,7 +226232,7 @@ var init_runFlockTurn = __esm({
226230
226232
  init_flockPlanner();
226231
226233
  init_flockRoles();
226232
226234
  init_toolLoop();
226233
- FLOCK_PLANNER_TIMEOUT_MS = 35e3;
226235
+ FLOCK_PLANNER_TIMEOUT_MS = 12e4;
226234
226236
  FLOCK_WORKER_STALL_TIMEOUT_MS = 15e4;
226235
226237
  FLOCK_SYNTHESIS_TIMEOUT_MS = 3e4;
226236
226238
  FLOCK_SYNTHESIS_MAX_OUTPUT_PER_WORKER = 8e3;
@@ -234646,13 +234648,15 @@ function getBackgroundTaskStore() {
234646
234648
  var STORE_FILE, BackgroundTaskStore, singleton;
234647
234649
  var init_backgroundTaskRegistry = __esm({
234648
234650
  "features/perchTerminal/runtime/background/backgroundTaskRegistry.ts"() {
234649
- "use strict";
234650
234651
  init_backgroundTaskTypes();
234651
234652
  STORE_FILE = "background-tasks.json";
234652
234653
  BackgroundTaskStore = class {
234654
+ baseDir;
234655
+ storePath;
234656
+ outputDir;
234657
+ records = /* @__PURE__ */ new Map();
234658
+ loaded = false;
234653
234659
  constructor(options = {}) {
234654
- this.records = /* @__PURE__ */ new Map();
234655
- this.loaded = false;
234656
234660
  this.baseDir = options.baseDir ?? path11.join(os.homedir(), ".perch");
234657
234661
  this.storePath = path11.join(this.baseDir, STORE_FILE);
234658
234662
  this.outputDir = path11.join(this.baseDir, "background-output");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "perchai-cli",
3
- "version": "2.4.53",
3
+ "version": "2.4.54",
4
4
  "description": "Perch AI command-line interface",
5
5
  "bin": {
6
6
  "perch": "bin/perch"