replicas-engine 0.1.604 → 0.1.607

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/src/index.js CHANGED
@@ -2048,6 +2048,7 @@ Discover and execute installed marketplace tools through the workspace-scoped Ty
2048
2048
 
2049
2049
  Use this when:
2050
2050
  - The user asks for CRM data from Attio
2051
+ - The user asks to manage Calendly events, invitees, or scheduling links
2051
2052
  - The user asks to read or change Google Ads, Docs, Drive, Search Console, or Sheets data
2052
2053
  - The user asks for ClickHouse analytics or PostHog product data
2053
2054
  - The user asks for Stripe customers, payments, invoices, subscriptions, or balances`;
@@ -10126,9 +10127,6 @@ var ClaudeManager = class _ClaudeManager extends CodingAgentManager {
10126
10127
  this.sessionLinearForwarder.processClaudeEventForPlan(msg);
10127
10128
  this.sessionLinearForwarder.sendEvent(convertClaudeEvent(msg, linearSessionId));
10128
10129
  }
10129
- if (msg.type === "assistant") {
10130
- await this.recordContextUsage(response);
10131
- }
10132
10130
  if (msg.type === "result") {
10133
10131
  await this.recordContextUsage(response);
10134
10132
  this.sessionLinearForwarder?.flushThoughtAsResponse();
@@ -10672,7 +10670,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10672
10670
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10673
10671
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10674
10672
  var codexCliVersionEnsured = null;
10675
- var ENGINE_PACKAGE_VERSION = "0.1.604";
10673
+ var ENGINE_PACKAGE_VERSION = "0.1.607";
10676
10674
  var INITIALIZE_METHOD = "initialize";
10677
10675
  var INITIALIZED_NOTIFICATION = "initialized";
10678
10676
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.604",
3
+ "version": "0.1.607",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -7,6 +7,13 @@ export declare const PLUGIN_CATALOG: readonly [{
7
7
  readonly category: "business";
8
8
  readonly name: "Attio";
9
9
  readonly description: "Manage CRM records, people, companies, lists, and notes.";
10
+ }, {
11
+ readonly id: "calendly";
12
+ readonly toolkit: "calendly";
13
+ readonly authType: "oauth";
14
+ readonly category: "productivity";
15
+ readonly name: "Calendly";
16
+ readonly description: "Manage event types, scheduled events, invitees, and scheduling links.";
10
17
  }, {
11
18
  readonly id: "clickhouse";
12
19
  readonly toolkit: "clickhouse";