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

Self Updater

⭐ OPEN SOURCE! GitHub: github.com/GhostDragon124/openclaw-self-updater ⭐ ONLY skill with Cron-aware + Idle detection! Auto-updates OpenClaw core & skills, an...

Registry SourceRecently Updated
1221Profile unavailable
Coding

ClawHub CLI Assistant

Use the ClawHub CLI to publish, inspect, version, update, sync, and troubleshoot OpenClaw skills from the terminal.

Registry SourceRecently Updated
1.9K2Profile unavailable
Coding

SkillTree Learning Progress Tracker

Track learning across topics like an RPG skill tree. Prerequisites, milestones, suggested next steps. Gamified learning path.

Registry SourceRecently Updated
910Profile unavailable
Coding

Speak Turbo - Talk to your Claude 90ms latency!

Give your agent the ability to speak to you real-time. Talk to your Claude! Ultra-fast TTS, text-to-speech, voice synthesis, audio output with ~90ms latency....

Registry SourceRecently Updated
4480Profile unavailable