create-release

create-release is a command for Claude Code, Cursor from joshuayoes/ios-simulator-mcp. It costs 0 tokens per session (494 once invoked), scanned A, original, MIT.

A release workflow for turning commits since the last Git tag into a GitHub release. It reads the package version, prepares Markdown release notes, uses the GitHub CLI, and checks the resulting workflow.

In plain words
What is it for?
Use it when publishing a new version from a Git repository. It helps document changes, create the GitHub release, and verify the post-release automation.
Why use it?
It removes the need to manually compare changes, write release notes, create the release, and check whether its automated follow-up succeeded.

Command for Claude CodeCursor

Written for Cursor and Claude Code: installed under .cursor/, but also a Claude Code command (commands/*.md).

About the project

ios-simulator-mcp is an MCP server that lets an AI agent inspect and control iOS simulators, including their available information, interface elements, and UI interactions. Developers use it to automate or examine applications running in the iOS Simulator. The catalogue entries provide instructions and commands for operating the server.

joshuayoes/ios-simulator-mcp · 2,165 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/joshuayoes/ios-simulator-mcp/create-release
Clone the repo
git clone --depth 1 https://github.com/joshuayoes/ios-simulator-mcp

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 create-release

README.md
[![agentmods](https://agentmods.dev/badge/commands/joshuayoes/ios-simulator-mcp/create-release.svg)](https://agentmods.dev/commands/joshuayoes/ios-simulator-mcp/create-release)
Your own site
<a href="https://agentmods.dev/commands/joshuayoes/ios-simulator-mcp/create-release"><img src="https://agentmods.dev/badge/commands/joshuayoes/ios-simulator-mcp/create-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 494 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00000 $0.00494
Opus 5 $0.00000 $0.00247
Sonnet 5 $0.00000 $0.00099
Haiku 4.5 $0.00000 $0.00049

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

Security

Grade A, and why

create-release 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 6d 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.

.cursor/commands/create-release.md · 63 lines

How it starts

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

Create GitHub Release from Changes Since Last Tag

Create a GitHub release based on commits since the previous tag. Generate release notes, create the release using the GitHub CLI, and verify the post-release workflow status.

Gather Information

  1. Get the new version from package.json version key
  2. Get the previous tag using git describe --tags --abbrev=0
  3. Get the target commit SHA using git rev-parse HEAD

Steps

  1. Get Git Diff: Look at all the changes between the previous tag and HEAD:

    git --no-pager diff <PREVIOUS_REF>
    
  2. Format Release Notes: Take the raw git diff and format it into Markdown using this structure:

    # iOS Simulator MCP <NEW_VERSION>
    
    ## Features 
    - **Feature Name:** Description...
    
    ## Improvements
    - **Improvement Name:** Description...
    
    ## Documentation
    - **Doc Update:** Description...
    
    ## Build
    - **Version Bump:** Updated the project version to <NEW_VERSION>.
    
  3. Create Temporary Notes File: Save the formatted markdown notes into TEMP.md. This avoids shell quoting/escaping issues.

    ⚠️ STOP and ask for review before proceeding. Creating a release will trigger a GitHub action that is too fast to cancel if triggered by mistake.

  4. Create GitHub Release: Use the gh CLI to create the release:

    gh release create <NEW_VERSION> --target <TARGET_SHA> --title "<RELEASE_TITLE>" --notes-file TEMP.md --latest
    

    For the title, use format: <NEW_VERSION> - <SUMMARY> where summary is the most significant change in 5 words or less. Consider adding an emoji at the end if it matches well.

  5. Clean Up: Remove the temporary notes file:

    rm TEMP.md
    
  6. Verify Workflow Status: Check the status of the workflow run triggered by the release:

    gh run list --limit 1 --json name,status,conclusion,event,url --jq '.[0]' | cat
    

    The conclusion field should be success.

Read the full file on GitHub · 63 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. 6d ago First seen · 63 lines · 0 tokens per session scan A 829c5b771876

Subscribe to this mod's changes

create-release is a command published in the GitHub repository joshuayoes/ios-simulator-mcp (2,165 stars, last pushed 23d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 494 tokens. 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.