/SKILL.md
Scaffold or regenerate a Bun fullstack monorepo using official generators only: bun create elysia@latest for backend and bun create vite@latest --template react-ts for SPA frontend, then apply core backend wiring (Better Auth, Drizzle, MCP, OpenAPI, CORS, and security defaults). Use when creating or resetting a Bun workspace monorepo to latest generator versions.
npx skillsauth add ahmed-lotfy-dev/bun-monorepo-vite-elysia-spa bun-monorepo-vite-elysia-spaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a Bun workspace monorepo with latest generator output, not manual scaffolding. Use official generators first, then apply backend wiring and security defaults.
apps/backend or apps/frontend should be replaced.bun create elysia@latest apps/backendbun create vite@latest apps/frontend --template react-tsreferences/elysia-core-backend-reference.md (copied from elysia-core-backend) for Better Auth, Drizzle, Postgres, MCP endpoint, OpenAPI docs, CORS allowlist, CSRF middleware, and security headers.bun run --filter "*" <script>).apps/backend, apps/frontend) over patching old generated output when user asks for latest versions.DATABASE_URL.elysia-mcp (not raw McpServer plugin use).vite scripts present (dev, build, preview) with dev binding host for LAN/WSL access.bun installbun run --filter "*" devbun run --filter frontend dev or bun run --filter backend dev3000. Backend default port: 8000.bun run dev --host 0.0.0.0 --port 3000.src/index.ts listens on 8000.bun run db:generate and bun run db:migrate in backend when DB is configured.references/workflow.md for exact commands, package lists, and file expectations.references/elysia-core-backend-reference.md first (copied from elysia-core-backend).ahmed-lotfy-dev/elysia-core-backend.tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.