@crewx/cli 0.8.0-rc.80 → 0.8.0-rc.82

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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * CLI convenience wrapper for SqliteTracingPlugin.
3
+ * Accepts a dbRoot string or an options object so existing CLI tests can pass
4
+ * a temp directory path directly.
5
+ */
6
+ import { SqliteTracingPlugin as SdkPlugin } from '@crewx/sdk/plugins';
7
+ export type { SqliteTracingPluginOptions } from '@crewx/sdk/plugins';
8
+ export declare class SqliteTracingPlugin extends SdkPlugin {
9
+ constructor(dbRootOrOpts?: string | {
10
+ dbRoot?: string;
11
+ version?: string;
12
+ });
13
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SqliteTracingPlugin = void 0;
4
+ /**
5
+ * CLI convenience wrapper for SqliteTracingPlugin.
6
+ * Accepts a dbRoot string or an options object so existing CLI tests can pass
7
+ * a temp directory path directly.
8
+ */
9
+ const plugins_1 = require("@crewx/sdk/plugins");
10
+ class SqliteTracingPlugin extends plugins_1.SqliteTracingPlugin {
11
+ constructor(dbRootOrOpts) {
12
+ if (typeof dbRootOrOpts === 'string') {
13
+ super({ dbRoot: dbRootOrOpts });
14
+ }
15
+ else {
16
+ super(dbRootOrOpts);
17
+ }
18
+ }
19
+ }
20
+ exports.SqliteTracingPlugin = SqliteTracingPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/cli",
3
- "version": "0.8.0-rc.80",
3
+ "version": "0.8.0-rc.82",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"
@@ -26,15 +26,15 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "better-sqlite3": "*",
29
- "@crewx/sdk": "0.8.0-rc.80",
30
- "@crewx/doc": "0.1.6",
31
- "@crewx/search": "0.1.6",
29
+ "@crewx/sdk": "0.8.0-rc.82",
32
30
  "@crewx/memory": "0.1.8",
31
+ "@crewx/doc": "0.1.6",
33
32
  "@crewx/wbs": "0.1.7",
33
+ "@crewx/search": "0.1.6",
34
34
  "@crewx/cron": "0.1.6",
35
35
  "@crewx/skill": "0.1.5",
36
- "@crewx/workflow": "0.3.6",
37
36
  "@crewx/shared": "0.0.4",
37
+ "@crewx/workflow": "0.3.6",
38
38
  "@crewx/adapter-slack": "0.1.0"
39
39
  },
40
40
  "devDependencies": {