├── .github └── workflows │ └── smoke.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── api │ │ └── copilotkit │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── moon.tsx │ ├── proverbs.tsx │ └── weather.tsx ├── lib │ └── types.ts └── mastra │ ├── agents │ └── index.ts │ ├── index.ts │ └── tools │ └── index.ts └── tsconfig.json /.github/workflows/smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/.github/workflows/smoke.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/api/copilotkit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/app/api/copilotkit/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/components/moon.tsx -------------------------------------------------------------------------------- /src/components/proverbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/components/proverbs.tsx -------------------------------------------------------------------------------- /src/components/weather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/components/weather.tsx -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/mastra/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/mastra/agents/index.ts -------------------------------------------------------------------------------- /src/mastra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/mastra/index.ts -------------------------------------------------------------------------------- /src/mastra/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/src/mastra/tools/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopilotKit/with-mastra/HEAD/tsconfig.json --------------------------------------------------------------------------------