Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

engram-backlog-triage印迹积压分类

Agent Skill

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

总安装

474

周安装

19

GitHub Stars

3,005

下载量

154
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gentleman-programming/engram --skill engram-backlog-triage

简介

依据零配置、本地优先、单一二进制三大原则过滤积压任务。

  • 自动标记需设计评审、请求变更或关闭的低价值 Issue。
  • 优先处理能带来全局体验一致性的功能改进项。
  • 维护者哲学即产品底线,所有分类决策必须通过其检验。
  • engram-backlog-triage 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to Use

Use this skill when:

  • Running a full backlog audit on Engram (or any repo)
  • Deciding merge / request-changes / close / needs-design / approve-issue
  • Cleaning noise from the issue tracker
  • Prioritizing what to act on next

Maintainer Philosophy (Engram)

These are the non-negotiable product values. Every triage decision is filtered through them.

PrincipleWhat it means in practice
Zero-configWorks out of the box. No required flags, env vars, or setup beyond install.
Local-firstData lives in ~/.engram/engram.db. No cloud dependency by default.
Single binaryOne engram binary. No daemon, no service, no secondary processes needed.
Terminal-firstCLI and TUI are the primary UX. No web dashboard, no Electron.
Thin adaptersPlugin scripts (Claude, OpenCode, Gemini, Codex) are thin shims — logic lives in Go core.
Issue-firstEvery PR must link a status:approved issue. No approved issue → no PR.
Evidence-based reviewsRequest changes with specific, actionable items. No vague "needs improvement".
Tight scopeReject features that expand Engram's surface area without a compelling case.
Small focused contributionsPrefer 50-line PRs solving one problem over 500-line PRs solving five.
Reject vague/scope-breaking workClose scope-creep issues and PRs that turn Engram into something else.

Disposition Classification

Assign exactly ONE disposition to each issue or PR:

DispositionWhen to use
MERGEPR is correct, scoped, tests pass, linked approved issue. Merge immediately.
REQUEST CHANGESPR has the right idea but needs specific fixes. List each item.
CLOSENoise, duplicate, vague, scope-breaking, no approved issue, or stale with no activity.
NEEDS DESIGNIdea is valid but architectural decision required before any PR is welcome. Open discussion or design issue first.
APPROVE ISSUEIssue is valid, clear, reproducible/specific, and in scope. Add status:approved label.
REJECT ISSUEVague, duplicate, scope-breaking, or belongs in Discussions. Close with explanation.

Operating Phases

Phase 1 — Fetch the Backlog

# All open issues with labels and comments
gh issue list --repo <owner/repo> --state open \
  --json number,title,labels,author,comments,body \
  --limit 100

# All open PRs with labels and review state
gh pr list --repo <owner/repo> --state open \
  --json number,title,labels,author,body,reviews,commits \
  --limit 50

# Check a specific issue in detail
gh issue view <number> --repo <owner/repo> --json number,title,body,labels,comments

# Check a specific PR in detail
gh pr view <number> --repo <owner/repo> --json number,title,body,labels,files,reviews

Phase 2 — Classify Each Item

For every issue, answer:

1. Is it a real bug with reproduction steps? → candidate for APPROVE ISSUE
2. Is it a clear feature with a problem statement? → candidate for APPROVE ISSUE
3. Is it vague, a question, or a discussion? → REJECT ISSUE (redirect to Discussions)
4. Is it a duplicate? → REJECT ISSUE (link original, close)
5. Does it break zero-config / local-first / single-binary? → REJECT ISSUE
6. Does it need architectural decision before a PR? → NEEDS DESIGN

For every PR, answer:

1. Does it link a status:approved issue? → if not → CLOSE (process violation)
2. Does it have exactly one type:* label? → if not → REQUEST CHANGES
3. Do all 5 CI checks pass? → if not → REQUEST CHANGES (list failures)
4. Is the scope tight (one issue, minimal diff)? → if sprawling → REQUEST CHANGES
5. Does it follow conventional commits + branch naming? → if not → REQUEST CHANGES
6. Is the change correct and well-tested? → if yes → MERGE

Phase 3 — Infer Ideology from Maintainer Comments

Look for maintainer responses (MEMBER or OWNER association) in issue comments. Extract:

  • What the maintainer approved and how they framed it
  • What the maintainer redirected (Questions → Discussions, etc.)
  • What the maintainer scoped down ("Best place for it: add a section in DOCS.md")
  • What the maintainer welcomed vs deferred ("I'll keep this issue open to track that")

Use these patterns to calibrate your triage against the actual maintainer stance, not just the written philosophy.

# Filter for maintainer responses
gh issue view <number> --repo <owner/repo> --json comments \
  --jq '.comments[] | select(.authorAssociation == "MEMBER" or .authorAssociation == "OWNER") | {author: .author.login, body: .body}'

Phase 4 — Prioritize

Rank items within each disposition bucket:

Quick wins (act immediately):

  • Real bugs with clear reproduction steps + no linked PR yet
  • PRs that are correct, scoped, and just need a label or minor fix
  • Docs PRs that are accurate and unambiguous

Process blockers (fix the pipeline):

  • PRs missing status:approved linkage (close + explain)
  • PRs missing type:* label (request changes)
  • Issues with status:needs-review that have been waiting > 7 days

Real bugs (high priority issues):

  • Reproducible crashes, data loss, or broken core workflows
  • Issues with multiple confirming comments from different users

Architectural proposals (schedule separately):

  • Issues tagged NEEDS DESIGN
  • Proposals that affect the binary's interface, sync protocol, or plugin contract

