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

groove-admin-cursor-hooksgroove admin Cursor hooks 命令行

Agent Skill

groove-admin-cursor-hooks 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,958

周安装

170

GitHub Stars

4

下载量

1,387
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andreadellacorte/groove --skill groove-admin-cursor-hooks

简介

groove-admin-cursor-hooks 集成 Cursor IDE 的钩子机制,支持事件驱动的任务触发。

  • 适用于编辑器内自动响应文件保存、提交等动作并执行预设脚本。
  • 可结合其他技能实现代码检查、日志记录或通知推送等功能。
  • 需确保钩子函数安全,避免执行不可信代码造成系统漏洞。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

groove-admin-cursor-hooks

Install groove's Cursor native hooks. These run outside the model — deterministic, unconditional — and complement groove's advisory markdown hooks (.groove/hooks/start.md, end.md).

Use --disable <hook> to remove a specific hook. Use --list to show current status.

Outcome

Selected hooks are registered in .cursor/hooks.json and shell scripts are written to .groove/hooks/cursor/. Hooks fire automatically on Cursor lifecycle events without any model involvement.

Available hooks

NameEventMatcherWhat it does
context-reprimesessionStartRuns the prime script with --json — ensures full workflow context is loaded after every session start and compaction
daily-end-reminderstopIf hour is 16–21 local time and .groove/index.md exists, prints a reminder to run /groove-daily-end
git-activity-bufferpostToolUseShellIf the command contains git commit, appends a timestamped line to .groove/.cache/git-activity-buffer.txt
block-managed-pathspreToolUseWriteIf file_path starts with .agents/skills/groove or skills/groove, exits with code 2 to block the write with an explanatory message
version-checkpostToolUseChecks for a new groove version once per hour; calls groove-utilities-check

Steps

--list

Read .cursor/hooks.json if it exists. Report which groove hooks are registered and which scripts exist in .groove/hooks/cursor/. Exit.

--disable <hook>

Remove the named hook's entry from .cursor/hooks.json (leave the script in place). Report removed / not found. Exit.

Default (install)

  1. Ask which hooks to enable (default: all five): Which hooks to install? (all / comma-separated: context-reprime, daily-end-reminder, git-activity-buffer, block-managed-paths, version-check) Press enter for all.
  2. Read .cursor/hooks.json if it exists; parse as JSON (default {"version": 1, "hooks": {}}). Never discard existing non-groove entries.
  3. Create .groove/hooks/cursor/ directory if absent. Make each script executable (chmod +x).
  4. For each selected hook: write the shell script and merge the hook entry into .cursor/hooks.json.
  5. Write .cursor/hooks.json with the merged result.
  6. Report summary: ✓ context-reprime — sessionStart hook → groove-utilities-prime.sh --json ✓ daily-end-reminder — stop hook →.groove/hooks/cursor/daily-end-reminder.sh ✓ git-activity-buffer — postToolUse/Shell hook →.groove/hooks/cursor/git-activity-buffer.sh ✓ block-managed-paths — preToolUse/Write hook →.groove/hooks/cursor/block-managed-paths.sh ✓ version-check — postToolUse hook →.groove/hooks/cursor/version-check.sh ✓.cursor/hooks.json updated

Shell script templates

Write these verbatim to .groove/hooks/cursor/. Never overwrite an existing script without showing a diff and confirming.

daily-end-reminder.sh

#!/usr/bin/env bash
# groove: stop hook — remind about /groove-daily-end during work hours
hour=$(date +%H)
if [ -f "$CLAUDE_PROJECT_DIR/.groove/index.md" ] && [ "$hour" -ge 16 ] && [ "$hour" -le 21 ]; then
  echo "groove: end of work hours — consider running /groove-daily-end"
fi

git-activity-buffer.sh

#!/usr/bin/env bash
# groove: postToolUse/Shell hook — buffer git commits for memory log
input=$(cat)
command=$(echo "$input" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('tool_input',{}).get('command',''))" 2>/dev/null)
if echo "$command" | grep -q "git commit"; then
  msg=$(echo "$command" | grep -oP '(?<=-m ")[^"]+' | head -1)
  mkdir -p "$CLAUDE_PROJECT_DIR/.groove/.cache"
  echo "$(date '+%Y-%m-%d %H:%M') | ${msg:-<no message>}" >> "$CLAUDE_PROJECT_DIR/.groove/.cache/git-activity-buffer.txt"
fi

block-managed-paths.sh

#!/usr/bin/env bash
# groove: preToolUse/Write hook — block edits to managed groove paths
input=$(cat)
path=$(echo "$input" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('tool_input',{}).get('file_path',''))" 2>/dev/null)
if echo "$path" | grep -qE '^(\.agents/skills/groove|skills/groove)'; then
  echo "groove: blocked — '$path' is managed by groove update. Edit under skills/ and rsync to .agents/skills/." >&2
  exit 2
fi

version-check.sh

#!/usr/bin/env bash
# groove: postToolUse hook — check for new groove version (once per hour)
CACHE="$CLAUDE_PROJECT_DIR/.groove/.cache/last-version-check-ts"
mkdir -p "$CLAUDE_PROJECT_DIR/.groove/.cache"
now=$(date +%s)
if [ -f "$CACHE" ]; then
  last=$(cat "$CACHE")
  diff=$((now - last))
  [ "$diff" -lt 3600 ] && exit 0
fi
echo "$now" > "$CACHE"
bash "$CLAUDE_PROJECT_DIR/.agents/skills/groove-utilities-check/scripts/check.sh" 2>/dev/null || true

.cursor/hooks.json template

Merge these into the hooks key. Preserve all other keys.

{
  "version": 1,
  "hooks": {
    "sessionStart": [
      {
        "command": "bash $CLAUDE_PROJECT_DIR/.agents/skills/groove-utilities-prime/scripts/groove-utilities-prime.sh --json"
      }
    ],
    "stop": [
      {
        "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/cursor/daily-end-reminder.sh"
      }
    ],
    "postToolUse": [
      {
        "matcher": "Shell",
        "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/cursor/git-activity-buffer.sh"
      },
      {
        "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/cursor/version-check.sh"
      }
    ],
    "preToolUse": [
      {
        "matcher": "Write",
        "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/cursor/block-managed-paths.sh"
      }
    ]
  }
}

When merging: if a hooks key already exists, append groove entries to the relevant event arrays. Do not create duplicates — check if a groove command entry already exists before appending.

Constraints

  • Never overwrite non-groove entries in .cursor/hooks.json
  • Never overwrite an existing script without diff + confirmation
  • Scripts use python3 to parse JSON stdin — if python3 is absent, skip that hook and warn
  • block-managed-paths uses exit code 2 (Cursor's convention to block the tool use)
  • After install: remind the user that hooks take effect on the next Cursor session restart
  • .groove/hooks/cursor/ follows the git.hooks git strategy from .groove/index.md
  • Create .cursor/ directory if it does not exist

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.25%
按下载量换算503

Claude

31.83%
按下载量换算441

Cursor

18.01%
按下载量换算250

Gemini CLI

9.72%
按下载量换算135

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills