@signetai/connector-hermes-agent 0.140.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.
package/bin/install.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ import { runConnectorInstaller } from "@signetai/connector-base";
3
+ import { HermesAgentConnector } from "../dist/index.js";
4
+
5
+ runConnectorInstaller("hermes-agent", HermesAgentConnector);
@@ -0,0 +1,38 @@
1
+ import { BaseConnector, type InstallResult, type UninstallResult } from "@signetai/connector-base";
2
+ export interface HermesDiagnosticCheck {
3
+ readonly id: string;
4
+ readonly label: string;
5
+ readonly ok: boolean;
6
+ readonly detail: string;
7
+ readonly fix?: string;
8
+ }
9
+ export interface HermesDoctorReport {
10
+ readonly ok: boolean;
11
+ readonly hermesHome: string;
12
+ readonly hermesRepo: string | null;
13
+ readonly configPath: string;
14
+ readonly userPluginDir: string;
15
+ readonly repoPluginDir: string | null;
16
+ readonly toolNames: readonly string[];
17
+ readonly checks: readonly HermesDiagnosticCheck[];
18
+ readonly warnings: readonly string[];
19
+ }
20
+ export declare class HermesAgentConnector extends BaseConnector {
21
+ readonly name = "Hermes Agent";
22
+ readonly harnessId = "hermes-agent";
23
+ private getHermesHome;
24
+ private getHermesRepo;
25
+ getConfigPath(): string;
26
+ install(basePath: string): Promise<InstallResult>;
27
+ uninstall(): Promise<UninstallResult>;
28
+ isInstalled(): boolean;
29
+ diagnose(): Promise<HermesDoctorReport>;
30
+ }
31
+ export declare function diagnoseHermesIntegration(opts?: {
32
+ readonly hermesHome?: string;
33
+ readonly hermesRepo?: string | null;
34
+ readonly daemonUrl?: string;
35
+ }): Promise<HermesDoctorReport>;
36
+ export declare function createConnector(): HermesAgentConnector;
37
+ export default HermesAgentConnector;
38
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,KAAK,aAAa,EAAE,KAAK,eAAe,EAAE,MAAM,wBAAwB,CAAC;AA6CjG,MAAM,WAAW,qBAAqB;IACrC,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,EAAE,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,QAAQ,CAAC,SAAS,EAAE,SAAS,MAAM,EAAE,CAAC;IACtC,QAAQ,CAAC,MAAM,EAAE,SAAS,qBAAqB,EAAE,CAAC;IAClD,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;CACrC;AAioBD,qBAAa,oBAAqB,SAAQ,aAAa;IACtD,QAAQ,CAAC,IAAI,kBAAkB;IAC/B,QAAQ,CAAC,SAAS,kBAAkB;IAEpC,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,aAAa;IAIrB,aAAa,IAAI,MAAM;IAIjB,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC;IAoLjD,SAAS,IAAI,OAAO,CAAC,eAAe,CAAC;IAuD3C,WAAW,IAAI,OAAO;IAQhB,QAAQ,IAAI,OAAO,CAAC,kBAAkB,CAAC;CAS7C;AAED,wBAAsB,yBAAyB,CAAC,IAAI,CAAC,EAAE;IACtD,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC5B,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAyF9B;AAED,wBAAgB,eAAe,IAAI,oBAAoB,CAEtD;AAED,eAAe,oBAAoB,CAAC"}