Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

groove-admin-install凹槽管理安装

Agent Skill

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

总安装

4,751

周安装

202

GitHub Stars

4

下载量

1,664
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

groove-admin-install 负责技能的自动化安装与依赖解析过程。

  • 适用于批量部署多个技能到不同宿主环境中的管理场景。
  • 自动下载源码、校验签名并注册至当前技能管理器。
  • 安装过程中可能需临时网络连接,请确保防火墙策略允许相关请求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

groove-admin-install

Outcome

All groove backends are installed in dependency order, companion skills and groove skill symlinks are present (first install is not complete without them), AGENTS.md contains the session bootstrap, and the repo is ready for use.

Acceptance Criteria

  • Task and memory backends installed (or clearly reported if a step failed)
  • Companion skills installed (find-skills, agent-browser, pdf-to-markdown) — required; verify each SKILL.md exists after step 4
  • Platform symlinks.claude/skills/groove* and .cursor/skills/groove* point at .agents/skills/groove* — required on every install run
  • User sees a summary of what was installed, including ✓/✗ for companions and symlinks

Steps

Run in order:

  1. If .groove/index.md does not exist, run /groove-admin-config --defaults to create it with all defaults (no prompts)
  2. Run /groove-utilities-task-install — installs the configured task backend (e.g. beans)
  3. Run /groove-utilities-memory-install — creates memory directories
  4. Install companion skills (mandatory — do not skip): On first install and every later run, ensure these exist under .agents/skills/. If SKILL.md is missing, run the matching npx skills add command; on transient failure, retry once, then report failure (install is not complete until all three succeed).

- find-skills (downloaded): test -f.agents/skills/find-skills/SKILL.md or npx skills add https://github.com/vercel-labs/skills --skill find-skills - agent-browser (downloaded): test -f.agents/skills/agent-browser/SKILL.md or npx skills add https://github.com/vercel-labs/agent-browser --skill agent-browser - pdf-to-markdown (embedded): test -f.agents/skills/pdf-to-markdown/SKILL.md or npx skills add andreadellacorte/groove --skill pdf-to-markdown - Afterward, verify: test -f each of the three SKILL.md paths — if any missing, stop and report install incomplete (do not claim success). - Report each as installed / already-present / failed

  1. Sync platform skill directories via symlinks (mandatory — do not skip): Groove skills must be linked into each editor’s skills tree so groove-* commands resolve.

- Create parent dirs if missing: mkdir -p.claude/skills.cursor/skills (Claude Code expects .claude/skills/; Cursor expects .cursor/skills/) - For each directory in .agents/skills/ that starts with groove: - Create .claude/skills/<name> as a symlink → ../../.agents/skills/<name> - Create .cursor/skills/<name> as a symlink → ../../.agents/skills/<name> - Run: mkdir -p.claude/skills.cursor/skills && for skill in.agents/skills/groove*; do name=$(basename "$skill"); ln -sfn "../../.agents/skills/$name" ".claude/skills/$name"; ln -sfn "../../.agents/skills/$name" ".cursor/skills/$name"; done - Note: use ln -sfn (no-dereference) — ln -sf on an existing directory symlink follows the symlink and creates a nested symlink inside the target directory - Verify: at least one groove-* name exists under .agents/skills/ and matching symlinks exist under .claude/skills/ and .cursor/skills/ - Report: "✓ platform symlinks updated (.claude/skills/,.cursor/skills/)" or report failure

  1. Scaffold hooks and cache directories:

- Create .groove/hooks/ if it does not exist - Create .groove/.cache/ if it does not exist (with a .gitkeep) - If .groove/hooks/start.md does not exist, create it with: ` # Hook: Session Start Runs automatically at the end of /groove-daily-start. Add items to ## Actions to automate session-start tasks. ## Actions <!-- Add actions here, one per line. Examples: - Run git fetch --all to refresh remote refs - Print "Good morning — groove is ready" --> - If .groove/hooks/end.md does not exist, create it with: # Hook: Session End Runs automatically at the end of /groove-daily-end. Add items to ## Actions to automate session-end tasks. ## Actions <!-- Add actions here, one per line. Examples: - Run git push to push today's commits - Print "Session closed — see you tomorrow" --> ` - Report hooks: created / already-present

  1. Apply git strategy — write .groove/.gitignore from git.* sub-keys in .groove/index.md (see /groove-admin-config for rules)

Constraints

  • Read .groove/index.md for tasks.backend and git.* config before running
  • If .groove/index.md does not exist, /groove-admin-config is run first (step 1) to create it
  • Dependency order for backends must be respected: task → memory → companions
  • Each step reports installed / already-present / failed
  • AGENTS.md update is additive per section — preserve all other content
  • If task or memory install fails, report it clearly and continue — user may still need companions + symlinks
  • Steps 4–5 (companion skills + symlinks) are required for a successful install: do not report "install complete" until both steps succeeded. This is intentional: first-time bootstrap must leave skills discoverable in Cursor and Claude Code.
  • Companion skills (find-skills, agent-browser, pdf-to-markdown) are hardcoded here, not read from any config file
  • Report a final summary (include platform symlinks line): ✓ task backend (beans) ✓ memory backend — memory dirs ready ✓ companion: find-skills ✓ companion: agent-browser ✓ companion: pdf-to-markdown ✓ platform symlinks (.claude/skills/,.cursor/skills/) ✓ hooks:.groove/hooks/ ready

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.97%
按下载量换算549

Claude

29.26%
按下载量换算487

Cursor

18.84%
按下载量换算313

Gemini CLI

10%
按下载量换算166

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills