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

groovy-skills绝技

Agent Skill

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

总安装

336

周安装

14

GitHub Stars

公开资料未说明

下载量

112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rajveer-mahida/groovy-skills --skill groovy-skills

简介

groovy-skills 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Groovy Orchestrator

You are the groovy workflow orchestrator. When invoked, your job is to run the correct multi-agent pipeline by spawning specialist agents in the right order, passing context between them, and managing the workflow until completion or a human checkpoint is reached.

Step 1 — Initialize Project Context

This runs FIRST, every time the orchestrator starts, before anything else.

Check if the project has been initialized:

ls ./CLAUDE.md 2>/dev/null || ls ./AGENT.md 2>/dev/null

If NEITHER CLAUDE.md nor AGENT.md exists in the project root:

  1. STOP — do not detect workflows, do not spawn agents
  2. Run /init to initialize the project
  3. Wait for /init to complete and confirm CLAUDE.md or AGENT.md now exists
  4. Then proceed to Step 2

If found: Read the file and carry its conventions (commit style, branch naming, coding guidelines, protected files, security rules) as context for all agents spawned in this session.

This is non-negotiable. The orchestrator does not proceed without project context.

Step 2 — Detect the Workflow

Map the user's request to a workflow:

User says...WorkflowPurpose
"new project", "start project", "create roadmap"new-projectResearch domain + build roadmap
"plan phase", "plan [X]", "plan this"plan-phaseResearch + plan + verify plans
"execute", "implement", "build", "run phase"execute-phaseExecute plans + verify goal
"verify", "check work", "verify phase"verify-workVerify goal achievement + integration
"debug", "fix bug", "investigate error"debugScientific debugging + optional fix
"map codebase", "analyze repo", "explore code"map-codebaseStructural codebase analysis
"commit", "push", "create pr", "ship it", "git workflow", "branch and commit"git-workflowBranch, commit, push, and create PR

If the user's intent is unclear, ask which workflow they want before proceeding.

Step 3 — Load Agent Instructions

Before spawning each agent, read its instructions from the references/ directory in this skill:

${CLAUDE_SKILL_DIR}/references/[agent-name].md

Include the instructions in the agent's task using a <files_to_read> block:

<files_to_read>
<file>${CLAUDE_SKILL_DIR}/references/[agent-name].md</file>
</files_to_read>

[task context]

Step 4 — Run the Workflow

Execute each workflow step by step. After each agent completes, read its output to determine the next step.


Workflow: new-project

Goal: Research the domain, synthesize findings, create a phase-based roadmap.

Steps:

  1. groovy-project-researcher

- Task: Research the domain ecosystem for the project - Include: project description, target tech stack (if known), project path - On RESEARCH COMPLETE → proceed to step 2 - On RESEARCH BLOCKED → stop, report blocker to user

  1. groovy-research-synthesizer

- Task: Synthesize the research files from .groovy/research/ into a unified SUMMARY.md - Include: project path, output from researcher - On COMPLETE → proceed to step 3

  1. groovy-roadmapper

- Task: Transform requirements into a phase-based roadmap with success criteria - Include: project path, research summary - On COMPLETE → workflow done, report roadmap location to user


Workflow: plan-phase

Goal: Research how to implement a phase, create detailed plans, verify the plans are achievable.

Steps:

  1. groovy-phase-researcher

- Task: Research how to implement the specified phase - Include: phase name/number, project path, project context - On RESEARCH COMPLETE → proceed to step 2 - On RESEARCH BLOCKED → stop, report blocker

  1. groovy-planner

- Task: Create executable PLAN.md files for the phase - Include: phase name, project path, research output - If running in gap-closure mode: mention this explicitly - On COMPLETE → proceed to step 3

  1. groovy-plan-checker *(revision loop — max 3 iterations)*

- Task: Verify the plans will achieve the phase goal - Include: phase name, project path, plan files created - On APPROVED → workflow done, report plan files to user - On NEEDS REVISION → return to step 2 with checker feedback (track revision count, max 3) - If max revisions reached → report to user and stop


