Your coding agent can now process documents without leaving the IDE.
Add Agentic Document Extraction (ADE) skills to Claude Code, and the setup takes two commands.
Connect to the plugin marketplace, install the ADE Document Processing skill, then reload your plugins.
Once the skill is active, your agent parses documents into structured Markdown and pulls structured fields directly inside your workflow. No switching tools, no writing client boilerplate from scratch.
Full setup steps live at
drop a MARK ZIP into claude code and ask for a dashboard page
what came out:
src/db/schema.ts — user stats table with drizzle ORM
src/db/index.ts — postgres pool setup
app/dashboard/page.tsx — async server component, direct DB call, no "use client" mistake
loading.tsx and error.tsx with proper App Router convention
claude code already knew the patterns before i typed anything
that's what the nextjs-app-router skill file does. it carries the conventions into the session so you don't have to explain them.
repo was ixartz/Next-js-Boilerplate. 10k stars.