* wip * collector parse fixes * refactor for class and also operation for reading * add skill management panel * management panel + lint * management panel + lint * Hide skill in non-docker context * add ask-prompt for edit tool calls * fix dep * fix execa pkg (unused in codebase) * simplify search with ripgrep only and build deps * Fs skill i18n (#5264) i18n * add copy file support * fix translations
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
const { webBrowsing } = require("./web-browsing.js");
|
|
const { webScraping } = require("./web-scraping.js");
|
|
const { websocket } = require("./websocket.js");
|
|
const { docSummarizer } = require("./summarize.js");
|
|
const { saveFileInBrowser } = require("./save-file-browser.js");
|
|
const { chatHistory } = require("./chat-history.js");
|
|
const { memory } = require("./memory.js");
|
|
const { rechart } = require("./rechart.js");
|
|
const { sqlAgent } = require("./sql-agent/index.js");
|
|
const { filesystemAgent } = require("./filesystem/index.js");
|
|
|
|
module.exports = {
|
|
webScraping,
|
|
webBrowsing,
|
|
websocket,
|
|
docSummarizer,
|
|
saveFileInBrowser,
|
|
chatHistory,
|
|
memory,
|
|
rechart,
|
|
sqlAgent,
|
|
filesystemAgent,
|
|
|
|
// Plugin name aliases so they can be pulled by slug as well.
|
|
[webScraping.name]: webScraping,
|
|
[webBrowsing.name]: webBrowsing,
|
|
[websocket.name]: websocket,
|
|
[docSummarizer.name]: docSummarizer,
|
|
[saveFileInBrowser.name]: saveFileInBrowser,
|
|
[chatHistory.name]: chatHistory,
|
|
[memory.name]: memory,
|
|
[rechart.name]: rechart,
|
|
[sqlAgent.name]: sqlAgent,
|
|
[filesystemAgent.name]: filesystemAgent,
|
|
};
|