docs: update CLAUDE.md

This commit is contained in:
Felipe M 2025-06-13 10:47:53 +02:00
parent c7fdb9fc6a
commit 3771d2de65
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8

22
CLAUDE.md Normal file
View file

@ -0,0 +1,22 @@
# Claude Code Instructions
## Plugin Development Workflow
When creating, modifying, or removing plugins:
1. **Always update the plugin documentation** in `docs/plugins.md` after any plugin changes
2. Ensure the documentation includes:
- Plugin name and category (Development, Fun and entertainment, Utility, Security, Social Media)
- Brief description of functionality
- Usage instructions with examples
- Any configuration requirements
## Testing
Before committing plugin changes:
1. Check files are properly formatted: Run `make format`
2. Check code style and linting: Run `make lint`
3. Test the plugin functionality: Run `make test`
4. Verify documentation accuracy
5. Ensure all examples work as described