Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

ag-grid-cliAG grid CLI 搜索

Agent Skill

ag-grid-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ag-grid-cli(AG grid CLI 搜索)
来源仓库:https://github.com/adinvadim/ag-grid-cli
仓库路径:skills/ag-grid-cli
安装命令:
npx skills add https://github.com/adinvadim/ag-grid-cli --skill ag-grid-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/adinvadim/ag-grid-cli --skill ag-grid-cli

简介

用于查找、检索和筛选 AG Grid 相关文档、示例及 API 信息,适合在开发中快速定位版本特性或迁移指南。

  • 支持本地 CLI 方式获取框架特定版本的 AG Grid 上下文,包括文档搜索、版本检测和升级指导。
  • 通过终端命令调用,无需编译环境,可直接集成到 Codex、Claude、Cursor 等宿主工具链中使用。
  • 安装前需确认是否具备 GitHub 访问权限,并注意其可能触发的网络请求与文件读写操作。
  • ag-grid-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AG Grid CLI

Use this skill when you need AG Grid documentation, examples, API references, version detection, or migration guidance, but you want a local CLI workflow instead of the AG Grid MCP server.

This CLI is modeled after the official AG Grid MCP server documentation:

  • search_docs
  • detect_version
  • set_version
  • list_versions
  • quick-start
  • upgrade-grid
  • resources for articles, definitions, and examples

Reference:

Purpose

The AG Grid MCP server gives LLMs framework-specific and version-specific AG Grid context. ag-grid-cli exposes the same practical capabilities as terminal commands so an agent can fetch the same class of information directly.

Bootstrap

This skill is designed for zero-build consumption after install.

  • no runtime compilation
  • no runtime npm install
  • bundled CLI is committed to the repo
  • only runtime requirement: Node.js

Primary invocation:

node <skill-dir>/bundle/ag-grid-cli.cjs <command> [args...]

This is the default command agents should use after the skill is installed. Do not assume ag-grid-cli is on PATH.

If the agent knows the installed skill path, run the sibling bundle directly.

Optional shortcut when available:

ag-grid-cli <command> [args...]

Portable fallback on any OS:

node <skill-dir>/bundle/ag-grid-cli.cjs <command> [args...]

Platform wrappers:

  • macOS/Linux: <skill-dir>/ag-grid-cli.sh
  • Windows cmd: <skill-dir>\\ag-grid-cli.cmd
  • Windows PowerShell: <skill-dir>\\ag-grid-cli.ps1

Launcher behavior:

  • the committed bundle is the canonical runtime
  • wrappers call the committed bundle directly
  • ag-grid-cli on PATH is only an optional convenience
  • it requires Node, but does not run npm install at runtime
  • then it executes the CLI

This keeps usage simple for agents embedded in another project: the user can add this skill folder, and the agent can run the committed bundle immediately.

Naming:

  • installed CLI binary: ag-grid-cli
  • repo-local Unix wrapper: ./ag-grid-cli.sh
  • repo-local Windows cmd wrapper: ag-grid-cli.cmd
  • repo-local Windows PowerShell wrapper: ag-grid-cli.ps1
  • repo-local portable bundle entry: node bundle/ag-grid-cli.cjs

Agent Notice

After skill install, prefer the sibling bundle in the installed skill directory:

  • node <skill-dir>/bundle/ag-grid-cli.cjs...

Only use ag-grid-cli... if you already know the binary is available on PATH.

If a prerequisite is missing, say it explicitly before continuing:

  • Node.js is required to run ag-grid-cli.

Do not silently try to compile or install dependencies inside the installed skill directory. Do not run npm install from the skill folder as a bootstrap step.

Use This For

  • detecting the AG Grid version and framework in a repo
  • pinning a version/framework when detection is wrong or ambiguous
  • searching docs before editing AG Grid code
  • fetching full articles, API definitions, and examples
  • generating a quick-start plan for a new or existing grid
  • generating a migration plan for AG Grid upgrades

Command Mapping

Official MCP concept -> CLI equivalent

  • detect_version -> ag-grid-cli detect-version
  • set_version -> ag-grid-cli set-version --version <semver> --framework <framework>
  • list_versions -> ag-grid-cli list-versions
  • search_docs -> ag-grid-cli search-docs "<query>"
  • articles resource -> ag-grid-cli articles list|get
  • definitions resource -> ag-grid-cli definitions list|get
  • examples resource -> ag-grid-cli examples list|get
  • quick-start prompt -> ag-grid-cli quick-start
  • upgrade-grid prompt -> ag-grid-cli upgrade-grid --to <semver>

Default Workflow

When working in an AG Grid repo, do this first:

  1. Detect the current setup.

