@openacp/cli 2026.408.2 → 2026.408.4
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/cli.js +310 -145
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +257 -118
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -875,7 +875,7 @@ declare class AgentInstance extends TypedEmitter<AgentInstanceEvents> {
|
|
|
875
875
|
|
|
876
876
|
declare class AgentStore {
|
|
877
877
|
private data;
|
|
878
|
-
|
|
878
|
+
readonly filePath: string;
|
|
879
879
|
constructor(filePath?: string);
|
|
880
880
|
load(): void;
|
|
881
881
|
exists(): boolean;
|
|
@@ -889,6 +889,7 @@ declare class AgentStore {
|
|
|
889
889
|
|
|
890
890
|
declare class AgentCatalog {
|
|
891
891
|
private store;
|
|
892
|
+
private globalStore;
|
|
892
893
|
private registryAgents;
|
|
893
894
|
private cachePath;
|
|
894
895
|
private agentsDir;
|