@@ -111,12 +111,23 @@ embabel-learning/
111111│ ├── view-pr.sh # Analyze specific PRs
112112│ ├── setup-aliases.sh # Install convenient shell aliases
113113│ └── setup-pre-commit.sh # Setup pre-commit & GitGuardian
114+ ├── discord-sync/ # Discord message export and summarization
115+ │ ├── sync-discord.sh # Export and summarize Discord messages
116+ │ └── README.md # Discord sync documentation
117+ ├── embabel-hub/ # Embabel Hub Docker container management
118+ │ ├── starthub.sh # Start embabel-hub container
119+ │ ├── stophub.sh # Stop embabel-hub container
120+ │ └── STARTUP.md # Hub startup guide
114121├── docs/ # Documentation
115122│ └── EMBABEL-WORKFLOW.md # Complete detailed workflow guide
116123├── notes/ # Your personal learning notes
117124│ ├── session-notes/ # Weekly notes and catch-up summaries
118125│ ├── my-contributions/ # Your PR and contribution tracking
119126│ └── discussions/ # PR discussion briefs
127+ ├── test/ # Test suite
128+ │ ├── ARCHITECTURE.md # Test architecture documentation
129+ │ ├── unit/ # Unit tests
130+ │ └── run-tests.sh # Test runner
120131├── .pre-commit-config.yaml # Pre-commit hooks configuration
121132├── .yamllint.yml # YAML linting rules
122133├── .secrets.baseline # Secrets detection baseline
@@ -423,7 +434,32 @@ git fetch upstream
423434git merge upstream/main
424435```
425436
426- ### 4. These Scripts
437+ ### 4. Discord Sync
438+
439+ For exporting and summarizing Discord messages:
440+
441+ ``` bash
442+ # Export messages from a channel
443+ ediscord --channel YOUR_CHANNEL_ID \
444+ --after " 2026-01-25" \
445+ --before " 2026-01-26"
446+
447+ # Filter by username
448+ ediscord --channel YOUR_CHANNEL_ID \
449+ --after " 2026-01-25" \
450+ --username " alice" \
451+ --username " bob"
452+
453+ # Filter by topic
454+ ediscord --channel YOUR_CHANNEL_ID \
455+ --after " 2026-01-25" \
456+ --topic " embabel" \
457+ --topic " agent"
458+ ```
459+
460+ See [ discord-sync/README.md] ( discord-sync/README.md ) for complete documentation.
461+
462+ ### 5. These Scripts
427463
428464For automation and monitoring!
429465
0 commit comments