- node <skill-dir>/bundle/ag-grid-cli.cjs detect-version

  1. If detection fails or the repo is unusual, set it manually.

- node <skill-dir>/bundle/ag-grid-cli.cjs set-version --version 35.1.0 --framework vue

  1. Search docs before changing code.

- node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "cell renderer"

  1. Pull exact resources when the task is implementation-heavy.

- node <skill-dir>/bundle/ag-grid-cli.cjs articles get <slug> - node <skill-dir>/bundle/ag-grid-cli.cjs definitions get <apiName> - node <skill-dir>/bundle/ag-grid-cli.cjs examples get <articleSlug> <exampleSlug>

Recommended Agent Behavior

  • Prefer detect-version before search-docs.
  • Prefer node <skill-dir>/bundle/ag-grid-cli.cjs... as the default invocation.
  • Do not spend turns probing ag-grid-cli on PATH unless the environment already indicates it exists.
  • If the repo uses a non-semver tag like latest, let the CLI normalize it.
  • Use --json when you need machine-readable output for chaining or parsing.
  • Use --plain when you need stable line-based output for shell pipelines.
  • Use explicit --framework and --version overrides in monorepos or mixed-framework repos.
  • For upgrades across multiple major versions, use upgrade-grid and follow one major at a time.

Search Guidance

Use natural language queries, same style as the MCP docs:

  • node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "column sorting"
  • node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "cell renderers" --framework vue
  • node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "server side row model filtering" --version 34.3.0
  • node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "data grid performance" --framework react --limit 3

When search results surface an API name or article slug, follow up with:

  • node <skill-dir>/bundle/ag-grid-cli.cjs definitions get <name>
  • node <skill-dir>/bundle/ag-grid-cli.cjs articles get <slug>

Resource Workflows

List articles:

node <skill-dir>/bundle/ag-grid-cli.cjs articles list --framework vue

Read one article:

node <skill-dir>/bundle/ag-grid-cli.cjs articles get component-cell-renderer --framework vue

List API definitions:

node <skill-dir>/bundle/ag-grid-cli.cjs definitions list --version 35.1.0

Read one definition:

node <skill-dir>/bundle/ag-grid-cli.cjs definitions get cellRenderer

List examples:

node <skill-dir>/bundle/ag-grid-cli.cjs examples list --framework vue --language typescript

Read one example:

node <skill-dir>/bundle/ag-grid-cli.cjs examples get row-ids row-data --framework vue --language typescript

Prompt Workflows

Quick start plan:

node <skill-dir>/bundle/ag-grid-cli.cjs quick-start --framework vue --typescript --feature pagination --feature row-grouping

Upgrade plan:

node <skill-dir>/bundle/ag-grid-cli.cjs upgrade-grid --to 35.1.0

Explicit upgrade path:

node <skill-dir>/bundle/ag-grid-cli.cjs upgrade-grid --from 33.2.0 --to 35.1.0 --framework react

Output Contract

  • Human mode: readable summaries and content blocks.
  • --json: structured stdout.
  • --plain: stable tab-separated or raw content output.
  • Primary data goes to stdout.
  • Errors go to stderr.

Guardrails

  • Do not guess AG Grid version-specific behavior when the CLI can resolve it.
  • Do not skip version detection before migrations unless the user gave an explicit version.
  • Do not jump multiple major AG Grid versions in one migration plan.
  • Prefer fetching the exact article or definition when changing a fragile AG Grid API surface.

Example Agent Loops

Implement a feature:

  1. node <skill-dir>/bundle/ag-grid-cli.cjs detect-version
  2. node <skill-dir>/bundle/ag-grid-cli.cjs search-docs "set filter tree list" --framework vue
  3. node <skill-dir>/bundle/ag-grid-cli.cjs definitions get ISetFilterParams
  4. node <skill-dir>/bundle/ag-grid-cli.cjs examples list --framework vue --language typescript

Plan an upgrade:

  1. node <skill-dir>/bundle/ag-grid-cli.cjs detect-version
  2. node <skill-dir>/bundle/ag-grid-cli.cjs list-versions
  3. node <skill-dir>/bundle/ag-grid-cli.cjs upgrade-grid --to 35.1.0
  4. node <skill-dir>/bundle/ag-grid-cli.cjs articles get upgrading-to-ag-grid-34
  5. node <skill-dir>/bundle/ag-grid-cli.cjs articles get upgrading-to-ag-grid-35

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.85%
按下载量换算23

Claude

29.28%
按下载量换算21

Cursor

20.44%
按下载量换算15

Gemini CLI

8.39%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/adinvadim/ag-grid-cli --skill ag-grid-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills