{"id":37386573,"url":"https://github.com/morria/digichat","last_synced_at":"2026-01-16T05:21:43.159Z","repository":{"id":324414283,"uuid":"1097113213","full_name":"morria/digichat","owner":"morria","description":"Digital Modes chat.","archived":false,"fork":false,"pushed_at":"2025-11-15T16:42:04.000Z","size":114,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-15T18:23:57.100Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/morria.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-15T15:07:35.000Z","updated_at":"2025-11-15T16:42:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/morria/digichat","commit_stats":null,"previous_names":["morria/digichat"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/morria/digichat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morria%2Fdigichat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morria%2Fdigichat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morria%2Fdigichat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morria%2Fdigichat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morria","download_url":"https://codeload.github.com/morria/digichat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morria%2Fdigichat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-16T05:21:42.532Z","updated_at":"2026-01-16T05:21:43.152Z","avatar_url":"https://github.com/morria.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DigiChat\n\nA curses-based chat interface for amateur radio digital modes, designed to run entirely in the CLI with support for CW (Morse code), PSK31, and RTTY.\n\n## Features\n\n- **Digital Mode Support**: CW, PSK31, and RTTY decoding and encoding\n- **Slack-like Interface**:\n  - Left rail for configuration and real-time statistics\n  - Right panel with scrolling message history and text input\n- **Sound Card Integration**: Direct audio I/O with your HF radio\n- **Optional Hamlib Support**: Control radio frequency, mode, and other settings\n- **Configuration Panel**: Popup interface for all settings\n\n## Inspiration\n\nTakes inspiration from fldigi's GUI but keeps the implementation simple and CLI-focused using Python's curses library.\n\n## Installation\n\n### System Dependencies\n\nDigiChat requires PortAudio for audio input/output. Install the development headers for your system:\n\n**Debian/Ubuntu:**\n```bash\nsudo apt-get update\nsudo apt-get install portaudio19-dev python3-dev\n```\n\n**Fedora/RHEL:**\n```bash\nsudo dnf install portaudio-devel python3-devel\n```\n\n**Arch Linux:**\n```bash\nsudo pacman -S portaudio\n```\n\n**macOS:**\n```bash\nbrew install portaudio\n```\n\n### From Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/morria/digichat.git\ncd digichat\n\n# Install system dependencies (automatic detection)\nmake system-deps\n\n# Install in development mode\nmake install\n\n# Or install Python packages only (if you've already installed system deps)\npip install -e \".[dev]\"\n```\n\n### Using pip (when published)\n\n```bash\npip install digichat\n```\n\n## Quick Start\n\n```bash\n# Run with default settings\ndigichat\n\n# Run with specific audio device\ndigichat --audio-device 2\n\n# Run with hamlib support\ndigichat --hamlib --rig-model 1234 --rig-port /dev/ttyUSB0\n```\n\n## Configuration\n\nConfiguration is managed through:\n1. Command-line arguments\n2. Configuration file (`~/.digichat/config.yaml`)\n3. In-app configuration popup (accessible via hotkey)\n\n## Development\n\nSee [DEVELOPMENT.md](docs/DEVELOPMENT.md) for detailed development instructions and architecture documentation.\n\n### For Claude Code\n\nThis project includes comprehensive documentation for AI-assisted development with Claude Code. See the [docs/claude-code/](docs/claude-code/) directory for:\n\n- Implementation guides\n- Architecture documentation\n- Development workflows\n\n## Requirements\n\n- Python 3.9+\n- Sound card with audio input/output\n- HF radio transceiver (for actual radio operation)\n- Optional: Hamlib-compatible radio for CAT control\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.\n\n## Acknowledgments\n\n- Inspired by [fldigi](http://www.w1hkj.com/)\n- Uses concepts from various amateur radio digital mode implementations\n- Built for the amateur radio community\n\n## Amateur Radio License\n\nThis software is designed for use by licensed amateur radio operators. Please ensure you have the appropriate license for your jurisdiction before transmitting.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorria%2Fdigichat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorria%2Fdigichat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorria%2Fdigichat/lists"}