Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

grove-issues格罗夫问题

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

1,435

周安装

61

GitHub Stars

4

下载量

503
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/autumnsgrove/groveengine --skill grove-issues

简介

grove-issues 用于围绕 GitHub 仓库、Issue 和 Pull Request 提供协作辅助。

  • 适用于查询项目状态、整理变更或创建协作事项的场景。
  • 区分只读查询和写入操作,确认 token 权限和仓库范围。
  • 涉及私有仓库或推送分支时需用户授权。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Grove Issues

Turn a brain dump into a clean issue backlog. You receive a messy list of TODOs and produce properly labeled, well-structured GitHub issues ready for the Lattice Kanban board.

When to Activate

  • User provides a batch of TODOs, tasks, or ideas in a single message
  • User explicitly calls /grove-issues
  • User says something like "create issues for these" or "turn these into tickets"
  • User pastes a list of things they want tracked

The Pipeline

Brain Dump → Parse → Deduplicate → Create Issues → Label → Report

Step 1: Parse the Brain Dump

Break the user's message into discrete, actionable issues. Each issue should represent ONE piece of work. If a TODO is too broad, split it. If two TODOs are the same thing, merge them.

Parsing signals:

  • Numbered lists → one issue per item
  • Bullet points → one issue per bullet
  • Paragraphs separated by newlines → one issue per paragraph
  • Comma-separated items → one issue per item
  • Stream-of-consciousness → use judgment to split at logical boundaries

Step 2: Check for Duplicates

Before creating any issue, search existing open issues for overlap:

gh issue list --state open --limit 100 --json number,title | jq -r '.[].title'

If a TODO matches an existing issue closely, skip it and note the existing issue number in your report. Don't create duplicates.

Step 3: Determine Labels

Each issue gets up to 3 labels:

Component Labels (pick 1-3)

LabelWhen to Apply
latticeFramework, monorepo, shared infrastructure, engine package
heartwoodAuth, sessions, passkeys, OAuth, identity
arborAdmin panel, backend API, admin dashboard
amberImages, CDN, R2 storage, JXL, media pipeline
clearingStatus page, health monitoring, uptime
shadeAI crawler protection, bot defense, rate limiting
plantPricing, billing, LemonSqueezy, storefront, signup
ivyEmail, Resend, notifications, messaging
foliageTheming, design tokens, per-tenant customization
curioMuseum exhibits, content display, guestbook
meadowSocial features, community feed
forestsForest page, community groves, property showcase
vineContent relationships, margin notes, connections
graftFeature flags, gradual rollout, A/B testing
petalContent moderation, CSAM detection, PhotoDNA
lumenAI assistant, LLM routing, AI gateway
myceliumMCP servers, inter-service networking
patinaBackups, cold storage, data preservation
landingLanding site, marketing pages, knowledge base

Pattern Labels (pick 0-2, in addition to component labels)

Patterns are reusable architectural solutions. Apply when the issue involves implementing or extending a pattern.

LabelWhen to Apply
pattern:fireflyEphemeral server infrastructure (ignite, illuminate, fade lifecycle)
pattern:loomDurable Objects coordination (SessionDO, TenantDO, PostDO)
pattern:prismGlassmorphism design system, seasonal theming, UI layers
pattern:sentinelLoad testing, scale validation, ramp-up testing
pattern:songbirdPrompt injection protection (canary, kestrel, robin layers)
pattern:thresholdRate limiting, abuse prevention, graduated response

Type Labels (pick exactly 1)

LabelWhen to Apply
bugSomething is broken or wrong
featureNew capability that doesn't exist yet
enhancementImprovement to existing functionality
securitySecurity concern, vulnerability, hardening
documentationDocs, guides, help articles

Priority (only if explicitly stated by user)

Don't guess priority. Only apply if the user explicitly says something is urgent, critical, or low-priority.

Step 4: Write the Issue Body

Use this template for every issue:

## Summary
[1-3 sentences describing what needs to be done and why]

## Acceptance Criteria
- [ ] [Specific, verifiable criterion]
- [ ] [Another criterion]
- [ ] [Keep to 3-6 items]

