{"id":29618686,"url":"https://github.com/polymathuniversata/tausi","last_synced_at":"2026-01-20T16:53:58.339Z","repository":{"id":304073546,"uuid":"1015494080","full_name":"polymathuniversata/tausi","owner":"polymathuniversata","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-11T01:57:24.000Z","size":191,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-11T05:35:50.794Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/polymathuniversata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-07T15:29:48.000Z","updated_at":"2025-07-11T01:52:30.000Z","dependencies_parsed_at":"2025-07-11T05:35:52.634Z","dependency_job_id":"62e4ceb1-bc6c-4189-bf47-da294da6177b","html_url":"https://github.com/polymathuniversata/tausi","commit_stats":null,"previous_names":["polymathuniversata/tausi"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/polymathuniversata/tausi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polymathuniversata%2Ftausi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polymathuniversata%2Ftausi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polymathuniversata%2Ftausi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polymathuniversata%2Ftausi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/polymathuniversata","download_url":"https://codeload.github.com/polymathuniversata/tausi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polymathuniversata%2Ftausi/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266226974,"owners_count":23895732,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-21T02:03:21.227Z","updated_at":"2026-01-20T16:53:58.333Z","avatar_url":"https://github.com/polymathuniversata.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🦋 Tausi\n\nLLM-friendly minimal scaffolding tool for full-stack web applications. Tausi generates clean, production-ready projects with your exact tech stack: Vite + Tailwind + Express + Firebase.\n\n## ✨ Features\n\n- 🚀 **Minimal \u0026 Fast**: Only essential dependencies, no bloat\n- � **Opinionated Stack**: Vite + Tailwind + Express + Firebase\n- � **LLM-Optimized**: Clear structure, predictable patterns\n- � **Deploy Ready**: Railway \u0026 Render configurations included\n- � **Security First**: CORS and Firebase Auth built-in\n- 📖 **Rich Documentation**: Architecture docs for humans and LLMs\n\n## 🏗️ Generated Project Structure\n\n```\nyour-project/\n├── frontend/           # Vite + Tailwind + Vanilla JS\n├── backend/            # Express.js + CORS\n├── docs/               # Architecture + LLM context\n└── deployment/         # Railway \u0026 Render configs\n```\n\n## 🚀 Installation\n\n```bash\n# Install globally\nbun install -g tausi\n\n# Or run directly with bunx\nbunx tausi\n```\n\n## 📖 Usage\n\n### CLI Usage (For Developers)\n\n```bash\n# Create a new project\ntausi create my-app\n\n# Create project without authentication\ntausi create my-app --no-auth\n\n# Deploy to specific platform\ntausi create my-app --deploy railway\n\n# Custom author and directory\ntausi create my-app --author \"Your Name\" --directory ./custom-path\n\n# Validate existing project structure\ntausi validate ./my-project\n\n# Clean/fix project structure\ntausi clean ./my-project\n```\n\n### GUI Usage (For Non-Coders)\n\n```bash\n# Start the visual interface\nbun run gui\n\n# Then open http://localhost:3001 in your browser\n```\n\nThe GUI provides a step-by-step wizard to create projects without any command-line knowledge.\n\n## 🛠️ Tech Stack\n\n**Frontend:**\n- Vite (build tool)\n- Tailwind CSS (styling)\n- Vanilla JavaScript (no framework bloat)\n\n**Backend:**\n- Express.js (web framework)\n- CORS (security)\n- Firebase Admin (authentication)\n\n**Deployment:**\n- Railway (preferred)\n- Render (alternative)\n- Docker (containerization)\n\n## 🚀 Generated Project Features\n\n- **🎨 Enhanced UI** - ELabs logo and tech stack showcase\n- **🔒 Security First** - Helmet, rate limiting, input validation\n- **⚡ Zero-config setup** - Works out of the box\n- **🔥 Hot reload** - Frontend and backend development servers\n- **📝 Type safety** - JSDoc comments for better IntelliSense\n- **🛡️ Runtime validation** - Enforces clean project structure\n- **📚 Documentation** - Architecture and deployment guides\n- **🤖 LLM Context** - Optimized for AI-assisted development\n\n## 🛠️ Development\n\n```bash\n# Install dependencies\nbun install\n\n# Run in development mode\nbun run dev\n\n# Build the project\nbun run build\n\n# Run tests\nbun test\n\n# Lint code\nbun run lint\n\n# Format code\nbun run format\n```\n\n## 📁 Project Structure\n\n```\ntausi/\n├── src/\n│   ├── cli.ts              # CLI entry point\n│   ├── types.ts            # TypeScript types\n│   ├── commands/           # CLI commands\n│   │   └── create.ts       # Create project command\n│   └── generators/         # Project generators\n│       └── project-generator.ts\n├── test/                   # Test files\n└── dist/                   # Built files\n```\n\n## 🎯 Design Philosophy\n\n- **Minimal dependencies** - Only what you actually need\n- **LLM-friendly** - Clear, predictable structure for AI assistance\n- **Production-ready** - Security, performance, and deployment built-in\n- **No framework lock-in** - Vanilla JS keeps things simple\n- **Documentation-first** - Every project includes comprehensive docs\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## 📄 License\n\nMIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- Built with [Bun](https://bun.sh/)\n- CLI powered by [Commander.js](https://github.com/tj/commander.js)\n- Beautiful prompts with [Inquirer.js](https://github.com/SBoudrias/Inquirer.js)\n- Colorful output with [Chalk](https://github.com/chalk/chalk)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolymathuniversata%2Ftausi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolymathuniversata%2Ftausi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolymathuniversata%2Ftausi/lists"}