docs: add podman-compose, update all project documentation

- docker-compose.yml for podman-compose deployment
- Makefile: add up/down/logs compose targets
- README: plugin table, container quickstart, make targets
- PROJECT: plugin categories, deployment matrix, design decisions
- ROADMAP: v0.1 done, v0.2 current, v0.3-v1.0 planned
- TASKS: current sprint with priorities
- TODO: full backlog organized by wave
- CHEATSHEET: reorganized by category (OSINT, Red Team, OPSEC)
- INSTALL: container deployment instructions
- DEBUG: container logs, hot-reload, DNS troubleshooting
- USAGE: all 19 commands documented

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 01:46:21 +01:00
parent 2e2378d3ee
commit c5b0430da8
11 changed files with 351 additions and 80 deletions

View File

@@ -1,16 +1,28 @@
# derp - Tasks
## Current (2026-02-15)
## Current Sprint (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 |
| P1 | [x] | crt.sh CT lookup plugin (`!cert`) |
| P2 | [ ] | SASL authentication |
| P0 | [x] | Hot-reload: !load, !reload, !unload, !plugins |
| P0 | [x] | Command shorthand (prefix matching) |
| P0 | [x] | Container support (Containerfile + podman-compose) |
| P0 | [x] | Wave 1 plugins: dns, encode, hash, defang, revshell, cidr |
| P0 | [x] | Plugin help: !help <plugin> shows description + commands |
| P0 | [x] | Bot uptime command |
| P0 | [x] | Documentation update (all docs current) |
| P1 | [ ] | SASL PLAIN authentication |
| P1 | [ ] | Rate limiting for outgoing messages |
| P1 | [ ] | CTCP responses (VERSION, TIME, PING) |
| P2 | [ ] | Admin/owner permission system |
## Completed
| Date | Task |
|------|------|
| 2026-02-15 | Wave 1 plugins (dns, encode, hash, defang, revshell, cidr) |
| 2026-02-15 | Hot-reload, shorthand, plugin help |
| 2026-02-15 | Container deployment (Containerfile, compose, Makefile targets) |
| 2026-02-15 | crt.sh CT lookup plugin |
| 2026-02-15 | TLS verify option for self-signed certs |
| 2026-02-15 | Initial implementation (IRC, plugins, config, CLI) |