Top 5 Swift Discord Projects
-
-
AppSignal
Monitoring that respects your time & budget. APM, error tracking, and dashboards for modern web apps. Ten-minute setup, transparent flat pricing, and support from engineers who actually use the product.
-
Messenger Chat with Firebase
Messenger Clone - Real-time iOS Chat with Firebase Firestore written in Swift
-
-
SwiftDisc
SwiftDisc is a lightweight, native Swift library designed for building powerful Discord bots on iOS and macOS
Project mention: Building Discord Bots with Swift: A Complete Guide to SwiftDisc in 2025 | dev.to | 2025-11-26// Package.swift // swift-tools-version: 5.9 import PackageDescription let package = Package( name: "MyDiscordBot", platforms: [.macOS(.v13)], dependencies: [ .package(url: "https://github.com/M1tsumi/SwiftDisc.git", from: "1.0.0") ], targets: [ .executableTarget( name: "MyDiscordBot", dependencies: ["SwiftDisc"] ) ] )
-
Project mention: Nanobot: Ultra-Lightweight Alternative to OpenClaw | news.ycombinator.com | 2026-02-05
I'm in the process of migrating from my first POC's disgusting mess of vibe-coded Python to a cleaner (and shareable) Rust architecture. It's going well but I will wait for it to stabilize a bit before sharing.
The main non-trivial parts are proper state machine / concurrency management, and AirPods interaction; in particular, detecting a stem click while the microphone is active. I worked around this by having the mic-off-to-mic-on transition use a media player Play event, and mic-on-to-mic-off do silence detection. It's super hacky but actually works surprisingly well.
Currently looking into using `AVAudioApplication.setInputMuteStateChangeHandler(_:)`, like AirMute [1] does, so that I don't have to rely on silence detection and can manually terminate the voice command with a second click.
If you want to roll your own version of what I described today, it should be pretty easy to do so based on what I wrote if you have a Max x5-x20 plan and feed it to Opus. Bonus points, you get to customize it to your exact needs.
[1]: https://github.com/Solarphlare/AirMute
-
Kargo
Stop Scripting Promotions. Start Shipping with Kargo. Kargo automates promotion across dev, staging, and prod with approval gates and verification. Open source, built by the team behind Argo CD. Download now.
Swift Discord discussion
Swift Discord related posts
-
Building Discord Bots with Swift: A Complete Guide to SwiftDisc in 2025
-
Another reason switching to Mac was my best decision
-
Best macOS apps for boosted productivity
-
Swiftcord - A completely native Discord client for macOS built 100% in Swift and SwiftUI! (https://github.com/cryptoAlgorithm/Swiftcord)
Index
What are some of the best open-source Discord projects in Swift? This list will help you:
| # | Project | Stars |
|---|---|---|
| 1 | Swiftcord | 2,687 |
| 2 | Messenger Chat with Firebase | 788 |
| 3 | accord | 417 |
| 4 | SwiftDisc | 45 |
| 5 | AirMute | 42 |