Safe skill
Security skills that make AI coding agents safe to run. 5 drop-in skills: skill verification, cost tracking, tool authorization, behavioral anomaly detection, and pre-execution safety.
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.
What its author says it does
Copied from the file, not written here
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".
SKILL.md
0.8 KB, 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)