How this skill is triggered — by the user, by Claude, or both
Slash command
/extending-your-agent-tutorial:hello [help-working-on][help-working-on]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Log your reasoning to ${CLAUDE_SKILL_DIR}/logs/${CLAUDE_SESSION_ID}.log and log the full path.
Log your reasoning to ${CLAUDE_SKILL_DIR}/logs/${CLAUDE_SESSION_ID}.log and log the full path.
The last line you append MUST be a status marker the greeter-log monitor watches for:
[done] <one-line summary> on success[error] <what failed> if the greeting could not be producedThe current user is
!whoami
node -v
npm -v
git --version
Greet the "Current user" warmly and ask how you can help them with "$ARGUMENTS" today. Shortly state their current environment.
Render the banner with the figlet-text-converter skill (a plugin dependency — see
.claude-plugin/plugin.json dependencies): use it to turn the user's name into big FIGlet ASCII letters.
Then make it awesome — wrap the banner in a rainbow and add a unicorn (and friends 🦄🌈✨).
npx claudepluginhub itenium-be/extending-your-agent --plugin extending-your-agent-tutorialGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.