mit einem Klick
agentation
">"
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
">"
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Assist with Colibri: pure-C LLM inference engine for running GLM-5.2 (744B MoE) on consumer machines with ~25 GB RAM. Use when setting up, building, converting models, running inference, configuring expert streaming and caching, optimizing speculative decoding (MTP), GPU integration, and integrating Colibri into production pipelines. Includes build setup, model download & conversion, chat/inference modes, performance tuning, and API integration patterns.
Discover and apply curated prompts from the prompts.chat collection to optimize AI interactions. Use when refining prompt engineering, finding domain-specific prompt templates, improving response quality, or building prompt-based workflows. Triggers on: prompt optimization, prompt templates, prompt engineering, prompt library, curated prompts, prompt discovery, and AI prompt patterns.
Turn ONE topic into a finished Vox-style paper-collage explainer / ad video, end to end on the Atlas Cloud API + local ffmpeg — script, collage keyframes, motion, voice-over, music, captions, all automated. Use this whenever the user wants a "Vox style" video, a paper/torn-paper collage animation, a "motion collage", a narrated explainer or short ad built from AI-generated collage posters, a scrapbook-style tribute, or wants to turn a topic / product / person into a punchy narrated collage video — even if they don't say the word "Vox". Also use when reproducing Stav Zilber / rom1trs / Higgsfield-style collage ad workflows, or when the user asks for a motion collage or a scrapbook-style tribute. Triggers: "vox video", "collage video", "motion collage", "paper collage explainer", "make a collage ad", "turn this topic into a collage video".
Assist with Motion Previs Studio v4: a cross-platform desktop app for AI-film previsualization. Use when setting up, configuring, troubleshooting, or extending motion-previs-studio for pose extraction, depth mapping, camera motion solving, control layer export, and bundle production for AI-video workflows (Seedance, ComfyUI, Blender, Runway, Kling). Includes build setup, feature integration, UI/logic debugging, and export pipeline optimization.
Work with Lapian Notes / 拉片笔记 (github.com/bkingfilm/lapian-notes) — a local- first React/Vite tool that turns a film into an editable shot-by-shot study notebook: local frame extraction, AI-assisted structure analysis (bring your own AI, no API key required), story-line swimlane timeline, structure tree, and audience-emotion curve. Use when the user asks about Lapian Notes, "拉片笔记", "拉片" (shot-by-shot film analysis) tooling, cloning/running this repo (npm run dev, run.bat/run.command), the AI-analysis-package (ZIP) round-trip workflow, or contributing a PR to lapian-notes. Not for generic video editing (use `opencut` for that) or generic film-analysis theory unrelated to this codebase.
Set up, run, and contribute to TokHub (github.com/yaojingang/TokHub) — an open-source AI API relay monitoring, recommendation, and OpenAI-compatible gateway system with L1/L2/L3 channel health probing, usage metering, alerts, audit, and Docker self-hosting. Use when the user asks about TokHub, "AI API 中转站监控", cloning/running the Go + React monorepo (TOKHUB_ROLE, sqlc, TimescaleDB, NATS), the L1/L2/L3 probe algorithm, the OpenAI-compatible `/gateway/v1/*` endpoint, or contributing a PR to TokHub. Do not use for connecting a running agent to a live TokHub instance's own API (that is covered by the project's own bundled `agent-skills/tokhub` skill inside the TokHub repo, not this one).
| name | agentation |
| description | > |
| compatibility | React 18+, Node.js 18+ |
| allowed-tools | Read Write Bash Grep Glob |
| metadata | {"tags":"ui-feedback, browser-annotation, visual-feedback, mcp, react, ai-agent, design-review, css-selector","platforms":"Claude Code, Codex, Gemini CLI, OpenCode, Cursor, Windsurf, ChatGPT","keyword":"agentation","version":"1.1.0","source":"benjitaylor/agentation"} |
agentation is the rendered-UI feedback bridge in this repo.
Use it when a human needs to click the actual UI, attach feedback to the exact element or region they mean, and pass a structured packet to the coding agent. The main job is annotation routing: choose the right annotation mode, capture precise evidence, then hand the fix loop to the right adjacent skill or agent runtime.
Use agentation when the task needs one or more of these:
Do not use agentation by default for:
browser-harnessplaywriterplannotator| If the job needs... | Use |
|---|---|
| Human clicks the UI and leaves exact feedback for the agent | agentation |
| Browser verification in a clean repeatable session | browser-harness |
| The user's already-open browser, cookies, or logged-in tabs | playwriter |
| Review or approval of a plan/diff before execution | plannotator |
Pick one mode before touching setup details:
| Mode | Use when | Output |
|---|---|---|
| Copy-paste review | One reviewer wants to annotate UI and paste the packet into chat | a structured markdown packet |
| Synced watch loop | New annotations should appear in the agent workflow automatically | pending-annotation queue + loop |
| Self-driving critique | An agent/browser loop will generate or consume annotations repeatedly | a review/fix loop packet |
| Platform setup | The core problem is wiring the annotation bridge into Claude/Codex/Gemini/OpenCode | a setup checklist and config target |
If the task is really “test the website” or “drive the logged-in browser,” route out first and only come back to agentation if exact human UI feedback is the missing piece.
agentation does not replace the browser runtime choice.
browser-harness when you want a clean disposable verification browser.playwriter when you must reuse the user's real browser session.agentation once there is a rendered page that a human or loop should annotate precisely.For most setups, the practical order is:
# React toolbar
npm install agentation -D
# MCP bridge / auto-registration for supported agents
npx add-mcp "npx -y agentation-mcp server"
# verify the bridge
npx agentation-mcp doctor
Claude Code users can also install the upstream official skill when that is the simplest way to bootstrap the experience:
npx skills add benjitaylor/agentation -g
# then use /agentation in Claude Code
Start with the smallest useful embed:
import { Agentation } from 'agentation';
function App() {
return (
<>
<YourApp />
{process.env.NODE_ENV === 'development' && <Agentation />}
</>
)
}
Only add endpoint, callbacks, or webhook behavior when the chosen mode actually needs them.
Use when a human is actively reviewing the page and pasting the packet into an agent chat.
Good for:
Use when the agent should poll or ingest pending annotations continuously.
Good for:
Use the bundled verification script before trusting the loop:
bash .agent-skills/agentation/scripts/verify-loop.sh
Use when an agent/browser loop is reviewing UI repeatedly and agentation is the structured feedback packet, not the browser runtime itself.
Typical shape:
agentation encodes concrete feedback targetsWhen the request is really about platform wiring, answer only:
agentation-mcp is registeredPush the platform-specific config blocks into the references instead of bloating the main workflow.
Prefer the bundled scripts before retyping long commands:
| Script | Purpose |
|---|---|
scripts/setup-agentation-mcp.sh | Register the MCP bridge for supported agents |
scripts/verify-loop.sh | Validate annotation queue / ACK → RESOLVE style watch-loop behavior |
agentation, recommend copy-paste review or sync mode, keep browser-runtime choice separate.browser-harness, not agentation, unless human annotation becomes a follow-up step.playwriter, then use agentation for the annotation packet.plannotator, because the artifact is a plan/diff rather than a rendered UI issue.agentation is the feedback bridge, not every browser tool.Deep-dive docs in this skill:
Primary sources: