Files
cproof-plugins/README.md
Jabber Developer e68110eee8 ref: Cleanup and rearrange files, update documentation
- Remove Ruby files since they aren't supported anymore
- Remove test and samples files
- Move all the "stable" plugins to `src` folder to follow standard conventions
- Update links and descriptions in the documentation
2025-07-14 11:07:33 +02:00

44 lines
1.0 KiB
Markdown

# CProof Plugins
[Website documentation](https://jabber.space/guides/plugins/)
`Master` is a development branch compatible with the latest version of CProof.
## Installing plugins
Use the `/plugins install` command, e.g.
```bash
/plugins install ~/path-to/sounds.py
```
Alternatively, you can use URLs to raw files to install Python plugins. For example,
```bash
/plugins install https://git.jabber.space/devs/cproof-plugins/raw/branch/master/src/sounds.py
```
See the `/help plugins` command for further plugin management options.
## Building CProof with plugin support
Dependencies required:
```
autoconf-archive
libtool
```
For Python plugins the following is also required:
```
python-dev
```
## Developing plugins
API Documentation is available on our website, [jabber.space](https://jabber.space/).
- [Python API](https://jabber.space/api-reference/python/prof/)
- [Python hooks](https://jabber.space/api-reference/python/plugin/)
- [C API](https://jabber.space/api-reference/c/profapi/)
- [C hooks](https://jabber.space/api-reference/c/profhooks/)