Skip to content

Commit 9298670

Browse files
authored
Merge pull request #4 from jmjava/discord
Update README.md to document Discord sync functionality
2 parents b72de95 + bf1dabb commit 9298670

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

README.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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
423434
git 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

428464
For automation and monitoring!
429465

0 commit comments

Comments
 (0)