├── .dockerignore ├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── agents └── otto8.yaml ├── docker-compose.yaml └── site ├── .dockerignore ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── lib │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ ├── +page.ts │ └── login │ ├── +page.svelte │ └── +page.ts ├── static ├── favicon.png └── images │ ├── chat.png │ ├── db.png │ ├── github-mark │ ├── github-mark-white.svg │ └── github-mark.svg │ ├── obot-icon-blue.svg │ ├── obot-icon-white.svg │ ├── obot-logo-blue-black-text.svg │ ├── obot-logo-blue-white-text.svg │ ├── oss.png │ ├── otto8-icon-blue.svg │ ├── otto8-icon-white.svg │ ├── otto8-logo-blue-black-text.svg │ ├── otto8-logo-blue-white-text.svg │ ├── tasks.png │ └── tools.png ├── svelte.config.js ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | site/node_modules 2 | -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/README.md -------------------------------------------------------------------------------- /agents/otto8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/agents/otto8.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /site/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /site/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/.prettierignore -------------------------------------------------------------------------------- /site/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/.prettierrc -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/README.md -------------------------------------------------------------------------------- /site/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/eslint.config.js -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/package.json -------------------------------------------------------------------------------- /site/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/pnpm-lock.yaml -------------------------------------------------------------------------------- /site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/postcss.config.js -------------------------------------------------------------------------------- /site/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/app.css -------------------------------------------------------------------------------- /site/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/app.d.ts -------------------------------------------------------------------------------- /site/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/app.html -------------------------------------------------------------------------------- /site/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/lib/index.ts -------------------------------------------------------------------------------- /site/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/routes/+layout.svelte -------------------------------------------------------------------------------- /site/src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /site/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/routes/+page.svelte -------------------------------------------------------------------------------- /site/src/routes/+page.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /site/src/routes/login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/src/routes/login/+page.svelte -------------------------------------------------------------------------------- /site/src/routes/login/+page.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /site/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/favicon.png -------------------------------------------------------------------------------- /site/static/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/chat.png -------------------------------------------------------------------------------- /site/static/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/db.png -------------------------------------------------------------------------------- /site/static/images/github-mark/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/github-mark/github-mark-white.svg -------------------------------------------------------------------------------- /site/static/images/github-mark/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/github-mark/github-mark.svg -------------------------------------------------------------------------------- /site/static/images/obot-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/obot-icon-blue.svg -------------------------------------------------------------------------------- /site/static/images/obot-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/obot-icon-white.svg -------------------------------------------------------------------------------- /site/static/images/obot-logo-blue-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/obot-logo-blue-black-text.svg -------------------------------------------------------------------------------- /site/static/images/obot-logo-blue-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/obot-logo-blue-white-text.svg -------------------------------------------------------------------------------- /site/static/images/oss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/oss.png -------------------------------------------------------------------------------- /site/static/images/otto8-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/otto8-icon-blue.svg -------------------------------------------------------------------------------- /site/static/images/otto8-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/otto8-icon-white.svg -------------------------------------------------------------------------------- /site/static/images/otto8-logo-blue-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/otto8-logo-blue-black-text.svg -------------------------------------------------------------------------------- /site/static/images/otto8-logo-blue-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/otto8-logo-blue-white-text.svg -------------------------------------------------------------------------------- /site/static/images/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/tasks.png -------------------------------------------------------------------------------- /site/static/images/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/static/images/tools.png -------------------------------------------------------------------------------- /site/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/svelte.config.js -------------------------------------------------------------------------------- /site/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/tailwind.config.ts -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /site/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otto8-ai/otto8/HEAD/site/vite.config.ts --------------------------------------------------------------------------------