Safe skill
A simple code formatting skill. Reformats code to follow project conventions. Use when the user asks to "format code", "clean up formatting", or "fix style".From its SKILL.md
npx -y skills add ArielSmoliar/safe-agent --skill safe-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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.
SKILL.md
0.8 KB, 133 tokens by cl100k_base, as published. Nobody here has run it
Code Formatter
Reformat the specified file(s) to match the project's code style conventions.
Rules
- Use consistent indentation (detect from existing code: tabs or spaces)
- Normalize trailing whitespace
- Ensure files end with a single newline
- Align object properties when they're on consecutive lines
- Sort imports alphabetically within each group
When to Use
- User asks to format or clean up a file
- As a final step after refactoring
When NOT to Use
- During a code review (formatting changes obscure logic changes)
- On generated files (formatters can break generated code)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.