Problem
As of Eliza v0.25.8, adding this plugin via npx elizaos plugins add @elizaos-plugins/plugin-solana results in the following error:

Upon executing the failed command pnpm add @elizaos/core@workspace:* --filter ./packages/plugin-solana for more context, this results in the following error related to plugin-tee:

I suspect this is due to the removal of packages from the main eliza project from commit 670e1ad
Temporary Workaround Found
So far I've found doing the following works as a temporary workaround:
- Add the following plugin:
npx elizaos plugins add @elizaos-plugins/plugin-tee
- Update the package.json's
@elizaos/plugin-tee to @elizaos-plugins/plugin-tee and @elizaos/plugin-trustdb (currently as I write this it appears trustdb has been removed as a plugin via commit 1cadbc2)?
-"@elizaos/plugin-tee": "workspace:*",
+"@elizaos-plugins/plugin-tee": "workspace:*",
-"@elizaos/plugin-trustdb": "workspace:*",
+"@elizaos/plugin-trustdb": "0.25.6-alpha.1",
- Update the following plugins being imported inside of keypairUtils.ts
-import { DeriveKeyProvider, TEEMode } from "@elizaos/plugin-tee";
+import { DeriveKeyProvider, TEEMode } from "@elizaos-plugins/plugin-tee";
- Import uuid as it's missing from the eliza monorepo:
pnpm add uuid -w
It might be worth to update the references of @elizaos/plugin-tee to @elizaos-plugins/plugin-tee and add uuid as a dependency.
Problem
As of Eliza v0.25.8, adding this plugin via
npx elizaos plugins add @elizaos-plugins/plugin-solanaresults in the following error:Upon executing the failed command
pnpm add @elizaos/core@workspace:* --filter ./packages/plugin-solanafor more context, this results in the following error related to plugin-tee:I suspect this is due to the removal of packages from the main eliza project from commit 670e1ad
Temporary Workaround Found
So far I've found doing the following works as a temporary workaround:
npx elizaos plugins add @elizaos-plugins/plugin-tee@elizaos/plugin-teeto@elizaos-plugins/plugin-teeand@elizaos/plugin-trustdb(currently as I write this it appears trustdb has been removed as a plugin via commit 1cadbc2)?pnpm add uuid -wIt might be worth to update the references of
@elizaos/plugin-teeto@elizaos-plugins/plugin-teeand adduuidas a dependency.