Files
derp/TASKS.md
user bf45abcbad feat: initial implementation
Asyncio IRC bot with decorator-based plugin system.
Zero external dependencies, Python 3.11+.

- IRC protocol: message parsing, formatting, async TCP/TLS connection
- Plugin system: @command and @event decorators, file-based loading
- Bot orchestrator: connect, dispatch, reconnect, nick recovery
- CLI: argparse entry point with TOML config
- Built-in plugins: ping, help, version, echo
- 28 unit tests for parser and plugin system
2026-02-15 00:37:31 +01:00

16 lines
465 B
Markdown

# derp - Tasks
## Current (2026-02-15)
| Pri | Status | Task |
|-----|--------|------|
| P0 | [x] | Core IRC protocol implementation |
| P0 | [x] | Plugin system with decorators |
| P0 | [x] | Bot orchestrator with reconnect |
| P0 | [x] | CLI entry point |
| P0 | [x] | Built-in plugins (core, example) |
| P0 | [x] | Unit tests for parser and plugins |
| P0 | [x] | Documentation |
| P1 | [ ] | Test against live IRC server |
| P2 | [ ] | SASL authentication |