mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 22:37:29 +00:00
Add AgentBBS connector plugin (#131)
Declares the AgentBBS capability surface (chat, pods, arcade, ascii-live, finger) as @logicsrc/plugin-agentbbs and registers it in the CLI registry and CommandBoard API. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
647f204f1d
commit
1bb7ba6e60
13 changed files with 133 additions and 5 deletions
|
|
@ -17,6 +17,7 @@
|
|||
"@logicsrc/account-core": "file:../account-core",
|
||||
"@logicsrc/openontology": "file:../openontology",
|
||||
"@logicsrc/openprd": "file:../openprd",
|
||||
"@logicsrc/plugin-agentbbs": "file:../../plugins/agentbbs",
|
||||
"@logicsrc/plugin-coinpay": "file:../../plugins/coinpay",
|
||||
"@logicsrc/plugin-core": "file:../plugin-core",
|
||||
"@logicsrc/plugin-credential-sharing": "file:../../plugins/credential-sharing",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { createPluginRegistry } from "@logicsrc/plugin-core";
|
||||
import { agentBbsPlugin } from "@logicsrc/plugin-agentbbs";
|
||||
import { coinPayPlugin } from "@logicsrc/plugin-coinpay";
|
||||
import { credentialSharingPlugin } from "@logicsrc/plugin-credential-sharing";
|
||||
import { emailAccountsPlugin } from "@logicsrc/plugin-email-accounts";
|
||||
|
|
@ -7,5 +8,5 @@ import { socialAccountsPlugin } from "@logicsrc/plugin-social-accounts";
|
|||
import { uGigPlugin } from "@logicsrc/plugin-ugig";
|
||||
|
||||
export function defaultPluginRegistry() {
|
||||
return createPluginRegistry([coinPayPlugin, uGigPlugin, feedDiscoveryPlugin, socialAccountsPlugin, emailAccountsPlugin, credentialSharingPlugin]);
|
||||
return createPluginRegistry([coinPayPlugin, uGigPlugin, feedDiscoveryPlugin, socialAccountsPlugin, emailAccountsPlugin, credentialSharingPlugin, agentBbsPlugin]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue