mirror of
https://github.com/guillaumemeyer/watermarks-remover.git
synced 2026-08-22 13:11:57 +02:00
* feat: add lightweight Cursor and Codex text skill Package the text-only workflow with safe cross-platform installation, optional persistent instructions, and focused tests so users can adopt it without the media tooling. Co-authored-by: Cursor <cursoragent@cursor.com> * test: keep the lightweight skill independently reviewable Avoid coupling the packaging PR to the separate Unicode safety change so either pull request can merge on its own. Co-authored-by: Cursor <cursoragent@cursor.com> * test: force UTF-8 for subprocess stdin in Windows CI --------- Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: Guillaume Meyer (The Opinionated Man) <1385518+guillaumemeyer@users.noreply.github.com>
6 lines
135 B
Bash
Executable File
6 lines
135 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec python3 "$ROOT/install_skill.py" "$@"
|