Imtiaj Bin Aoual
Community@Imtiajrex · Chittagong, Bangladesh
<script> alert("Programmer?") </script>
Agent Skills by Imtiaj Bin Aoual
Showing 6 vetted skills indexed across 1 GitHub repositories.
appflare-cli-deploy
Configure, generate, migrate, and deploy Appflare backends on Cloudflare Workers.
appflare
Guides building Appflare backends on Cloudflare Workers from schema DSL to generated client.
appflare-handlers
Write Appflare query, mutation, scheduler, cron, and storageManager handlers for Cloudflare Workers backends.
appflare-querying
Read and write data in Appflare handlers using the typed ctx.db API.
appflare-client
Connect web and mobile frontends to an Appflare backend using the generated client and React hooks.
appflare-schema
Define Appflare schema tables, columns, and relations and generate D1 migrations.
Frequently Asked Questions About Imtiaj Bin Aoual
FAQPage SchemaWhat tasks can I accomplish with the Appflare skill suite?▼
You can scaffold and deploy Appflare backends on Cloudflare Workers, define schema DSL tables and relations, write query/mutation/cron/scheduler handlers with Zod validation, run typed ctx.db operations with aggregates and transactions, and connect React clients with realtime subscriptions and Better Auth.
Who are the Appflare skills designed for?▼
They target full-stack and backend engineers building on Cloudflare Workers who use the Appflare generate-first framework. Anyone editing appflare.config.ts, importing from appflare or appflare/react, or writing handlers against D1 with Drizzle benefits from these skills.
What are the runtime prerequisites for Appflare deployment?▼
Appflare requires Bun version 1.3.9 or higher plus Wrangler authenticated to a Cloudflare account. The Bun CLI provides build, dev --watch, migrate with local/remote/preview flags, migrate:custom, and add-admin commands, with deployment completed through wrangler deploy.
How do Appflare database migrations and schema changes work?▼
Define tables with the schema DSL using column builders like v.int, v.string, and v.enum, plus relations via v.one, v.many, and v.manyToMany. Apply changes with appflare migrate for generated migrations or migrate:custom for hand-written SQL against D1.
How do frontends consume an Appflare backend?▼
Create a typed client with new Appflare() providing endpoint, wsEndpoint, and bearer-token storage, then call appflare.queries and appflare.mutations. React apps use useQuery, useInfiniteQuery, and useMutation hooks built on TanStack Query, with realtime subscriptions and appflare.auth login.