feat(plugins): persist clawhub storepack metadata

This commit is contained in:
Vincent Koc
2026-05-01 16:50:02 -07:00
parent df32527298
commit 20e8769d93
13 changed files with 223 additions and 1 deletions

View File

@@ -757,6 +757,10 @@ export async function runPluginInstallCommand(params: {
clawhubPackage: result.clawhub.clawhubPackage,
clawhubFamily: result.clawhub.clawhubFamily,
clawhubChannel: result.clawhub.clawhubChannel,
storepackSha256: result.clawhub.storepackSha256,
storepackSpecVersion: result.clawhub.storepackSpecVersion,
storepackManifestSha256: result.clawhub.storepackManifestSha256,
storepackSize: result.clawhub.storepackSize,
},
});
return;
@@ -786,6 +790,10 @@ export async function runPluginInstallCommand(params: {
clawhubPackage: clawhubResult.clawhub.clawhubPackage,
clawhubFamily: clawhubResult.clawhub.clawhubFamily,
clawhubChannel: clawhubResult.clawhub.clawhubChannel,
storepackSha256: clawhubResult.clawhub.storepackSha256,
storepackSpecVersion: clawhubResult.clawhub.storepackSpecVersion,
storepackManifestSha256: clawhubResult.clawhub.storepackManifestSha256,
storepackSize: clawhubResult.clawhub.storepackSize,
},
});
return;