Borrowing it
Nothing to install: this file belongs to egregore-labs/egregore. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/egregore-labs/egregore/main/.claude/skills/issue/SKILL.mdgit clone --depth 1 https://github.com/egregore-labs/egregoreWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/egregore-labs/egregore/issue)<a href="https://agentmods.dev/skills/egregore-labs/egregore/issue"><img src="https://agentmods.dev/badge/skills/egregore-labs/egregore/issue.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00049 | $0.08400 |
| Opus 5 | $0.00024 | $0.04200 |
| Sonnet 5 | $0.00010 | $0.01680 |
| Haiku 4.5 | $0.00005 | $0.00840 |
Grade C, and why
issue scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf "$staging_dir" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
**Neo4j-first.** All queries via `bash bin/graph.sh query "..."`. No MCP. No direct curl to Neo4j. How it starts
The opening of the file, as written. The whole thing — 874 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Report an issue. Captures context and routes to the right place.
When to invoke
User says: "this is broken", "bug in", "something's wrong with", "file an issue", "report a problem", "[command] isn't working"
Not this: personal task → /todo · team exploration → /quest
Topic: $ARGUMENTS
Auto-saves. No need to run /save after (create mode only).
Mode detection
MODE=$(jq -r '.mode // "connected"' egregore.json 2>/dev/null)
Local mode (mode === "local"): Skip ALL bin/graph.sh and bin/notify.sh calls — do NOT run them. Do NOT show any graph-related messaging ("Graph offline", "will sync", Neo4j, etc.).
Local-mode flow:
- Create mode: Step 0 context capture — run Bash call 1 (git identity + state) normally; skip Bash call 2's
bin/graph.sh testline (keep the memory-symlink and egregore.json checks); skip the Neo4j recent-session query entirely. Steps 1-2 (description, smart routing) work normally. Step 3 — write the markdown file tomemory/knowledge/issues/normally, but skip the Neo4jCREATE (i:Issue)node and the progress message referencing "graph". Step 4 transcript attachment works normally when--transcriptis present. Step 5 — skip graph routing updates (Neo4j node creation, relationship updates), but preservegh issue createif the smart routing targets a GitHub repo (GitHub CLI is independent of the graph). Skip Step 6 notifications entirely. Steps 7-8 (auto-save, confirmation TUI) work normally — in the TUI, show✓ Saved to memory(omit "graphed" and "team notified"). - List mode: Read issues from
memory/knowledge/issues/directory — deriveidfrom filename (e.g.,2026-03-30-memory-bug.md→memory-bug), parse frontmatter fortitle,status,recipient,date(display as created),topics,author(display as reportedBy). Render same TUI. - Close mode: Find issue file in
memory/knowledge/issues/, update frontmatterstatus: closed+ addclosed: {date}. Skip graph update. If frontmatter hasgithub_url, still rungh issue close "{github_url}" 2>/dev/null— GitHub CLI is independent of the graph. - Search mode: Grep through
memory/knowledge/issues/files for matching text. Render same TUI. - Notifications: Skip entirely — do not mention notifications.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 874 lines · 49 tokens per session scan C 32a17b9ad0e8
issue is a skill published in the GitHub repository egregore-labs/egregore (282 stars, last pushed 4d ago), licensed MIT. It adds 49 tokens to every session and 8,400 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
printing-press-polish
Polish a generated CLI to pass verification and become publish-ready. Runs diagnostics (dogfood, verify, scorecard, go vet, gosec), automatically fixes all issues (verify failures, static-analysis findings, dead code, descriptions, README, MCP tool quality), reports the before/after delta, and offers to publish. Use…
printing-press-amend
Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…
printing-press-output-review
Internal sub-skill: agentic review of a printed CLI's sampled command output for plausibility issues that rule-based checks can't encode (substring-match relevance, format bugs, silent source drops, ranking failures). Invoked via the Skill tool by the main printing-press skill at Phase 4.85 and printing-press-polish…
fix
Dispatch fix subagent for FIX-FIRST gaps from review, re-review, then diagnose unresolved failures after 2 loops.
report
Investigate bugs comprehensively — cascade through trace, capture browser evidence, extract observability data, and prepare or explicitly create a GitHub issue with grounded findings.
trace
Dispatch trace subagent to investigate unknown issues — reproduces, traces, and reports root cause for fix handoff.