mit einem Klick
favicon
Triggers on /favicon only.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Triggers on /favicon only.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Triggers on /clockify-reconciliator <project> only. Adds descriptions to description-less Clockify entries for a configured project, splitting large blocks into 1-3h chunks using git commits from configured repos.
Triggers on /work-recap only. Dispatches to a named recap variant (e.g. zirtue weekly, zirtue daily). Each variant lives in a subfolder under this skill.
Triggers on /schedule-once only. Schedules a SINGLE future run of a Claude prompt (or a raw shell command) on THIS machine via Windows Task Scheduler, as a self-deleting one-time task. The local, one-shot counterpart to the cloud /schedule and the recurring /cron-run. PC must be on and logged in at fire time; Claude Code itself need not be open. Also supports list and cancel.
Triggers on /create-pr only. Drafts a human-light PR for the current branch, scales the body to the diff, suggests visuals, previews locally, and creates it on approval.
Triggers on /autopilot only. Dev is AFK and wants maximum autonomous progress with heavy but purposeful token use. Never block - delegate aggressively to subagents to keep main context lean, resolve real judgment calls via a BOUNDED /iterate-it (capped per run), auto-answer any nested skill's question instead of hanging, log decisions, park true hard-stops, and grind the task to a verified finish.
Triggers on /batch-todos only. Dedupes ai_todos, classifies survivors as EASY (auto-execute) or HARD (dev picks), shows dry-run confirmation, batches all EASY todos, then surfaces the HARD queue.
| name | favicon |
| description | Triggers on /favicon only. |
Check for and generate favicon files (svg, png, ico) for any project type.
Both scripts live in the same folder as this SKILL.md.
svg-to-png.js - converts SVG to PNG. Usage: node <path-to-skill>/svg-to-png.js <input.svg> <output.png> <size>png-to-ico.js - converts PNG to ICO. Usage: node <path-to-skill>/png-to-ico.js <input.png> <output.ico>png-to-ico.js requires the png-to-ico npm package. Before running it, always check and install if missing:
npm list -g png-to-ico
If not found:
npm install -g png-to-ico
Do this every time, without asking the user.
skipVerification - skip early-out checks and regenerate everything from scratchUse these signals (first match wins):
src-tauri/ folder, tauri.conf.json, or Cargo.toml depending on tauri → taurinext.config.* or next in package.json deps → nextvite.config.* + React deps in package.json → reactvite.config.* without React → viteindex.html + no bundler config → htmlRead the matching platform spec from this skill's platforms/ folder (e.g. platforms/tauri.md). The spec defines:
If no spec exists for the detected type, fall back to platforms/html.md.
Search the entire project for:
favicon.svgfavicon.pngfavicon.icoNote current locations vs. canonical locations from the platform spec.
Move any misplaced favicon files to their canonical paths per the platform spec. Update references in the HTML entry point after moving.
node <path-to-skill>/svg-to-png.js <svg-path> <png-path> 256
node <path-to-skill>/png-to-ico.js <png-path> <ico-path>
skipVerification was not passed, tell the user and stop..portfolio-data/PORTFOLIO.md and README.md if they exist.Follow the platform spec for what HTML changes to make. Some platforms (e.g. Next.js App Router) need no link tags - the spec will say so.
Run any platform-specific extras defined in the spec (e.g. Tauri native icon generation).
Tell the user what was found, what was generated, and what is still missing. Do not commit.