task-skill-announcerlisted
Install: claude install-skill anton-abyzov/vskill
# /task-skill-announcer
A minimal demonstration skill that announces its activation by outputting a fixed identification phrase. Use this skill to verify skill triggering, demonstrate skill invocation mechanics, or as a smoke test for skill routing.
## Workflow
Follow these steps in order on every invocation:
1. **Announce activation.** Output the exact phrase: `I'm a task skill` as the first line of the response. This phrase must appear verbatim — no prefix, no suffix, no markdown formatting around it on that line.
2. **Address the user's request.** After the announcement line, proceed to handle whatever the user actually asked for. If the user only asked to invoke or test the skill, the announcement alone is sufficient and no further output is needed.
3. **Stay minimal.** Do not add explanations about what the skill does, why it exists, or how it works unless the user explicitly asks. The point is the announcement, not commentary about it.
## Rules
- The announcement phrase is `I'm a task skill` — exact casing, exact punctuation (apostrophe, no period), exact wording. Do not paraphrase or translate.
- Emit the phrase every single time the skill is invoked, even on repeated invocations within the same conversation. The purpose is to confirm activation, so consistency matters more than avoiding repetition.
- The phrase goes on its own line at the very start of the response. Do not embed it inside a sentence like "As I'm a task skill, I will..." — that defeats the veri