Plugin developmentΒΆ
Plugins form the heart of Errbot. From the ground up, it is designed to be extended entirely through plugins. In this guide we will explain the basics of writing simple plugins, which we then follow up on further with sets of recipes on a range of topics describing how to handle more advanced use-cases.
- 1. Intro
- 2. Development environment
- 3. Hello, world!
- 4. Advanced bot commands
- 5. Messaging
- 6. Presence
- 7. Mentions
- 8. Persistence
- 9. Configuration
- 10. Streams
- 11. Plugin Dependencies
- 12. Dynamic plugins (advanced)
- 13. Scheduling
- 14. Webhooks
- 15. Testing your plugins
- 16. Logging
- 17. Exception Handling
- 18. Plugin compatibility settings
- 19. Backend-specifics
Previous: Administration
|
Next: 1. Intro