## Context
- [Relevant technical context]
- [Dependencies or related issues if known]
- [Any constraints mentioned by the user]

Writing guidelines:

  • Summary should answer "what" and "why" in plain language — a non-engineer should understand the first sentence
  • Acceptance criteria should be checkbox items that can be verified as done/not-done
  • Context is optional but helpful — this is where technical detail (file paths, patterns, acronyms) belongs
  • Keep the whole body under 20 lines. Concise beats comprehensive.
  • Don't pad with boilerplate. If there's no useful context, skip that section.

Step 5: Create the Issues

gh issue create \
  --title "Title in imperative mood" \
  --body "$(cat <<'EOF'
## Summary
...

## Acceptance Criteria
- [ ] ...

## Context
- ...
EOF
)" \
  --label "component1,type1"

Title guidelines:

  • Plain language first — write for the project owner scanning a board, not for the implementer
  • Imperative mood: "Add X" not "Adding X" or "X should be added"
  • Format: Service: what happens in plain english (e.g., "Plant: fix broken image on pricing page")
  • Under 60 characters when possible
  • No [FEATURE] or [BUG] prefixes (labels handle categorization)
  • No jargon or acronyms that aren't Grove service names — no HMR, PKCE, DO, SSR, CSRF, etc. in titles. Spell it out or rephrase in plain language. (Technical detail belongs in the body.)
  • Self-check: Read each title and ask: *"Would I immediately understand this on a board with 100 other issues, without clicking into it?"* If not, rewrite it.

Good vs. bad titles:

Bad (jargon-heavy)Good (plain language)
Hybrid dev mode: HMR + service binding fidelityDev mode: support live reload alongside real service bindings
Thorn behavioral: finish remaining wiringThorn: connect remaining rate-limit and label checks
Graduate Reeds (comments) out of greenhouseReeds: make comments a full production feature
Implement Queen coordinator Durable ObjectQueen: build the coordinator that manages background workers

Step 6: Report Back

After creating all issues, give the user a summary table:

Created X issues:

| # | Title | Labels |
|---|-------|--------|
| #531 | Add glass overlay to Forest page | forests, enhancement |
| #532 | Fix tooltip positioning on mobile | lattice, bug |
...

Skipped (duplicates of existing issues):
- "Cache purge tool" → already tracked in #527

Edge Cases

Vague TODOs

If a TODO is too vague to create a good issue ("fix the thing", "make it better"), ask the user for clarification rather than creating a bad issue. Group vague items and ask once.

Huge Batches (20+)

For very large batches, create issues in groups of 10 to avoid rate limiting. Pause between batches.

Mixed Priorities

If the user marks some items as urgent/first-focus vs backlog, note this in Context but don't apply priority labels unless they use explicit priority language.

Implementation Details in the Brain Dump

If the user includes HOW to do something (not just WHAT), capture those details in the Context section. The acceptance criteria should still focus on the outcome, not the approach.


Anti-Patterns

Don't do these:

  • Don't create issues with only a title and no body
  • Don't apply more than 3 component labels (if it touches everything, it's probably lattice)
  • Don't guess at acceptance criteria you can't verify. "Works well" is not a criterion. "Renders correctly on mobile viewport" is.
  • Don't create issues for things that are already done
  • Don't pad issues with generic criteria like "code is well-documented" or "tests pass"
  • Don't add priority-critical unless the user explicitly says something is critical/urgent

Example

User says:

ok so I need to: fix the broken image on the pricing page, add a dark mode toggle to the knowledge base, wire up the new health endpoint for blog-engine, and eventually we should think about adding RSS feeds to meadow

You create:

  1. "Fix broken image on pricing page"plant, bug
  2. "Add dark mode toggle to knowledge base"landing, enhancement
  3. "Wire health endpoint for blog-engine into Clearing"clearing, feature
  4. "Add RSS feed support to Meadow"meadow, feature

Each with proper Summary, Acceptance Criteria, and Context.


*A clean backlog is a calm mind. Turn the chaos into clarity.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算179

Claude

28.55%
按下载量换算144

Cursor

20.16%
按下载量换算101

Gemini CLI

8.87%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills