Marketplace agentation
Add Agentation visual feedback toolbar to a Next.js project
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/benjitaylor/agentation" ~/.claude/skills/aiskillstore-marketplace-agentation && rm -rf "$T"
manifest:
skills/benjitaylor/agentation/SKILL.mdsource content
Agentation Setup
Set up the Agentation annotation toolbar in this project.
Steps
-
Check if already installed
- Look for
in package.json dependenciesagentation - If not found, run
(or pnpm/yarn based on lockfile)npm install agentation
- Look for
-
Check if already configured
- Search for
or<Agentation
in src/ or app/import { Agentation } - If found, report that Agentation is already set up and exit
- Search for
-
Detect framework
- Next.js App Router: has
orapp/layout.tsxapp/layout.js - Next.js Pages Router: has
orpages/_app.tsxpages/_app.js
- Next.js App Router: has
-
Add the component
For Next.js App Router, add to the root layout:
import { Agentation } from "agentation"; // Add inside the body, after children: {process.env.NODE_ENV === "development" && <Agentation />}For Next.js Pages Router, add to _app:
import { Agentation } from "agentation"; // Add after Component: {process.env.NODE_ENV === "development" && <Agentation />} -
Confirm setup
- Tell the user to run their dev server and look for the Agentation toolbar (floating button in bottom-right corner)
Notes
- The
check ensures Agentation only loads in developmentNODE_ENV - Agentation requires React 18
- No additional configuration needed — it works out of the box