npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agentation-vue3

v1.0.4

Published

Visual feedback for AI coding agents - Vue 3 version

Downloads

793

Readme

agentation-vue3

中文 | English


中文

作者 Binyy,基于 Benji TaylorDennis JinAlex Vanderzon 的 React 版本

React版本:GitHub · NPM · EXAMPLE

Vue3版本:GitHub · NPM · EXAMPLE

Vue2版本:GitHub · NPM · EXAMPLE

Agentation 是一个与 AI 工具无关的 Vue 3 可视化反馈工具。点击页面上的元素,添加注释,然后复制结构化输出,帮助 AI 编程助手找到您所指的确切代码。

安装

npm install agentation-vue3 -D
pnpm add agentation-vue3 -D

使用方法

<script setup>
import { Agentation } from 'agentation-vue3'
import 'agentation-vue3/dist/style.css'
</script>

<template>
  <YourApp />
  <Agentation />
</template>

工具栏出现在右下角。点击激活,然后点击任意元素进行标注。

属性

| 属性 | 类型 | 默认值 | 描述 | |------|------|--------|------| | accentColor | string | '#3c82f7' | 自定义强调色(十六进制) | | copyToClipboard | boolean | true | 点击复制按钮时是否复制到剪贴板 | | lightMode | boolean | false | 浅色模式样式 | | zIndex | number | 2147483647 | 工具栏的 z-index |

功能特性

  • 点击标注 – 点击任意元素,自动识别选择器
  • 文本选择 – 选择文本以标注特定内容
  • 动画暂停 – 冻结 CSS 动画以捕获特定状态
  • 结构化输出 – 复制包含选择器、位置和上下文的 markdown
  • 深色/浅色模式 – 匹配您的偏好或手动设置
  • 可拖拽工具栏 – 将工具栏重新定位到屏幕任意位置
  • 键盘快捷键 – 按 ESC 关闭工具栏
  • 零依赖 – 纯 CSS 动画,无运行时库

工作原理

Agentation 捕获类名、选择器和元素位置,以便 AI 助手可以 grep 搜索您所指的确切代码。您不再需要描述"侧边栏中的蓝色按钮",而是直接给 AI 助手提供 .sidebar > button.primary 和您的反馈。

系统要求

  • Vue 3.3+
  • 桌面浏览器(不支持移动端)

文档

完整文档请访问 https://agentation-vue3.starpipi.eu.org


English

Made by binyy | Official Site, forked from Benji Taylor, Dennis Jin, and Alex Vanderzon's React version

Original React Version: GitHub · NPM

Agentation is an agent-agnostic visual feedback tool for Vue 3. Click elements on your page, add notes, and copy structured output that helps AI coding agents find the exact code you're referring to.

Install

npm install agentation-vue3 -D

Usage

<script setup>
import { Agentation } from 'agentation-vue3'
import 'agentation-vue3/dist/style.css'
</script>

<template>
  <YourApp />
  <Agentation />
</template>

The toolbar appears in the bottom-right corner. Click to activate, then click any element to annotate it.

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | accentColor | string | '#3c82f7' | Custom accent color (hex) | | copyToClipboard | boolean | true | Whether to copy to clipboard when the copy button is clicked | | lightMode | boolean | false | Light mode styling | | zIndex | number | 2147483647 | z-index for the toolbar |

Features

  • Click to annotate – Click any element with automatic selector identification
  • Text selection – Select text to annotate specific content
  • Animation pause – Freeze CSS animations to capture specific states
  • Structured output – Copy markdown with selectors, positions, and context
  • Dark/light mode – Matches your preference or set manually
  • Draggable toolbar – Reposition the toolbar anywhere on screen
  • Keyboard shortcuts – Press ESC to close the toolbar
  • Zero dependencies – Pure CSS animations, no runtime libraries

How it works

Agentation captures class names, selectors, and element positions so AI agents can grep for the exact code you're referring to. Instead of describing "the blue button in the sidebar," you give the agent .sidebar > button.primary and your feedback.

Requirements

  • Vue 3.3+
  • Desktop browser (mobile not supported)

Docs

Full documentation at https://agentation-vue3.starpipi.eu.org/


License

© 2026 Binyy Licensed under PolyForm Shield 1.0.0