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

groove-admin-config凹槽管理配置

Agent Skill

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

总安装

4,656

周安装

161

GitHub Stars

4

下载量

1,632
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

groove-admin-config 管理技能配置参数与环境变量,支持个性化设置加载。

  • 适用于多技能协同工作时统一配置管理、路径映射与别名定义。
  • 通过配置文件或命令行参数调整行为,提升工作流自动化水平。
  • 修改配置前应备份原有设置,防止误操作导致功能异常。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

groove-admin-config

Outcome

.groove/index.md is created or updated with values confirmed by the user. The git strategy is applied immediately. User is ready to run /groove-admin-install.

Acceptance Criteria

  • .groove/index.md exists with all config keys populated
  • Each key was either confirmed by the user or accepted as default
  • Git strategy is applied (.groove/.gitignore written) before exiting
  • User is shown a summary of the final config and told to run /groove-admin-install

Steps

If --defaults is passed: skip all prompts, apply all defaults, and proceed directly to writing the config (step 1 of "After all keys are confirmed"). Report the defaults being applied.

Otherwise, walk the user through each config key in order. For each key: show the current value (or default if new), explain what it does, and ask to confirm or change.

Keys and defaults

KeyDefaultOptionsQuestion to ask
tasks.storagebeans`beans \linear \github \none`"Which task backend? beans tracks tasks as markdown files in your repo."
tasks.list_limit15positive integer"Max tasks shown by task-list? (default: 15)"
tasks.analyse_limit30positive integer"Max tasks shown by task-analyse? (default: 30)"
memory.review_days5positive integer"How many recent business days to review at daily start? (default: 5)"
git.memoryignore-all`ignore-all \hybrid \commit-all`"Git strategy for memory logs? ignore-all keeps them local, hybrid commits logs but ignores sessions, commit-all commits everything."
git.tasksignore-all`ignore-all \commit-all`"Git strategy for task files (.groove/tasks/)? ignore-all keeps them local, commit-all tracks them in git."
git.hookscommit-all`ignore-all \commit-all`"Git strategy for hooks (.groove/hooks/)? commit-all shares hooks with the team, ignore-all keeps them local."
groovebookandreadellacorte/groovebook<owner>/<repo> or blank"Groovebook repo for sharing learnings? Default: andreadellacorte/groovebook. Leave blank to disable."

After all keys are confirmed:

  1. Write .groove/index.md with confirmed values and groove-version: <installed version>
  2. Apply git strategy — write .groove/.gitignore (see constraints)
  3. Show summary of written config
  4. Tell user: "Run /groove-admin-install to install backends."

Constraints

  • If .groove/index.md already exists, pre-fill each question with the current value
  • Always write groovebook: (default andreadellacorte/groovebook; blank = disabled). Memory path (.groove/memory/) and specs path (.groove/memory/specs/) are hardcoded — do not prompt for them.
  • If --defaults is passed, apply all defaults without any prompting — used by groove-admin-install for zero-friction first-time setup
  • If other arguments are provided (e.g. tasks=linear git.memory=hybrid), apply them without prompting and use defaults for any unspecified keys
  • Always write groove-version: matching the installed version from skills/groove/SKILL.md

Git strategy → .groove/.gitignore

After writing .groove/index.md, generate .groove/.gitignore from the git.* sub-keys:

ComponentStrategyEntry added to .groove/.gitignore
git.memoryignore-allmemory/
git.memoryhybridmemory/sessions/
git.memorycommit-all*(none)*
git.tasksignore-alltasks/
git.taskscommit-all*(none)*
git.hooksignore-allhooks/
git.hookscommit-all*(none)*

Write the generated entries to .groove/.gitignore, replacing the file entirely. If no entries are generated (all commit-all), write an empty file with a comment: # groove git strategy: commit-all.

Always append these lines at the end of .groove/.gitignore, regardless of strategy:

# cache — always local
.cache/*
!.cache/.gitkeep
  • If .groove/ is listed in the root .gitignore, warn the user: "Note: .groove/ is in your root.gitignore — any commit-all strategies require removing it."
  • Do not modify the root .gitignore automatically — flag it for the user to resolve

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.52%
按下载量换算596

Claude

27.04%
按下载量换算441

Cursor

19.94%
按下载量换算325

Gemini CLI

9.94%
按下载量换算162

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills