dev-flow
01Plugin Claude Code
Plugin marketplace listing 1 plugin: dev-flow.
Plugin Claude Code
Plugin marketplace listing 1 plugin: dev-flow.
Plugin Claude Code
An end-to-end product-development skill suite: one filesystem contract (.workflow/meta.json) and 43 skills that take an idea to production — web (Next.js 16), mobile (Expo/RN), an eve agent engine, Linear/scrum, plus GDPR/AI-Act and Vercel-cost pre-deploy gates.
Cursor rule Cursor
You have access to dev-flow, a set of 8 reference documents (under dev-flow-skills/) that guide product development from idea to running app via a filesystem contract at .workflow/meta.json.
Skill Claude CodeCodex
Run a GDPR + EU AI Act compliance audit on an existing dev-flow project (web / mobile / eve agent) and remediate what it finds. Two modes: Audit (scan the codebase and meta.json#stack against a 10-point risk register — DSAR, consent/cookies, EU data residency, retention and PII-scrubbing, AI-transparency Art.50…
Skill Claude CodeCodex
Use when refactoring React or React Native components that suffer from boolean prop proliferation, missing compound structure, prop drilling, or unclear ownership of state. Codifies the 7 Vercel composition-patterns rules for our web + RN stack — composition or explicit variants over boolean props, compound components…
Skill Claude CodeCodex
Set up or extend a Next.js web app with Coss/UI — the official Cal.com design system, built on Base UI + Tailwind CSS v4 and installed through the shadcn CLI via the namespaced @coss/ registry. Two modes: Init (shadcn init @coss/style on a new project) and Add (pull @coss/ui primitives, single @coss/ components, or…
Skill Claude CodeCodex
Read data in a Next.js 16 App Router app the canonical way — async Server Components first, URL searchParams for filter state, use() + when a Client Component needs server data, Route Handlers + SWR/React Query only as a last resort. Server Actions are for mutations, never reads. Use when the user is about to load…
Skill Claude CodeCodex
Generate or customize a frontend app from a DESIGN.md (Google design.md spec): reads its tokens and produces a working React app pre-styled to match. Next.js 16 + App Router only; pre-16 refused. Four UI libraries — shadcn/ui, Base UI, MUI, Coss/UI (via coss-ui) — and TanStack Form + Zod (default) or react-hook-form.…
Skill Claude CodeCodex
Orchestrate an end-to-end product-development workflow built on atomic skills. Reads .workflow/meta.json in a project directory, works out which phase the user is in (idea → PRD → tasks → design → scaffolded → pages → modules → tests → pre-deploy gates → deployed), and delegates to whichever specialist skill owns the…
Skill Claude CodeCodex
Scaffold and manage an eve agent (Vercel's filesystem-first agent framework) — inside a Next.js app, as apps/agent in a monorepo, or alone at the repo root when the product has no UI. Use whenever the user wants to create, set up or initialize an eve agent; add a tool, skill, channel, connection, schedule, subagent or…
Skill Claude CodeCodex
Port a tool, connection or skill from a public eve/Flue agent registry — atomeve.dev, evex.sh, agentcn, eveagents.dev, the "shadcn for agents" registries — into a multi-tenant eve app WITHOUT adopting the registry's standalone-agent runtime model. Its core is the conformance checklist that makes third-party eve code…
Skill Claude CodeCodex
Use when the user provides a Figma URL and wants to export/extract/generate design tokens, colors, typography, or system documentation into DESIGN.md format—a portable, AI-readable design standard. Includes requests like "crea il design.md", "estrai i token", "portare il design fuori da figma", "design system…
Skill Claude CodeCodex
Build or edit any form in a Next.js 16 App Router app through one shared toolkit in lib/forms/, with dirty + valid Save gating — on TanStack Form + Zod (default) or react-hook-form (auto-detected). Use when the user says "form", "edit panel", "create dialog", "settings page", "save button", "dirty state", or reaches…
Skill Claude CodeCodex
Add a Motion-animated Heroicon to a Next.js app from the heroicons-animated registry instead of hand-animating an SVG. Each icon is a shadcn-registry component installed with shadcn add @heroicons-animated/ , built on the motion runtime. This skill owns the install plus the two things the raw components lack: a…
Skill Claude CodeCodex
Generate a DESIGN.md (Google design.md spec) from 1+ raster images — PNG / JPG screenshots, mockups, Pinterest pins, Dribbble shots, competitor app captures. Extracts palette via k-means, identifies typography + components via vision-LLM, infers layout / radius / spacing, synthesizes a spec-compliant DESIGN.md +…
Skill Claude CodeCodex
Take a dev-flow project into Linear and run it with agile scrum: creates or links the Linear Project, pushes .workflow/tasks.md into estimated, labelled issues, sets up 2-week cycles, then keeps Linear as the source of truth — syncing new tasks up, status and velocity down, planning each sprint to the velocity target.…
Skill Claude CodeCodex
Wire a backend or infrastructure module (auth, database, payments, email, file storage, deploy config) into an already-scaffolded app. Reads .workflow/meta.json#stack for the chosen tech (better-auth, drizzle+neon, stripe, resend, vercel, etc.) and modifies the codebase at the project root to install + configure the…
Skill Claude CodeCodex
Extract logic from apps/web/ or apps/mobile/ into a new or existing shared package under packages/ in a turborepo monorepo, OR create a fresh empty shared package skeleton. Reads .workflow/meta.json with stack.framework="monorepo". Adds the package to pnpm-workspace.yaml (already covered by the wildcard), updates…
Skill Claude CodeCodex
Scaffold a turborepo monorepo on pnpm workspaces, with shared packages (types, design tokens or shared UI, backend client). Three topologies, asked in Step 1: web+mobile (Next.js app AND an Expo + RN app — the classic case), web+agent (Next.js app + an eve agent in apps/agent, no mobile), or web-only (just the…
Skill Claude CodeCodex
Regenerate backend types and re-export them via packages/shared/types/ in a turborepo monorepo so both apps/web/ and apps/mobile/ consume a single typed surface. Supports Supabase (via supabase gen types typescript), neon-drizzle (via drizzle-kit introspect/pull + InferSelectModel/InferInsertModel re-exports — the…
Skill Claude CodeCodex
Turn a raw product idea — a paragraph, a Notion dump, a half-formed thought, or a brief that arrived as a file (.docx, .pdf, .pptx, .xlsx: an RFP, a client deck, a Word spec — converted to Markdown first with anydoc) — into a structured PROJECT.md (high-level brief) and PRD.md (product requirements document) inside a…
Skill Claude CodeCodex
Break down a PRD.md into a concrete, executable tasks.md checklist that a developer or an AI agent can pick up and ship. Reads .workflow/PRD.md (and .workflow/PROJECT.md for context), produces .workflow/tasks.md with one task per checkable bullet, grouped by user story or epic, sized to 2–8 hours each. Output is…
Skill Claude CodeCodex
Use to refactor a React/RN component up the colocation hierarchy (L0 → L1 → L2) when its usage spreads across pages. Two modes: "scan candidates" counts every component's usages across the codebase and reports the promotion candidates against the Rule of Three; "promote " moves the file to the right level, updates all…
Skill Claude CodeCodex
Use to add a new screen to an existing Expo + RN app: from a description, a wireframe, or a screenshot, generate the route file in app/ (Expo Router file-based), wire up data fetching via TanStack Query if needed, apply NativeWind classes from the project DESIGN.md tokens, and respect the scaffolded folder layout.…