agentsclimarketplace

New app

Skill euphoriawolf/ai-assisted-app-kit/skills/new-app

A kit for building web apps with an AI coding agent: Claude Code skills that interview you, scaffold the app, write its living docs, and install per-project skills — on top of a production Cloudflare stack (auth, D1, queues, design system).

Install
npx -y skills add euphoriawolf/ai-assisted-app-kit --skill new-app

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 12 days oldThe repository was created 12 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Bootstrap a brand-new production web app from a proven Cloudflare-native starter. Use when the user wants to start a new app, product, SaaS, MVP, or side project from scratch and wants the same spine as a shipped production SaaS — Cloudflare Workers monorepo, Hono API, Astro SSR + SEO, shadcn design system, Google + magic-link auth, D1/Drizzle, optional queue pipeline, optional/provider-agnostic billing + credits (off by default), email lifecycle, and the living-docs (CLAUDE.md / BRAND.md / TODO.md) methodology. Triggers on "new app", "start a new project", "scaffold an app", "spin up a SaaS", "build me the foundation for X".

SKILL.md

7.8 KB, as published. Nobody here has run it

new-app — the app factory

This skill bootstraps a new app from a battle-tested starter and installs a per-project skill kit so the app can be built and grown the same way the app this was extracted from was. It runs once per new idea, then gets out of the way — the durable, per-app skills it drops into the repo take over from there.

Read references/architecture.md first if you are unsure why this skill is shaped the way it is (the two-tier model: this global factory + the project-local kit it installs).

What you produce

A new repo at a path the user chooses, containing:

  • The starter monorepo (templates/starter-monorepo/) — a batteries-included Cloudflare stack (see references/modules.md), renamed and re-bound for the new app.
  • The living source-of-truth docs generated for this idea: CLAUDE.md, AGENTS.md (byte-identical mirror), BRAND.md, TODO.md, SEO-LOOP.md (see references/docs-generation.md).
  • The project-local skill kit in .claude/skills/ (design, brand-voice, build-phase, seo-loop), pre-filled with the app's name, tokens, and phase plan (from templates/project-kit/).
  • A neutral design-system theme ready to reskin (see references/theme.md).

The day-0 flow

Do these in order. Load the referenced file only when you reach that step — keep context lean.

  1. Interview (short). Get: app name (Prose case + technical slug), one-line description, audience, the ONE core object/action (this becomes the items example resource), and which optional modules the app needs. Explicitly ask about business model, don't assume one: does it meter usage with credits (default off)? does it need billing at all, and if so in which market / with which provider (default off, provider: "none")? Most apps start with neither. Ask brand basics too (personality in 3 words, any color/type leaning). Don't over-interview; refine later. If the user gave an idea already, confirm your reading and fill gaps.

  2. Scaffold. Follow references/scaffold.md: choose the target dir, copy templates/starter-monorepo/ there, then do the full rename pass (package scope, worker names, D1/R2/KV/queue bindings, domains). Verify no starterapp/placeholder strings remain except where intended.

  3. Prune modules. Default is batteries-included. Use references/modules.md to remove any module the user opted out of — each has tested removal steps that leave the app booting.

  4. Reskin (neutral → brand). Use references/theme.md to set the app's palette/type from the interview. Keep it light; the installed design skill handles deeper design work later.

  5. Generate the living docs. Use references/docs-generation.md to write CLAUDE.md, AGENTS.md, BRAND.md, TODO.md, SEO-LOOP.md for this idea. Fold in the portable gotchas from references/gotchas.md. For BRAND.md, you may invoke the user's brand-identity / copywriting-tone-of-voice-creator skills for depth; keep the two-non-negotiables structure.

  6. Rewrite the app's own copy. DO NOT SKIP — the starter ships placeholder copy that describes the starter, and shipping it makes the new app advertise the wrong product. Right after BRAND.md exists, sweep the UI and rewrite every user-visible string in the new app's voice:

    • pages/index.astro — hero headline, subcopy, and any feature blurbs (ships as "Ship your idea on the edge / A production starter on the Cloudflare stack")
    • layouts/BaseLayout.astro + layouts/MarketingLayout.astro — the default description
    • components/app/Dashboard.tsx — the empty state and the list heading
    • components/app/New<Resource>Form.tsx — the helper text under the button
    • any remaining mention of "the example job", "example resource", or "starter" Verify with: grep -rniE "starter|example job|example resource|cloudflare stack" packages/web/src (excluding styles/). Run the result past BRAND.md's pre-publish checklist.
  7. Install the project kit. Copy the relevant templates/project-kit/* skills into <app>/.claude/skills/ and fill EVERY placeholder ({{APP_NAME}}, {{APP_SLUG}}, {{PRIMARY_TOKEN}}, {{FONT_SANS}}/{{FONT_MONO}}, {{BRAND_LOOK}}, {{BRAND_PERSONALITY}}, {{NON_NEGOTIABLE_1}}/{{NON_NEGOTIABLE_2}}). Confirm with grep -rho '{{[A-Z_]*}}' .claude/skills returning nothing. Only install seo-loop if the marketing module is kept — it is useless without a marketing site.

  8. Verify boot. Follow references/scaffold.md §Verify: nvm use 22 && pnpm install && pnpm db:generate && pnpm dev; confirm API+queue and web boot, the core resource round-trips the queue to done, the artifact downloads from R2, and a magic-link login issues a session. Typecheck every package and run astro check. Report what actually booted, not what should.

    A green typecheck is NOT enough — you must LOOK at the running UI. Broken Tailwind classes (see the rename traps in scaffold.md) pass tsc and astro check and still destroy the layout. Open the dashboard and the landing page, screenshot both, and check that buttons, the sidebar, and the topbar are actually aligned and styled. If a control renders as bare unstyled text, suspect a corrupted utility class before anything else.

  9. Hand off. Tell the user the repo is ready, point them at TODO.md Phase 1, and remind them which per-app skills are installed (/design, /brand-voice, /build-phase, and /seo-loop if marketing was kept).

Principles baked into every app (state these; they drive the build)

  • Cloudflare-native, edge-first. Workers + Hono + D1/Drizzle + R2 + KV + Queues.
  • API-first. A real backend the frontend and any 3rd party consume; split public/internal OpenAPI.
  • SEO-first + mobile-first + show-don't-tell on the marketing surface.
  • Living docs are law. CLAUDE.md is auto-maintained as the app evolves; AGENTS.md mirrors it byte-for-byte; BRAND.md governs every piece of customer-facing copy.
  • Provider abstraction for any external AI/3rd-party dependency (documented seam in api).
  • Malleable by default — no business model baked in. The core (auth + resource + queue) works with zero credits and zero billing. Both are OPTIONAL layers, off by default, gated by FEATURES (packages/shared/src/constants/features.ts). Billing is provider-agnostic: a PaymentProvider adapter seam (packages/api/src/billing) with polar as a reference and none as the default — swap in Stripe/Paddle/a local processor per market. When credits ARE used, they derive from amount + metadata (one price lever), never a stored count.

Reference index (load on demand)

FileWhen
references/architecture.mdWhy two tiers; what lives where
references/scaffold.mdCopy + rename + wire bindings; verify boot
references/modules.mdModule catalog + per-module prune steps
references/theme.mdNeutral DS tokens + reskin seam
references/docs-generation.mdGenerate CLAUDE/AGENTS/BRAND/TODO/SEO-LOOP
references/gotchas.mdPortable infra gotchas to carry into every app

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.