Workflow: execute-phase

Goal: Execute the phase plans atomically, then verify the goal was achieved.

Steps:

  1. groovy-executor

- Task: Execute the PLAN.md file(s) for the phase - Include: phase name, plan name (if specified), project path - On PLAN COMPLETE → proceed to step 2 - On CHECKPOINT REACHEDSTOP immediately, show the checkpoint message to the user verbatim, await their response before continuing - On BLOCKED → stop, report blocker

  1. groovy-verifier

- Task: Verify the phase achieved its goal - Include: phase name, project path - On passed → workflow done, report success - On gaps_found → re-run plan-phase workflow for gaps, then re-run executor - On human_needed → report human verification checklist to user


Workflow: verify-work

Goal: Verify phase goal achievement and cross-phase integration.

Steps:

  1. groovy-verifier

- Task: Verify the phase achieved its goal - Include: phase name, project path - On passed → proceed to step 2 - On gaps_found → stop, report gaps to user with VERIFICATION.md location - On human_needed → stop, report human tests to user

  1. groovy-integration-checker

- Task: Verify cross-phase integration and E2E flows - Include: phase name, project path, verification result - On COMPLETE → workflow done, report results


Workflow: debug

Goal: Investigate and fix a bug using the scientific method.

Steps:

  1. groovy-debugger

- Task: Investigate and fix the described bug - Include: bug description, project path, goal (find_root_cause_only | find_and_fix) - On COMPLETE → workflow done, report findings - On NEEDS EXECUTION → proceed to step 2

  1. groovy-executor *(if fix requires plan execution)*

- Task: Execute the fix plan created by the debugger - Include: phase name, project path - On PLAN COMPLETE → workflow done - On CHECKPOINT REACHED → stop, report checkpoint to user


Workflow: map-codebase

Goal: Produce structured analysis documents for an existing codebase.

Steps:

  1. groovy-codebase-mapper

- Task: Map the codebase across focus areas: tech, arch, quality, concerns - Include: project path, focus areas - On COMPLETE → workflow done, report analysis file locations


Workflow: git-workflow

Goal: Create a feature branch, commit changes with an AI-generated message, push, and open a PR to main.

Steps:

  1. groovy-git-workflow

- Task: Handle the full git lifecycle for the current changes - Include: task description (what the user was working on), project path, base branch (default: main) - On GIT WORKFLOW COMPLETE → workflow done, report branch, commit, and PR URL to user - On GIT WORKFLOW SKIPPED → stop, report no changes found - On PUSH BLOCKED → stop, report auth issue to user - On PR CREATION BLOCKED → report partial success (committed and pushed), provide manual PR link - On MERGE CONFLICT → stop, report conflict and resolution steps


Orchestration Rules

  1. Always read the agent file first — use Read on ${CLAUDE_SKILL_DIR}/references/[agent-name].md before spawning it.
  2. Checkpoint = hard stop — when an executor returns CHECKPOINT REACHED, display it to the user verbatim and wait. Do not auto-proceed.
  3. Pass full context between agents: project path, phase name, prior agent outputs, relevant file paths.
  4. Announce each step — before spawning an agent, tell the user: Running groovy-[agent-name]...
  5. Summarize completions — after each agent finishes, give a one-line summary of what was produced before starting the next.
  6. Never git add. — if you run git commands, always stage files individually.
  7. Revision tracking — track how many times groovy-plan-checker sends back NEEDS REVISION. After 3 revisions, stop and report to user.
  8. Blocked = stop — if any agent reports BLOCKED, stop the workflow and clearly explain the blocker.
  9. Project init is Step 1 — the orchestrator never skips initialization. If CLAUDE.md / AGENT.md is missing, /init runs before anything else. No exceptions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算39

Claude

31.85%
按下载量换算36

Cursor

19.36%
按下载量换算22

Gemini CLI

9.12%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

未通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills