├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── SUBMIT_PLUGIN.md ├── _eslintrc.cjs ├── next.config.mjs ├── package.json ├── plugins ├── APIs-guru │ └── ai-plugin.json ├── BizToc │ └── ai-plugin.json ├── BuildtAI │ └── ai-plugin.json ├── Calculator │ └── ai-plugin.json ├── Datasette │ └── ai-plugin.json ├── FreeTV-App │ └── ai-plugin.json ├── Klarna │ └── ai-plugin.json ├── Milo │ └── ai-plugin.json ├── Pricerunner │ └── ai-plugin.json ├── QuickChart │ └── ai-plugin.json ├── SchoolDigger │ └── ai-plugin.json ├── Shop │ └── ai-plugin.json ├── Slack │ └── ai-plugin.json ├── Speak │ └── ai-plugin.json ├── Urlbox │ └── ai-plugin.json ├── Wellknown │ └── ai-plugin.json ├── WolframAlpha │ └── ai-plugin.json ├── WolframCloud │ └── ai-plugin.json └── Zapier │ └── ai-plugin.json ├── postcss.config.cjs ├── prettier.config.cjs ├── prisma └── schema.prisma ├── public ├── favicon.ico ├── fonts │ └── IBM_Plex_Mono │ │ ├── IBMPlexMono-Bold.ttf │ │ ├── IBMPlexMono-BoldItalic.ttf │ │ ├── IBMPlexMono-ExtraLight.ttf │ │ ├── IBMPlexMono-ExtraLightItalic.ttf │ │ ├── IBMPlexMono-Italic.ttf │ │ ├── IBMPlexMono-Light.ttf │ │ ├── IBMPlexMono-LightItalic.ttf │ │ ├── IBMPlexMono-Medium.ttf │ │ ├── IBMPlexMono-MediumItalic.ttf │ │ ├── IBMPlexMono-Regular.ttf │ │ ├── IBMPlexMono-SemiBold.ttf │ │ ├── IBMPlexMono-SemiBoldItalic.ttf │ │ ├── IBMPlexMono-Thin.ttf │ │ ├── IBMPlexMono-ThinItalic.ttf │ │ └── OFL.txt └── icon.png ├── src ├── components │ ├── Button.tsx │ ├── Chat.tsx │ ├── ChatLine.tsx │ ├── CodeBlock.tsx │ ├── Header.tsx │ ├── PluginCard.tsx │ ├── PluginSearch.tsx │ ├── SearchLayout.tsx │ └── SearchResult.tsx ├── env.mjs ├── initial-plugins.json ├── pages │ ├── _app.tsx │ ├── about.tsx │ ├── api │ │ ├── doc.ts │ │ ├── plugins.ts │ │ └── proxy.ts │ ├── chat.tsx │ ├── index.tsx │ ├── plugin │ │ └── [name].tsx │ └── submit.tsx ├── server │ └── server.ts ├── styles │ └── globals.css └── types.ts ├── tailwind.config.cjs └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/README.md -------------------------------------------------------------------------------- /SUBMIT_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/SUBMIT_PLUGIN.md -------------------------------------------------------------------------------- /_eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/_eslintrc.cjs -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/package.json -------------------------------------------------------------------------------- /plugins/APIs-guru/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/APIs-guru/ai-plugin.json -------------------------------------------------------------------------------- /plugins/BizToc/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/BizToc/ai-plugin.json -------------------------------------------------------------------------------- /plugins/BuildtAI/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/BuildtAI/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Calculator/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Calculator/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Datasette/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Datasette/ai-plugin.json -------------------------------------------------------------------------------- /plugins/FreeTV-App/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/FreeTV-App/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Klarna/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Klarna/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Milo/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Milo/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Pricerunner/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Pricerunner/ai-plugin.json -------------------------------------------------------------------------------- /plugins/QuickChart/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/QuickChart/ai-plugin.json -------------------------------------------------------------------------------- /plugins/SchoolDigger/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/SchoolDigger/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Shop/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Shop/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Slack/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Slack/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Speak/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Speak/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Urlbox/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Urlbox/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Wellknown/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Wellknown/ai-plugin.json -------------------------------------------------------------------------------- /plugins/WolframAlpha/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/WolframAlpha/ai-plugin.json -------------------------------------------------------------------------------- /plugins/WolframCloud/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/WolframCloud/ai-plugin.json -------------------------------------------------------------------------------- /plugins/Zapier/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/plugins/Zapier/ai-plugin.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLight.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-Thin.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/IBMPlexMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/IBMPlexMono-ThinItalic.ttf -------------------------------------------------------------------------------- /public/fonts/IBM_Plex_Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/fonts/IBM_Plex_Mono/OFL.txt -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/public/icon.png -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/Chat.tsx -------------------------------------------------------------------------------- /src/components/ChatLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/ChatLine.tsx -------------------------------------------------------------------------------- /src/components/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/CodeBlock.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/PluginCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/PluginCard.tsx -------------------------------------------------------------------------------- /src/components/PluginSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/PluginSearch.tsx -------------------------------------------------------------------------------- /src/components/SearchLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/SearchLayout.tsx -------------------------------------------------------------------------------- /src/components/SearchResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/components/SearchResult.tsx -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/initial-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/initial-plugins.json -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/api/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/api/doc.ts -------------------------------------------------------------------------------- /src/pages/api/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/api/plugins.ts -------------------------------------------------------------------------------- /src/pages/api/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/api/proxy.ts -------------------------------------------------------------------------------- /src/pages/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/chat.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/plugin/[name].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/plugin/[name].tsx -------------------------------------------------------------------------------- /src/pages/submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/pages/submit.tsx -------------------------------------------------------------------------------- /src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/server/server.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfortuner/wellknown/HEAD/tsconfig.json --------------------------------------------------------------------------------