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

groove-admin-claude-hooksgroove admin Claude hooks 命令行

Agent Skill

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

总安装

4,320

周安装

180

GitHub Stars

4

下载量

1,440
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

groove-admin-claude-hooks 用于处理 GitHub 仓库状态、Issue 跟踪与 Pull Request 协作流程。

  • 适用于代码审查、项目进度管理与团队协作事项的处理场景。
  • 通过调用相关命令获取仓库变更、待办事项或合并请求详情。
  • 需配置 GitHub 访问令牌以确保权限正确,避免敏感信息泄露风险。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

groove-admin-claude-hooks

Install groove's Claude Code native shell 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 .claude/settings.json and shell scripts are written to .groove/hooks/claude/. Hooks fire automatically on Claude Code lifecycle events without any model involvement.

Available hooks

NameEventMatcherWhat it does
daily-end-reminderStopIf hour is 16–21 local time and .groove/index.md exists, prints a reminder to run /groove-daily-end
git-activity-bufferPostToolUseBashIf the Bash command contains git commit, appends a timestamped line to .groove/.cache/git-activity-buffer.txt
block-managed-pathsPreToolUseWrite, EditIf file_path starts with .agents/skills/groove or skills/groove, exits non-zero to block the write with an explanatory message
context-reprimeSessionStart`startup\compact`Runs the prime script directly — ensures full workflow context is loaded after every session start and compaction
version-checkPostToolUseChecks for a new groove version once per hour; calls groove-utilities-check

Steps

--list

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

--disable <hook>

Remove the named hook's entry from .claude/settings.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: daily-end-reminder, git-activity-buffer, block-managed-paths, context-reprime, version-check) Press enter for all.
  2. Read .claude/settings.json if it exists; parse as JSON (default {}). Never discard existing non-groove entries.
  3. Create .groove/hooks/claude/ directory if absent. Make each script executable (chmod +x).
  4. For each selected hook: write the shell script and merge the hook entry into .claude/settings.json.
  5. Write .claude/settings.json with the merged result.
  6. Report summary: ✓ daily-end-reminder — Stop hook →.groove/hooks/claude/daily-end-reminder.sh ✓ git-activity-buffer — PostToolUse/Bash hook →.groove/hooks/claude/git-activity-buffer.sh ✓ block-managed-paths — PreToolUse/Write+Edit hook →.groove/hooks/claude/block-managed-paths.sh ✓ context-reprime — SessionStart hook → groove-utilities-prime.sh ✓ version-check — PostToolUse hook →.groove/hooks/claude/version-check.sh ✓.claude/settings.json updated

Shell script templates

Write these verbatim to .groove/hooks/claude/. 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/Bash 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+Edit 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 1
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

.claude/settings.json entries

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

{
  "hooks": {
    "Stop": [
      {
        "hooks": [
          { "type": "command", "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/claude/daily-end-reminder.sh" }
        ]
      }
    ],
    "PostToolUse": [
      {
        "matcher": "Bash",
        "hooks": [
          { "type": "command", "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/claude/git-activity-buffer.sh" }
        ]
      },
      {
        "hooks": [
          { "type": "command", "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/claude/version-check.sh" }
        ]
      }
    ],
    "PreToolUse": [
      {
        "matcher": "Write",
        "hooks": [
          { "type": "command", "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/claude/block-managed-paths.sh" }
        ]
      },
      {
        "matcher": "Edit",
        "hooks": [
          { "type": "command", "command": "bash $CLAUDE_PROJECT_DIR/.groove/hooks/claude/block-managed-paths.sh" }
        ]
      }
    ],
    "SessionStart": [
      {
        "matcher": "startup|compact",
        "hooks": [
          {
            "type": "command",
            "command": "bash $CLAUDE_PROJECT_DIR/.agents/skills/groove-utilities-prime/scripts/groove-utilities-prime.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 .claude/settings.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 is aggressive: if it causes false positives the user can disable it with --disable block-managed-paths
  • After install: remind the user that hooks take effect on the next Claude Code session restart
  • .groove/hooks/claude/ follows the git.hooks git strategy from .groove/index.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.99%
按下载量换算489

Claude

31.42%
按下载量换算452

Cursor

19.93%
按下载量换算287

Gemini CLI

9.79%
按下载量换算141

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills