@tokagent/tokagentos 2.0.29 → 2.0.30
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/package.json +1 -1
- package/scaffold-patches/packages/agent/src/api/plugin-routes.ts +1889 -0
- package/scaffold-patches/packages/agent/src/api/server.ts +4509 -0
- package/scaffold-patches/packages/agent/src/api/trigger-routes.ts +942 -0
- package/scaffold-patches/packages/agent/src/runtime/core-plugins.ts +4 -0
- package/scaffold-patches/packages/agent/src/triggers/runtime.ts +955 -0
- package/scaffold-patches/packages/app-core/src/api/client-agent.ts +2755 -0
- package/scaffold-patches/packages/app-core/src/components/pages/AutomationsView.tsx +446 -26
- package/scaffold-patches/packages/app-core/src/components/pages/SettingsView.tsx +155 -0
- package/scaffold-patches/packages/shared/src/onboarding-presets.characters.ts +16 -16
- package/templates/fullstack-app/package.json +9 -5
- package/templates/fullstack-app/plugins/plugin-tokagent-billing/src/routes/messages-proxy-routes.ts +114 -3
- package/templates/fullstack-app/plugins/plugin-web-fetch/build.ts +35 -0
- package/templates/fullstack-app/plugins/plugin-web-fetch/package.json +37 -0
- package/templates/fullstack-app/plugins/plugin-web-fetch/src/index.ts +471 -0
- package/templates/fullstack-app/plugins/plugin-web-fetch/tsconfig.json +20 -0
- package/templates/fullstack-app/scripts/ensure-plugin-builds.mjs +1 -0
- package/templates/fullstack-app/scripts/verify-llm-plugins.mjs +122 -0
- package/templates-manifest.json +1 -1
|
@@ -175,6 +175,10 @@ const TOKAGENT_PLUGINS: readonly string[] = [
|
|
|
175
175
|
// so auto-loading is safe — it only makes the SETUP_BILLING action reachable
|
|
176
176
|
// before the operator has configured billing. The kill switch is BILLING_ENABLED.
|
|
177
177
|
"@tokagent/plugin-tokagent-billing",
|
|
178
|
+
// FETCH_URL + WEB_SEARCH actions — Node-fetch + Tavily-backed web access
|
|
179
|
+
// for triggers and chat. No external service for FETCH_URL; WEB_SEARCH
|
|
180
|
+
// requires TAVILY_API_KEY (handler returns a clear error if missing).
|
|
181
|
+
"@tokagent/plugin-web-fetch",
|
|
178
182
|
];
|
|
179
183
|
|
|
180
184
|
/** Core plugins always loaded. Upstream list, then Tokagent overlays. */
|