synerise-design: Skill for Claude Code

.claude/skills/push-mr/SKILL.md

push-mr is a skill for Claude Code from Synerise/synerise-design. It costs 26 tokens per session (762 once invoked), scanned A, original, MIT.

A GitLab workflow that pushes the current branch, creates a merge request when needed, and watches its pipeline. A merge request is a proposed code change for review before it is merged.

In plain words
What is it for?
Use it to publish a branch, open or find its merge request, and monitor the pipeline until it finishes.
Why use it?
It removes repetitive steps between finishing local code and getting it into GitLab's review and automated-check process.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

This is Synerise/synerise-design's own configuration. It tells Claude Code how to work on synerise-design 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 synerise-design configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Synerise/synerise-design. 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/Synerise/synerise-design/master/.claude/skills/push-mr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Synerise/synerise-design

Made for: Claude Code.

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 push-mr

README.md
[![agentmods](https://agentmods.dev/badge/skills/synerise/synerise-design/push-mr/github.svg)](https://agentmods.dev/skills/synerise/synerise-design/push-mr)
Your own site
<a href="https://agentmods.dev/skills/synerise/synerise-design/push-mr"><img src="https://agentmods.dev/badge/skills/synerise/synerise-design/push-mr/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 push-mr

Your own site · 80×15
<a href="https://agentmods.dev/skills/synerise/synerise-design/push-mr"><img src="https://agentmods.dev/badge/skills/synerise/synerise-design/push-mr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 762 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 3
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found 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.00026 $0.00762
Opus 5 $0.00013 $0.00381
Sonnet 5 $0.00005 $0.00152
Haiku 4.5 $0.00003 $0.00076

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

Security

Grade A, and why

push-mr 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 4d 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.

.claude/skills/push-mr/SKILL.md · 106 lines

How it starts

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

Prerequisites

  • The GitLab API token and project details are stored in the user's memory at ~/.claude/projects/-Users-biedronne-Documents-Work-DS2-synerise-design/memory/gitlab-credentials.md
  • GitLab URL: https://gitlab.synerise.com
  • Project ID: 1171
  • API Token: Read from the credentials file above (use PRIVATE-TOKEN header)

Workflow

Step 1 — Push to origin

Push the current branch to origin:

git push -u origin HEAD

If the push fails (e.g., rejected), inform the user and stop.

Step 2 — Check for existing MR

Check if an MR already exists for the current branch:

BRANCH=$(git branch --show-current)
GET https://gitlab.synerise.com/api/v4/projects/1171/merge_requests?source_branch={BRANCH}&state=opened

If an MR already exists, skip to Step 4 (pipeline monitoring). Print the existing MR URL for the user.

Step 3 — Create the MR

If no MR exists, ask the user for a Jira task reference (e.g., STOR-1884). Use the AskUserQuestion tool — suggest a task reference extracted from the branch name if one is present.

Then analyze the changes on the branch to generate a summary of main changes. Use:

git log origin/master..HEAD --oneline
git diff origin/master..HEAD --stat

Create the MR via the GitLab API:

POST https://gitlab.synerise.com/api/v4/projects/1171/merge_requests

Body:

  • source_branch: current branch name
  • target_branch: master
  • title: Use the conventional commit format from the latest commit message (or branch name)
  • description: Use this template, filling in the changes and task reference:
Changes:
- <list main changes based on commits and diff>

Resolves task:
- <TASK_REFERENCE>
  • squash: true
  • remove_source_branch: true

Print the created MR URL for the user.

Step 4 — Monitor the pipeline

After push (whether MR was created or already existed), find the pipeline for the latest commit on the branch:

GET https://gitlab.synerise.com/api/v4/projects/1171/pipelines?ref={BRANCH}&order_by=id&sort=desc&per_page=1

Read the full file on GitHub · 106 lines

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. 4d ago First seen · 106 lines · 26 tokens per session scan A 53b8279a4e40

Subscribe to this mod's changes

push-mr is a skill published in the GitHub repository Synerise/synerise-design (96 stars, last pushed yesterday), licensed MIT. It adds 26 tokens to every session and 762 once invoked, about $0.0001 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-09-04.