├── .aider.chat.history.md ├── .aider.input.history ├── .aider.tags.cache.v3 ├── cache.db ├── cache.db-shm └── cache.db-wal ├── .dockerignore ├── .env.sample ├── .github └── workflows │ └── fly-deploy.yml ├── .gitignore ├── Dockerfile ├── README.md ├── bun.lockb ├── components.json ├── eslint.config.js ├── fly.toml ├── index.html ├── jest.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── og-image.png ├── placeholder.svg └── templates │ ├── abstract-algebra.md │ ├── category-theory.md │ ├── complex-analysis.md │ ├── mathematical-logic.md │ ├── number-theory.md │ ├── set-theory.md │ ├── symbolic-systems.md │ ├── systematic-suppression.md │ └── topology.md ├── src ├── App.css ├── App.tsx ├── components │ ├── GenerateDialog.tsx │ ├── MainNav.tsx │ ├── PreviewDialog.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── hooks │ └── use-toast.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── page ├── pages │ ├── About.tsx │ ├── Documentation.tsx │ ├── Index.tsx │ ├── Settings.tsx │ └── Templates.tsx ├── services │ ├── __tests__ │ │ ├── openRouterService.test.ts │ │ └── settingsService.test.ts │ ├── settingsService.ts │ ├── storageService.ts │ └── templateService.ts ├── templates │ ├── abstract-algebra.md │ ├── category-theory.md │ ├── complex-analysis.md │ ├── mathematical-logic.md │ ├── number-theory.md │ ├── set-theory.md │ ├── symbolic-systems.md │ ├── systematic-suppression.md │ └── topology.md ├── test │ └── setup.ts └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── typescript └── vite.config.ts /.aider.chat.history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.aider.chat.history.md -------------------------------------------------------------------------------- /.aider.input.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.aider.input.history -------------------------------------------------------------------------------- /.aider.tags.cache.v3/cache.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.aider.tags.cache.v3/cache.db -------------------------------------------------------------------------------- /.aider.tags.cache.v3/cache.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.aider.tags.cache.v3/cache.db-shm -------------------------------------------------------------------------------- /.aider.tags.cache.v3/cache.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.aider.tags.cache.v3/cache.db-wal -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | .env* 4 | !dist/ 5 | cache.* -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/workflows/fly-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.github/workflows/fly-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/eslint.config.js -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/fly.toml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/templates/abstract-algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/abstract-algebra.md -------------------------------------------------------------------------------- /public/templates/category-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/category-theory.md -------------------------------------------------------------------------------- /public/templates/complex-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/complex-analysis.md -------------------------------------------------------------------------------- /public/templates/mathematical-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/mathematical-logic.md -------------------------------------------------------------------------------- /public/templates/number-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/number-theory.md -------------------------------------------------------------------------------- /public/templates/set-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/set-theory.md -------------------------------------------------------------------------------- /public/templates/symbolic-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/symbolic-systems.md -------------------------------------------------------------------------------- /public/templates/systematic-suppression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/systematic-suppression.md -------------------------------------------------------------------------------- /public/templates/topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/public/templates/topology.md -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/GenerateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/GenerateDialog.tsx -------------------------------------------------------------------------------- /src/components/MainNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/MainNav.tsx -------------------------------------------------------------------------------- /src/components/PreviewDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/PreviewDialog.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/page: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/pages/About.tsx -------------------------------------------------------------------------------- /src/pages/Documentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/pages/Documentation.tsx -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/pages/Settings.tsx -------------------------------------------------------------------------------- /src/pages/Templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/pages/Templates.tsx -------------------------------------------------------------------------------- /src/services/__tests__/openRouterService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/services/__tests__/openRouterService.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/settingsService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/services/__tests__/settingsService.test.ts -------------------------------------------------------------------------------- /src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/services/settingsService.ts -------------------------------------------------------------------------------- /src/services/storageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/services/storageService.ts -------------------------------------------------------------------------------- /src/services/templateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/services/templateService.ts -------------------------------------------------------------------------------- /src/templates/abstract-algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/abstract-algebra.md -------------------------------------------------------------------------------- /src/templates/category-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/category-theory.md -------------------------------------------------------------------------------- /src/templates/complex-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/complex-analysis.md -------------------------------------------------------------------------------- /src/templates/mathematical-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/mathematical-logic.md -------------------------------------------------------------------------------- /src/templates/number-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/number-theory.md -------------------------------------------------------------------------------- /src/templates/set-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/set-theory.md -------------------------------------------------------------------------------- /src/templates/symbolic-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/symbolic-systems.md -------------------------------------------------------------------------------- /src/templates/systematic-suppression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/systematic-suppression.md -------------------------------------------------------------------------------- /src/templates/topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/templates/topology.md -------------------------------------------------------------------------------- /src/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/src/test/setup.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /typescript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/symbolic-scribe/HEAD/vite.config.ts --------------------------------------------------------------------------------