memory
ALWAYS ACTIVE — Persistent memory protocol. You MUST save decisions, conventions, bugs, and discoveries to engram proactively. Do NOT wait for the user to ask.
Backlog triage protocol for Engram: audit open issues and PRs, classify each item, infer maintainer ideology from comments, and produce an actionable disposition report. Trigger: Auditing open issues or PRs, triaging the backlog, reviewing contributor submissions as a
$ npx -y skills add Gentleman-Programming/engram --skill backlog-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/backlog-triageContext preview
The summary Claude sees to decide when to auto-load this skill.
Backlog triage protocol for Engram: audit open issues and PRs, classify each item, infer maintainer ideology from comments, and produce an actionable disposition report. Trigger: Auditing open issues or PRs, triaging the backlog, reviewing contributor submissions as a
name: engram-backlog-triage description: > Backlog triage protocol for Engram: audit open issues and PRs, classify each item, infer maintainer ideology from comments, and produce an actionable disposition report. Trigger: Auditing open issues or PRs, triaging the backlog, reviewing contributor submissions as a maintainer, or applying triage to any GitHub repo. license: Apache-2.0 metadata: author: gentleman-programming version: "1.0"
Use this skill when:
---
These are the non-negotiable product values. Every triage decision is filtered through them.
| Principle | What it means in practice | |-----------|--------------------------| | **Zero-config** | Works out of the box. No required flags, env vars, or setup beyond install. | | **Local-first** | Data lives in `~/.engram/engram.db`. No cloud dependency by default. | | **Single binary** | One `engram` binary. No daemon, no service, no secondary processes needed. | | **Terminal-first** | CLI and TUI are the primary UX. No web dashboard, no Electron. | | **Thin adapters** | Plugin scripts (Claude, OpenCode, Gemini, Codex) are thin shims — logic lives in Go core. | | **Issue-first** | Every PR must link a `status:approved` issue. No approved issue → no PR. | | **Evidence-based reviews** | Request changes with specific, actionable items. No vague "needs improvement". | | **Tight scope** | Reject features that expand Engram's surface area without a compelling case. | | **Small focused contributions** | Prefer 50-line PRs solving one problem over 500-line PRs solving five. | | **Reject vague/scope-breaking work** | Close scope-creep issues and PRs that turn Engram into something else. |
---
Assign exactly ONE disposition to each issue or PR:
| Disposition | When to use | |-------------|-------------| | **MERGE** | PR is correct, scoped, tests pass, linked approved issue. Merge immediately. | | **REQUEST CHANGES** | PR has the right idea but needs specific fixes. List each item. | | **CLOSE** | Noise, duplicate, vague, scope-breaking, no approved issue, or stale with no activity. | | **NEEDS DESIGN** | Idea is valid but architectural decision required before any PR is welcome. Open discussion or design issue first. | | **APPROVE ISSUE** | Issue is valid, clear, reproducible/specific, and in scope. Add `status:approved` label. | | **REJECT ISSUE** | Vague, duplicate, scope-breaking, or belongs in Discussions. Close with explanation. |
---
# 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
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
Look for maintainer responses (MEMBER or OWNER association) in issue comments. Extract:
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}'Rank items within each disposition bucket:
**Quick wins (act immediately):**
**Process blockers (fix the pipeline):**
**Real bugs (high priority issues):**
**Architectural proposals (schedule separately):**
**Noise (close immediately):**
Persistent memory system for AI coding agents. Agent-agnostic Go binary with SQLite + FTS5, MCP server, HTTP API, CLI, and TUI.
Repo: Gentleman-Programming/engram
ALWAYS ACTIVE — Persistent memory protocol. You MUST save decisions, conventions, bugs, and discoveries to engram proactively. Do NOT wait for the user to ask.
Architecture guardrails for Engram across local store, cloud sync, dashboard, and plugins. Trigger: Any change that affects system boundaries, ownership, state…
PR creation workflow for Engram following the issue-first enforcement system. Trigger: When creating a pull request, opening a PR, or preparing changes for…
Product and business-rule guardrails for Engram. Trigger: Any change that affects sync behavior, project controls, permissions, or memory semantics.
Commit and branch naming standards for Engram contributors, enforced by GitHub rulesets. Trigger: Any commit creation, review, or branch cleanup.
Cultural and collaboration norms for Engram contributors and agents. Trigger: Starting substantial work, reviewing changes, or defining team conventions.