Borrowing it
Nothing to install: this file belongs to nick-pape/grackle. 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/nick-pape/grackle/main/.claude/skills/set-blocked-by/SKILL.mdgit clone --depth 1 https://github.com/nick-pape/grackleWrote 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/nick-pape/grackle/set-blocked-by)<a href="https://agentmods.dev/skills/nick-pape/grackle/set-blocked-by"><img src="https://agentmods.dev/badge/skills/nick-pape/grackle/set-blocked-by/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nick-pape/grackle/set-blocked-by"><img src="https://agentmods.dev/badge/skills/nick-pape/grackle/set-blocked-by.svg" alt="Reviewed on agentmods" width="80" 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.00482 |
| Opus 5 | $0.00024 | $0.00241 |
| Sonnet 5 | $0.00010 | $0.00096 |
| Haiku 4.5 | $0.00005 | $0.00048 |
Grade A, and why
set-blocked-by scanned grade A with 0 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 10d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Set Blocked-By — GitHub Issue Dependency Relationships
Manages blocked-by (dependency) relationships between GitHub issues using the GraphQL API.
REPO_OWNER="nick-pape"
REPO_NAME="grackle"
Usage
/set-blocked-by <blocked#> <blocker#>— mark issue as blocked by another/set-blocked-by remove <blocked#> <blocker#>— remove the blocked-by relationship
Step 1: Get Node IDs
Fetch node IDs for both issues:
gh api graphql -f query='
query($owner: String!, $name: String!, $blocked: Int!, $blocker: Int!) {
repository(owner: $owner, name: $name) {
blocked: issue(number: $blocked) { id title }
blocker: issue(number: $blocker) { id title }
}
}
' -f owner="$REPO_OWNER" -f name="$REPO_NAME" -F blocked=<BLOCKED_NUMBER> -F blocker=<BLOCKER_NUMBER>
Step 2: Mutate
Add blocked-by
gh api graphql -f query='mutation {
addBlockedBy(input: {
issueId: "<BLOCKED_NODE_ID>",
blockingIssueId: "<BLOCKER_NODE_ID>"
}) { issue { number title } }
}'
Remove blocked-by
gh api graphql -f query='mutation {
removeBlockedBy(input: {
issueId: "<BLOCKED_NODE_ID>",
blockingIssueId: "<BLOCKER_NODE_ID>"
}) { issue { number title } }
}'
Field names (easy to mix up):
issueId= the issue that is blockedblockingIssueId= the issue that is blocking it
Step 3: Confirm
Report what was done: "Marked #blocked as blocked by #blocker" or "Removed blocked-by relationship between #blocked and #blocker."
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.
- 10d ago First seen · 67 lines · 49 tokens per session scan A 2cb031e7873e
set-blocked-by is a skill published in the GitHub repository nick-pape/grackle (21 stars, last pushed 2mo ago), licensed MIT. It adds 49 tokens to every session and 482 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
configure-coddy
Change Coddy's own configuration when the user asks for it: edit settings, providers, models, logging, permissions, or find, install, update, and remove MCP servers and skills. Stages UCI-style commands and commits only after the user confirms saving. Load when the user explicitly asks to change a Coddy setting, or…
generate-rules
Scan the codebase and generate or refresh focused project rules under .coddy/rules/.
track-findings
Track validated Codex Security findings in Linear, Jira, GitHub issues, or draft GitHub security advisories. Use it for one finding or an explicitly selected batch of up to 25 findings tracked as Linear, Jira, or GitHub issues. Includes duplicate checks, exact previews, approval-gated writes, and readback. Do not use…
coddy_project_demo
Examples-only project-local slash skill (copied under /.coddy/skills by the e2e harnesses).
coddy_slash_demo
Examples-only slash skill (Coddy skillsfixture).
kirby-project-tour
Maps a Kirby project using Kirby MCP tools/resources, including roots, templates, snippets, controllers, models, blueprints, plugins, runtime status, and key config. Use when a user wants a project overview, file locations, or a quick orientation before making changes.