@tencent-ai/agent-sdk 0.0.1

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,5 @@
1
+ export declare abstract class ApplicationUtils {
2
+ static started: boolean;
3
+ static start(): Promise<void>;
4
+ }
5
+ //# sourceMappingURL=application-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"application-utils.d.ts","sourceRoot":"","sources":["../../src/common/application-utils.ts"],"names":[],"mappings":"AAIA,8BAAsB,gBAAgB;IAClC,MAAM,CAAC,OAAO,UAAS;WACV,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAYtC"}
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApplicationUtils = void 0;
4
+ const core_1 = require("@celljs/core");
5
+ const component_registry_1 = require("./component-registry");
6
+ class ApplicationUtils {
7
+ static async start() {
8
+ if (this.started) {
9
+ return;
10
+ }
11
+ this.started = true;
12
+ try {
13
+ const application = await component_registry_1.ComponentRegistry.get(core_1.Application);
14
+ await application.start();
15
+ }
16
+ catch (error) {
17
+ this.started = false;
18
+ }
19
+ }
20
+ }
21
+ exports.ApplicationUtils = ApplicationUtils;
22
+ ApplicationUtils.started = false;
23
+ //# sourceMappingURL=application-utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"application-utils.js","sourceRoot":"","sources":["../../src/common/application-utils.ts"],"names":[],"mappings":";;;AAAA,uCAA2C;AAE3C,6DAAyD;AAEzD,MAAsB,gBAAgB;IAElC,MAAM,CAAC,KAAK,CAAC,KAAK;QACd,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,OAAO;QACX,CAAC;QACD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC;YACD,MAAM,WAAW,GAAG,MAAM,sCAAiB,CAAC,GAAG,CAAc,kBAAW,CAAC,CAAC;YAC1E,MAAM,WAAW,CAAC,KAAK,EAAE,CAAC;QAC9B,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACb,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACzB,CAAC;IACL,CAAC;;AAbL,4CAcC;AAbU,wBAAO,GAAG,KAAK,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { ComponentId, Newable, Scope } from '@celljs/core';
2
+ export declare abstract class ComponentRegistry {
3
+ static get<T>(id: ComponentId): Promise<T>;
4
+ static rebind<T>(id: ComponentId, constructor: Newable<T>, scope?: Scope): Promise<void>;
5
+ static bind<T>(id: ComponentId, constructor: Newable<T>, scope?: Scope): Promise<void>;
6
+ static unbind(id: ComponentId): Promise<void>;
7
+ static isBound(id: ComponentId): Promise<boolean>;
8
+ static getAll<T>(id: ComponentId): Promise<T[]>;
9
+ }
10
+ //# sourceMappingURL=component-registry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-registry.d.ts","sourceRoot":"","sources":["../../src/common/component-registry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAS3D,8BAAsB,iBAAiB;WACtB,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC,CAAC;WAKnC,MAAM,CAAC,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,KAAK,GAAE,KAAuB,GAAG,OAAO,CAAC,IAAI,CAAC;WAUlG,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,KAAK,GAAE,KAAuB,GAAG,OAAO,CAAC,IAAI,CAAC;WAUhG,MAAM,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;WAKtC,OAAO,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;WAK1C,MAAM,CAAC,CAAC,EAAE,EAAE,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;CAIxD"}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ComponentRegistry = void 0;
4
+ const core_1 = require("@celljs/core");
5
+ const container_provider_1 = require("@celljs/core/lib/common/container/container-provider");
6
+ const dynamic_container_1 = require("@celljs/core/lib/common/container/dynamic-container");
7
+ (async () => {
8
+ const container = await dynamic_container_1.container;
9
+ container_provider_1.ContainerProvider.set(container);
10
+ })();
11
+ class ComponentRegistry {
12
+ static async get(id) {
13
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
14
+ return container.get(id);
15
+ }
16
+ static async rebind(id, constructor, scope = core_1.Scope.Singleton) {
17
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
18
+ if (scope === core_1.Scope.Singleton) {
19
+ container.rebind(id).to(constructor).inSingletonScope();
20
+ }
21
+ else if (scope === core_1.Scope.Request) {
22
+ container.rebind(id).to(constructor).inRequestScope();
23
+ }
24
+ container.rebind(id).to(constructor).inTransientScope();
25
+ }
26
+ static async bind(id, constructor, scope = core_1.Scope.Singleton) {
27
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
28
+ if (scope === core_1.Scope.Singleton) {
29
+ container.bind(id).to(constructor).inSingletonScope();
30
+ }
31
+ else if (scope === core_1.Scope.Transient) {
32
+ container.bind(id).to(constructor).inTransientScope();
33
+ }
34
+ container.bind(id).to(constructor).inRequestScope();
35
+ }
36
+ static async unbind(id) {
37
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
38
+ container.unbind(id);
39
+ }
40
+ static async isBound(id) {
41
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
42
+ return container.isBound(id);
43
+ }
44
+ static async getAll(id) {
45
+ const container = await container_provider_1.ContainerProvider.asyncProvide();
46
+ return container.getAll(id);
47
+ }
48
+ }
49
+ exports.ComponentRegistry = ComponentRegistry;
50
+ //# sourceMappingURL=component-registry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-registry.js","sourceRoot":"","sources":["../../src/common/component-registry.ts"],"names":[],"mappings":";;;AAAA,uCAA2D;AAC3D,6FAAyF;AACzF,2FAAoG;AAEpG,CAAC,KAAK,IAAI,EAAE;IACR,MAAM,SAAS,GAAG,MAAM,6BAAgB,CAAC;IACzC,sCAAiB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;AACrC,CAAC,CAAC,EAAE,CAAC;AAEL,MAAsB,iBAAiB;IACnC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAI,EAAe;QAC/B,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,OAAO,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAC7B,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,MAAM,CAAI,EAAe,EAAE,WAAuB,EAAE,QAAe,YAAK,CAAC,SAAS;QAC3F,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,IAAI,KAAK,KAAK,YAAK,CAAC,SAAS,EAAE,CAAC;YAC5B,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,gBAAgB,EAAE,CAAC;QAC5D,CAAC;aAAM,IAAI,KAAK,KAAK,YAAK,CAAC,OAAO,EAAE,CAAC;YACjC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,cAAc,EAAE,CAAC;QAC1D,CAAC;QACD,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,gBAAgB,EAAE,CAAC;IAC5D,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,IAAI,CAAI,EAAe,EAAE,WAAuB,EAAE,QAAe,YAAK,CAAC,SAAS;QACzF,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,IAAI,KAAK,KAAK,YAAK,CAAC,SAAS,EAAE,CAAC;YAC5B,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,gBAAgB,EAAE,CAAC;QAC1D,CAAC;aAAM,IAAI,KAAK,KAAK,YAAK,CAAC,SAAS,EAAE,CAAC;YACnC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,gBAAgB,EAAE,CAAC;QAC1D,CAAC;QACD,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,cAAc,EAAE,CAAC;IACxD,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAe;QAC/B,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IACzB,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,EAAe;QAChC,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,OAAO,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IACjC,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,MAAM,CAAI,EAAe;QAClC,MAAM,SAAS,GAAG,MAAM,sCAAiB,CAAC,YAAY,EAAE,CAAC;QACzD,OAAO,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAChC,CAAC;CACJ;AAxCD,8CAwCC"}
@@ -0,0 +1,4 @@
1
+ export * from './application-utils';
2
+ export * from './component-registry';
3
+ export * from './services';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./application-utils"), exports);
18
+ __exportStar(require("./component-registry"), exports);
19
+ __exportStar(require("./services"), exports);
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,uDAAqC;AACrC,6CAA2B"}
@@ -0,0 +1,19 @@
1
+ import { ComponentId, Logger, Newable } from '@celljs/core';
2
+ import { RestOperations } from '@celljs/http';
3
+ import { AgentDispatcher } from '@genie/agent-core';
4
+ import { ProductManager, ProductProvider } from '@genie/product';
5
+ import { EventProcessor, EventService, ResourcesProvider, TraceService } from '@genie/telemetry';
6
+ export declare abstract class Services {
7
+ protected static doGet<T>(id: ComponentId): Promise<T>;
8
+ static getProductManager(): Promise<ProductManager>;
9
+ static registerProductProvider(constructor: Newable<ProductProvider>): Promise<void>;
10
+ static getLogger(): Promise<Logger>;
11
+ static registerLogger(constructor: Newable<Logger>): Promise<void>;
12
+ static getTraceService(): Promise<TraceService>;
13
+ static registerResourcesProvider(constructor: Newable<ResourcesProvider>): Promise<void>;
14
+ static getEventService(): Promise<EventService>;
15
+ static registerEventProcessor(constructor: Newable<EventProcessor>): Promise<void>;
16
+ static getAgentDispatcher(): Promise<AgentDispatcher>;
17
+ static getRestOperations(): Promise<RestOperations>;
18
+ }
19
+ //# sourceMappingURL=services.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/common/services.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAS,MAAM,cAAc,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAKjG,8BAAsB,QAAQ;qBACH,KAAK,CAAC,CAAC,EAAE,EAAE,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC,CAAC;IAM5D,MAAM,CAAC,iBAAiB,IAAI,OAAO,CAAC,cAAc,CAAC;WAItC,uBAAuB,CAAC,WAAW,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAM1F,MAAM,CAAC,SAAS,IAAI,OAAO,CAAC,MAAM,CAAC;WAItB,cAAc,CAAC,WAAW,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAKxE,MAAM,CAAC,eAAe,IAAI,OAAO,CAAC,YAAY,CAAC;WAIlC,yBAAyB,CAAC,WAAW,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAM9F,MAAM,CAAC,eAAe,IAAI,OAAO,CAAC,YAAY,CAAC;WAIlC,sBAAsB,CAAC,WAAW,EAAE,OAAO,CAAC,cAAc,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;WAK3E,kBAAkB,IAAI,OAAO,CAAC,eAAe,CAAC;WAK9C,iBAAiB,IAAI,OAAO,CAAC,cAAc,CAAC;CAG5D"}
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Services = void 0;
4
+ const core_1 = require("@celljs/core");
5
+ const http_1 = require("@celljs/http");
6
+ const agent_core_1 = require("@genie/agent-core");
7
+ const product_1 = require("@genie/product");
8
+ const telemetry_1 = require("@genie/telemetry");
9
+ const application_utils_1 = require("./application-utils");
10
+ const component_registry_1 = require("./component-registry");
11
+ class Services {
12
+ static async doGet(id) {
13
+ await application_utils_1.ApplicationUtils.start();
14
+ return component_registry_1.ComponentRegistry.get(id);
15
+ }
16
+ // ---------------------- Product ----------------------
17
+ static getProductManager() {
18
+ return this.doGet(product_1.ProductManager);
19
+ }
20
+ static async registerProductProvider(constructor) {
21
+ await component_registry_1.ComponentRegistry.bind(product_1.ProductProvider, constructor);
22
+ }
23
+ // ---------------------- Logger ----------------------
24
+ static getLogger() {
25
+ return this.doGet(core_1.Logger);
26
+ }
27
+ static async registerLogger(constructor) {
28
+ await component_registry_1.ComponentRegistry.rebind(core_1.Logger, constructor, core_1.Scope.Transient);
29
+ }
30
+ // ---------------------- Tracing ----------------------
31
+ static getTraceService() {
32
+ return this.doGet(telemetry_1.TraceService);
33
+ }
34
+ static async registerResourcesProvider(constructor) {
35
+ await component_registry_1.ComponentRegistry.bind(telemetry_1.ResourcesProvider, constructor);
36
+ }
37
+ // ---------------------- Event ----------------------
38
+ static getEventService() {
39
+ return this.doGet(telemetry_1.EventService);
40
+ }
41
+ static async registerEventProcessor(constructor) {
42
+ await component_registry_1.ComponentRegistry.bind(telemetry_1.EventProcessor, constructor);
43
+ }
44
+ // ---------------------- Agent ----------------------
45
+ static async getAgentDispatcher() {
46
+ return this.doGet(agent_core_1.AgentDispatcher);
47
+ }
48
+ // ---------------------- Http ----------------------
49
+ static async getRestOperations() {
50
+ return this.doGet(http_1.RestOperations);
51
+ }
52
+ }
53
+ exports.Services = Services;
54
+ //# sourceMappingURL=services.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"services.js","sourceRoot":"","sources":["../../src/common/services.ts"],"names":[],"mappings":";;;AAAA,uCAAmE;AACnE,uCAA8C;AAC9C,kDAAoD;AACpD,4CAAiE;AACjE,gDAAiG;AAEjG,2DAAuD;AACvD,6DAAyD;AAEzD,MAAsB,QAAQ;IAChB,MAAM,CAAC,KAAK,CAAC,KAAK,CAAI,EAAe;QAC3C,MAAM,oCAAgB,CAAC,KAAK,EAAE,CAAC;QAC/B,OAAO,sCAAiB,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IACrC,CAAC;IAED,wDAAwD;IACxD,MAAM,CAAC,iBAAiB;QACpB,OAAO,IAAI,CAAC,KAAK,CAAC,wBAAc,CAAC,CAAC;IACtC,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,uBAAuB,CAAC,WAAqC;QACtE,MAAM,sCAAiB,CAAC,IAAI,CAAC,yBAAe,EAAE,WAAW,CAAC,CAAC;IAC/D,CAAC;IAED,uDAAuD;IAEvD,MAAM,CAAC,SAAS;QACZ,OAAO,IAAI,CAAC,KAAK,CAAC,aAAM,CAAC,CAAC;IAC9B,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,cAAc,CAAC,WAA4B;QACpD,MAAM,sCAAiB,CAAC,MAAM,CAAC,aAAM,EAAE,WAAW,EAAE,YAAK,CAAC,SAAS,CAAC,CAAC;IACzE,CAAC;IAED,wDAAwD;IACxD,MAAM,CAAC,eAAe;QAClB,OAAO,IAAI,CAAC,KAAK,CAAC,wBAAY,CAAC,CAAC;IACpC,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,yBAAyB,CAAC,WAAuC;QAC1E,MAAM,sCAAiB,CAAC,IAAI,CAAC,6BAAiB,EAAE,WAAW,CAAC,CAAC;IACjE,CAAC;IAED,sDAAsD;IAEtD,MAAM,CAAC,eAAe;QAClB,OAAO,IAAI,CAAC,KAAK,CAAC,wBAAY,CAAC,CAAC;IACpC,CAAC;IAED,MAAM,CAAC,KAAK,CAAC,sBAAsB,CAAC,WAAoC;QACpE,MAAM,sCAAiB,CAAC,IAAI,CAAC,0BAAc,EAAE,WAAW,CAAC,CAAC;IAC9D,CAAC;IAED,sDAAsD;IACtD,MAAM,CAAC,KAAK,CAAC,kBAAkB;QAC3B,OAAO,IAAI,CAAC,KAAK,CAAC,4BAAe,CAAC,CAAC;IACvC,CAAC;IAED,qDAAqD;IACrD,MAAM,CAAC,KAAK,CAAC,iBAAiB;QAC1B,OAAO,IAAI,CAAC,KAAK,CAAC,qBAAc,CAAC,CAAC;IACtC,CAAC;CACJ;AArDD,4BAqDC"}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=package.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package.spec.d.ts","sourceRoot":"","sources":["../src/package.spec.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ describe('agent-sdk package', () => {
2
+ it('support agent-sdk coverage statistics', () => {
3
+ // do nothing.
4
+ });
5
+ });
6
+ //# sourceMappingURL=package.spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package.spec.js","sourceRoot":"","sources":["../src/package.spec.ts"],"names":[],"mappings":"AAAA,QAAQ,CAAC,mBAAmB,EAAE,GAAG,EAAE;IAE/B,EAAE,CAAC,uCAAuC,EAAE,GAAG,EAAE;QAC7C,cAAc;IAClB,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@tencent-ai/agent-sdk",
3
+ "version": "0.0.1",
4
+ "description": "Tencent AI Agent SDK",
5
+ "main": "./dist/agent-sdk.js",
6
+ "typings": "lib/common/index.d.ts",
7
+ "license": "MIT",
8
+ "dependencies": {},
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "keywords": [
13
+ "agent-sdk"
14
+ ],
15
+ "files": [
16
+ "dist",
17
+ "lib"
18
+ ],
19
+ "scripts": {},
20
+ "devDependencies": {},
21
+ "gitHead": "37ea19db9c246b9656da491092ce2aa2cb98f4f6"
22
+ }