Smart rename
Skill fernando-bertholdo/4-successful-AI-life/plugins/smart-session-rename-cc/skills/smart-rename
Curated Claude Code plugin marketplace — opinionated, production-ready skills for AI-assisted work, focused on craft, rigor, and practical excellence.
npx -y skills add fernando-bertholdo/4-successful-AI-life --skill smart-renameAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage the smart-session-rename plugin — suggest, anchor, freeze, force, explain.
SKILL.md
1.6 KB, as published. Nobody here has run it
/smart-rename (v1.5)
When the user invokes /smart-rename [args], run the matching command via the Bash tool and report the output verbatim. Pass $CLAUDE_TRANSCRIPT_PATH as the last argument.
Subcommands
/smart-rename — suggest (consumes 1 budget slot)
IMPORTANT: This command calls an inner claude -p process that takes 30-90 seconds to complete (the child process must initialize its own plugin stack + create prompt cache). You MUST:
- Run this Bash command in foreground (NOT background)
- Set the Bash tool timeout to at least 120 seconds
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh "" "$CLAUDE_TRANSCRIPT_PATH" "${CLAUDE_PROJECT_DIR:-$PWD}"
/smart-rename <name> — set domain anchor
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh "<name>" "$CLAUDE_TRANSCRIPT_PATH"
/smart-rename freeze / unfreeze
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh freeze "$CLAUDE_TRANSCRIPT_PATH"
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh unfreeze "$CLAUDE_TRANSCRIPT_PATH"
/smart-rename force
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh force "$CLAUDE_TRANSCRIPT_PATH"
/smart-rename explain
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh explain "$CLAUDE_TRANSCRIPT_PATH"
/smart-rename unanchor
${CLAUDE_PLUGIN_ROOT}/scripts/smart-rename-cli.sh unanchor "$CLAUDE_TRANSCRIPT_PATH"
If the CLI exits non-zero, report the error message verbatim. Do not retry automatically.