Noise (close immediately):

  • Issues without reproduction steps
  • Feature requests that expand scope without evidence of demand
  • Questions that belong in Discussions
  • Vague reports ("it doesn't work")

Phase 5 — Produce the Report

Output a structured triage report:

## Triage Report — <repo> — <date>

### Summary
- Open issues: N | Open PRs: N
- To merge: N | To request changes: N | To close: N
- To approve: N | To reject: N | Needs design: N

### PRs

| # | Title | Disposition | Reason |
|---|-------|-------------|--------|
| 89 | fix(mcp): update config example | MERGE | Correct, scoped, CI pending only |
| 98 | feat(sync): selective export | REQUEST CHANGES | No approved issue linked |
| 80 | feat(nix): Introduce flake.nix | CLOSE | No approved issue; nix out of scope for single-binary |

### Issues

| # | Title | Disposition | Reason |
|---|-------|-------------|--------|
| 93 | Windows false positive (Defender) | APPROVE ISSUE | Real user-facing bug, 3 confirmations |
| 99 | FTS5 trigram SQL logic error | APPROVE ISSUE | Specific bug, reproducible |
| 104 | Project aliasing system | NEEDS DESIGN | Scope question: conflicts with local-first project name resolution |
| 97 | Auto-generate docs from memory | REJECT ISSUE | Vague scope, no concrete problem statement |
| 81 | Remove Projects / local-only notes | REJECT ISSUE | Ambiguous, belongs in Discussions |

### Suggested Comments

#### PR #N — REQUEST CHANGES
> Thanks for this! A few items before this can merge:
> - [ ] Link an approved issue (`Closes #N`) — no PR can merge without one
> - [ ] Add exactly one `type:*` label
> - [ ] Rebase on `main` to resolve the failing CI check

#### Issue #N — APPROVE ISSUE
> This is clear, reproducible, and in scope. Adding `status:approved` — feel free to open a PR linking this issue.

#### Issue #N — REJECT ISSUE
> Thanks for the report! This looks more like a question/discussion topic than a bug or feature request.
> Please continue the conversation in [Discussions](https://github.com/<owner/repo>/discussions).
> Closing this issue — feel free to re-open if you can reproduce it as a concrete bug with steps.

#### Issue #N — NEEDS DESIGN
> Good idea, but this touches the <area> architecture. Before a PR makes sense here,
> let's nail down the design. I'll leave this open for discussion — feel free to propose
> an approach in the comments.

Quick-Action Commands

# Approve an issue (add status:approved)
gh issue edit <number> --repo <owner/repo> --add-label "status:approved"

# Add priority to an issue
gh issue edit <number> --repo <owner/repo> --add-label "priority:high"

# Close an issue with a comment
gh issue close <number> --repo <owner/repo> \
  --comment "Thanks! This looks like a discussion topic rather than a bug. Please continue in Discussions: https://github.com/<owner/repo>/discussions"

# Request changes on a PR
gh pr review <number> --repo <owner/repo> --request-changes \
  --body "Please link an approved issue (Closes #N) and add exactly one type:* label."

# Approve a PR
gh pr review <number> --repo <owner/repo> --approve \
  --body "Looks good — scoped, tested, and linked to the approved issue."

# Merge a PR (squash)
gh pr merge <number> --repo <owner/repo> --squash --delete-branch

# Add a label to a PR
gh pr edit <number> --repo <owner/repo> --add-label "type:bug"

# List issues needing review (no status:approved yet)
gh issue list --repo <owner/repo> --label "status:needs-review" --state open

Reusable Prompt Template

Copy this block to apply the triage workflow in any repository:

You are a maintainer triage agent. Your job is to audit the full open issue and PR backlog
for <owner/repo> and produce a disposition report.

## Maintainer Philosophy
<paste the philosophy table from this skill, adapted to the target repo>

## Steps
1. Fetch all open issues: `gh issue list --repo <owner/repo> --state open --json number,title,labels,author,comments,body --limit 100`
2. Fetch all open PRs: `gh pr list --repo <owner/repo> --state open --json number,title,labels,author,body,reviews --limit 50`
3. For each item, check for maintainer comments (authorAssociation: MEMBER or OWNER) to infer current stance.
4. Classify each item as: MERGE / REQUEST CHANGES / CLOSE / NEEDS DESIGN / APPROVE ISSUE / REJECT ISSUE
5. Prioritize within buckets: quick wins → process blockers → real bugs → architectural proposals → noise
6. Output a structured markdown report with a table per section (PRs, Issues) and suggested comment text for each action item.

## Constraints
- Never approve issues that are vague, duplicates, or belong in Discussions
- Never approve PRs without a linked status:approved issue
- Prefer closing noise over leaving it open and unresolved
- Be specific in REQUEST CHANGES — list each item as a checkbox
- Proposed comments must be warm but clear: acknowledge the contribution, explain the reason, offer a path forward

Tradeoffs and Assumptions

  • Ideology is inferred, not computed. Maintainer comments are the ground truth — written philosophy is secondary. When they conflict, follow the comments.
  • Issue-first is non-negotiable for PRs. PRs without a status:approved issue always get CLOSE, not REQUEST CHANGES, because the contributor skipped the process entirely.
  • Noise should be closed, not left open. An open issue with no actionable content trains contributors to expect low quality to be tolerated.
  • NEEDS DESIGN is a valid, non-blocking action. It signals "good idea, wrong time" without rejecting the contributor.
  • This skill targets Engram's workflow. Adapt the philosophy table and label system when applying the reusable prompt to a different repository.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.05%
按下载量换算51

Claude

30.1%
按下载量换算46

Cursor

19.62%
按下载量换算30

Gemini CLI

9.71%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills