fast-mcp-telegram: Skill for Claude Code

.cursor/skills/sourcery-pr-cycle/SKILL.md

sourcery-pr-cycle is a skill for Claude Code, Cursor from alexeyleshchenko/fast-mcp-telegram. It costs 73 tokens per session (1,509 once invoked), scanned A, a copy of sourcery-pr-cycle, MIT.

A workflow for creating a GitHub pull request and repeating Sourcery's AI code review cycle until the branch is ready to merge. A pull request is a proposed code change that others review before it is added to the project.

In plain words
What is it for?
Use it to open a pull request, check automated results, fix blocking Sourcery comments, push updates, request another review, and finish when the branch is merge-ready.
Why use it?
It keeps tests, review comments, fixes, and follow-up reviews in one repeatable process instead of leaving unresolved feedback in the pull request.

Skill for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also installed under .cursor/.

This is alexeyleshchenko/fast-mcp-telegram's own configuration. It tells Claude Code and Cursor how to work on fast-mcp-telegram itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything fast-mcp-telegram configures →

Reuse

Borrowing it

Nothing to install: this file belongs to alexeyleshchenko/fast-mcp-telegram. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/alexeyleshchenko/fast-mcp-telegram/master/.cursor/skills/sourcery-pr-cycle/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/alexeyleshchenko/fast-mcp-telegram

Made for: Claude Code, Cursor.

Wrote 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.

agentmods badge for sourcery-pr-cycle

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle/github.svg)](https://agentmods.dev/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle)
Your own site
<a href="https://agentmods.dev/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle"><img src="https://agentmods.dev/badge/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle/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.

agentmods 80×15 button for sourcery-pr-cycle

Your own site · 80×15
<a href="https://agentmods.dev/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle"><img src="https://agentmods.dev/badge/skills/alexeyleshchenko/fast-mcp-telegram/sourcery-pr-cycle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,509 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.01509
Opus 5 $0.00036 $0.00754
Sonnet 5 $0.00015 $0.00302
Haiku 4.5 $0.00007 $0.00151

Measured 11d ago against content hash a771c8d581f0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

sourcery-pr-cycle 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 11d 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.

Origin

This is a copy

100% identical to sourcery-pr-cycle — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.cursor/skills/sourcery-pr-cycle/SKILL.md · 202 lines

How it starts

The opening of the file, as written. The whole thing — 202 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sourcery PR Cycle

End-to-end loop: open PR → Sourcery review → fix → push → re-review → repeat → merge.

For triage and status tables on individual comments, read sourcery-pr-review-analysis. This skill is the workflow loop only.

When to use

  • User asks to create a PR or run the Sourcery review cycle
  • Post-implementation work is done and the branch needs merge readiness
  • Sourcery left comments and the user wants fixes + another review pass

Cycle checklist

Copy and track progress:

PR + Sourcery cycle:
- [ ] 1. Pre-push: exit tests green
- [ ] 2. Create PR (gh push + gh pr create)
- [ ] 3. Wait / poll Sourcery (checks + comments)
- [ ] 4. Triage comments; fix blocking issues
- [ ] 5. Pre-push: exit tests green again
- [ ] 6. Commit + push fixes
- [ ] 7. Request new Sourcery review
- [ ] 8. Repeat 3–7 until clean
- [ ] 9. Closeout + merge when ready

1. Pre-push gate (every push)

Run exit tests/commands from the approved plan before every commit and push. Do not push with failing exits.

If fixes changed behavior, re-run exits after fixes and before commit.


2. Create the PR

Use gh for all GitHub operations. Before creating the PR, gather branch state in parallel:

git status
git diff
git log --oneline -10
git diff main...HEAD   # or master — use repo default base

Check whether the branch tracks remote and is up to date.

Push and create (sequential):

git push -u origin HEAD

gh pr create --title "the pr title" --body "$(cat <<'EOF'
## Summary
- ...

## Test plan
- [ ] ...

EOF
)"

Return the PR URL to the user.

Commit rules: Only commit when the user asks. Never commit secrets (.env, tokens, acl.dev.yaml with real bearers).


3. Wait for / check Sourcery

Sourcery runs after the PR exists. Poll until the review finishes or stale.

CI / check status:

gh pr checks <N>

Review comments (issue-level, from sourcery-ai[bot]):

Read the full file on GitHub · 202 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 11d ago First seen · 202 lines · 73 tokens per session scan A a771c8d581f0

Subscribe to this mod's changes

sourcery-pr-cycle is a skill published in the GitHub repository alexeyleshchenko/fast-mcp-telegram (2 stars, last pushed 21d ago), licensed MIT. It adds 73 tokens to every session and 1,509 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to sourcery-pr-cycle, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

release-pr-review

Review pass on an open release PR (release/ → main) — the step between git-wrapup and release-and-publish when a project releases in gated release PR mode. Reads the PR's commit range through the code-simplifier lens plus a correctness review, verifies whatever an automated reviewer left on the PR, lands fixes as…

cyanheads/obsidian-mcp-server · 139 tokens

pr

Create a pull request using the Dedalus PR template. Injects git state, commit history, and diff stats automatically.

Kevin-Liu-01/Agent-Machines · 26 tokens

pr-review

Review PR comments from GitHub. Fetches inline review comments and issue comments, classifies by review.md prefix semantics (blocking vs non-blocking), and summarizes actionable items. Use when the user asks to check PR feedback, see reviewer comments, or address PR review.

Kevin-Liu-01/Agent-Machines · 57 tokens

babysit

Keep a PR merge-ready by triaging comments, resolving clear conflicts, and fixing CI in a loop.

Kevin-Liu-01/Agent-Machines · 25 tokens

smart-pr-generator

Analyzes Git diffs (staged or unstaged) and generates conventional commit messages and detailed, slop-free Pull Request descriptions.

aragaobruno/toolbelt · 31 tokens

release-pr-review

Review pass on an open release PR (release/ → main) — the step between git-wrapup and release-and-publish when a project releases in gated release PR mode. Reads the PR's commit range through the code-simplifier lens plus a correctness review, verifies whatever an automated reviewer left on the PR, lands fixes as…

cyanheads/pubmed-mcp-server · 139 tokens