strip-made-with-cursor

Set up Cursor hooks to automatically strip "Made with Cursor" branding from code, commits, and PR text before they are written. Use when the user wants to remove Cursor branding, strip "Made with Cursor" text, or add a preToolUse hook to prevent Cursor attribution.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "strip-made-with-cursor" with this command: npx skills add yuvalkarif/skills/yuvalkarif-skills-strip-made-with-cursor

Setup Strip Made With Cursor

Sets up a preToolUse hook that intercepts tool calls and silently strips "Made with Cursor" (and its markdown-link variant) from any string values before Cursor writes them.

What Gets Stripped

  • Made with Cursor (case-insensitive, plain text)
  • Made with [Cursor](...) (case-insensitive, markdown link variant)

When jq is available, the text is silently removed and the tool call proceeds. When jq is missing, the tool call is denied with a message asking the user to install jq.

Steps

1. Ask scope

Ask the user: install for this project only (.cursor/hooks.json) or globally (~/.cursor/hooks.json)?

2. Copy the hook script

The bundled script is at: scripts/strip-made-with-cursor.sh

Copy it to the target location based on scope:

  • Project: .cursor/hooks/strip-made-with-cursor.sh
  • Global: ~/.cursor/hooks/strip-made-with-cursor.sh

Make it executable with chmod +x.

3. Add hook to hooks.json

Add to the appropriate hooks.json file:

Project (.cursor/hooks.json):

{
  "version": 1,
  "hooks": {
    "preToolUse": [
      {
        "command": "bash .cursor/hooks/strip-made-with-cursor.sh"
      }
    ]
  }
}

Global (~/.cursor/hooks.json):

{
  "version": 1,
  "hooks": {
    "preToolUse": [
      {
        "command": "bash ~/.cursor/hooks/strip-made-with-cursor.sh"
      }
    ]
  }
}

If the hooks.json file already exists, merge the hook entry into the existing hooks.preToolUse array — don't overwrite other hooks.

4. Verify

Run a quick test:

echo '{"tool_name":"edit_file","tool_input":{"content":"Made with [Cursor](https://cursor.com)"}}' | bash <path-to-script>

Should return JSON with "decision":"allow" and the branding text removed from updated_input.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.

Repository SourceNeeds Review
160.7K94.2Kanthropics
Coding

remotion-best-practices

Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.

Repository SourceNeeds Review
148.2K2.1Kremotion-dev
Coding

azure-ai

Service Use When MCP Tools CLI

Repository SourceNeeds Review
136.3K155microsoft
Coding

azure-deploy

AUTHORITATIVE GUIDANCE — MANDATORY COMPLIANCE

Repository SourceNeeds Review
135.9K155microsoft