{"id":38160677,"url":"https://github.com/matt0x6f/irc-client","last_synced_at":"2026-06-26T19:00:34.776Z","repository":{"id":331759525,"uuid":"1127980419","full_name":"matt0x6F/irc-client","owner":"matt0x6F","description":"My personal IRC client","archived":false,"fork":false,"pushed_at":"2026-06-21T18:54:06.000Z","size":6246,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-21T19:15:06.332Z","etag":null,"topics":["irc","irc-client"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matt0x6F.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","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":"agents.md","dco":null,"cla":null}},"created_at":"2026-01-05T00:34:51.000Z","updated_at":"2026-06-21T17:31:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/matt0x6F/irc-client","commit_stats":null,"previous_names":["matt0x6f/irc-client"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/matt0x6F/irc-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt0x6F%2Firc-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt0x6F%2Firc-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt0x6F%2Firc-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt0x6F%2Firc-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matt0x6F","download_url":"https://codeload.github.com/matt0x6F/irc-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt0x6F%2Firc-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34829415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["irc","irc-client"],"created_at":"2026-01-16T23:14:35.874Z","updated_at":"2026-06-26T19:00:34.769Z","avatar_url":"https://github.com/matt0x6F.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cascade Chat\n\nA modern, multi-platform IRC client built with Wails, featuring plugin support, ShadCN UI, and efficient message storage.\n\n## Features\n\n- **Multi-platform**: Windows, macOS, and Linux support\n- **Plugin System**: IPC-based plugins (kubectl-style) for extensibility\n- **Modern UI**: ShadCN components with Tailwind CSS v4\n- **Efficient Storage**: SQLite with optimized batch writes\n- **Event-Driven**: Extensible event bus architecture\n\n## Install (macOS)\n\nDownload the latest `Cascade-\u003cversion\u003e-universal.dmg` from the\n[Releases page](https://github.com/matt0x6F/irc-client/releases). The build is a\nuniversal binary, running natively on both Apple Silicon and Intel Macs.\n\n1. Open the DMG and drag **Cascade** to your Applications folder.\n2. The build is **not code-signed**, so the first launch needs one extra step to\n   get past Gatekeeper:\n   - **Right-click** `Cascade.app` → **Open** → **Open** in the dialog, or\n   - run `xattr -dr com.apple.quarantine /Applications/cascade.app` in Terminal.\n\nYou only need to do this once; afterwards it launches normally.\n\n## Quick Start\n\n### Prerequisites\n\n- Go 1.25+ (required by Wails v3)\n- Node.js 20 (see `.nvmrc`; with nvm run `nvm use` so `task` can find npm)\n- Task: `go install github.com/go-task/task/v3/cmd/task@latest` (or `brew install go-task`)\n- Wails v3 CLI: `go install github.com/wailsapp/wails/v3/cmd/wails3@latest`\n\n### Installation\n\n1. Clone the repository\n2. Run setup:\n   ```bash\n   task setup\n   ```\n\n### Development\n\nRun the development server with hot reload:\n```bash\ntask dev\n```\n\nOr use Wails directly:\n```bash\nwails3 dev\n```\n\n### Building\n\nBuild for your current platform:\n```bash\ntask build\n```\n\nPackage a distributable `.app` bundle / installer:\n```bash\ntask package\n```\n\nBuild a macOS `.dmg` (output in `bin/`; `brew install create-dmg` for a nicer\nlayout, otherwise `hdiutil` is used):\n```bash\ntask dmg            # current architecture\ntask dmg-universal  # arm64 + amd64 universal\n```\n\n## Taskfile Commands\n\nThis project uses [Task](https://taskfile.dev) for workflow automation. Common commands:\n\n### Development\n- `task dev` - Run development server\n- `task build` - Build application\n- `task check` - Run all checks (fmt, lint, test, type-check)\n\n### Go Tasks\n- `task go-test` - Run Go tests\n- `task go-fmt` - Format Go code\n- `task go-lint` - Run Go linters\n- `task go-mod` - Tidy and verify modules\n\n### Frontend Tasks\n- `task frontend-install` - Install dependencies\n- `task frontend-build` - Build for production\n- `task frontend-type-check` - Type check TypeScript\n\n### Database Tasks\n- `task db-reset` - Reset database (WARNING: deletes all data)\n- `task db-backup` - Backup database\n\n### Plugin Tasks\n- `task plugin-list` - List discovered plugins\n- `task plugin-dir` - Create plugin directory\n\n### Setup \u0026 Maintenance\n- `task setup` - Initial project setup\n- `task setup-dev` - Setup development environment\n- `task clean` - Clean build artifacts\n- `task release-check` - Run all checks before release\n\nSee all available tasks:\n```bash\ntask --list\n```\n\n## Project Structure\n\n```\ncascade/\n├── app.go                 # Wails app entry with bindings\n├── main.go                # Application entry point\n├── internal/\n│   ├── irc/              # IRC core implementation\n│   ├── events/            # Event bus\n│   ├── plugin/            # Plugin system\n│   └── storage/           # Database layer\n├── frontend/\n│   └── src/\n│       ├── components/    # React components\n│       └── types/         # TypeScript definitions\n└── plugins/               # Example plugins\n```\n\n## Testing with Local IRC Server\n\nA Docker Compose setup is included for running a local Ergo IRC server for testing:\n\n1. **Generate TLS certificates** (one-time setup):\n   ```bash\n   ./docker/ergo/generate-certs.sh\n   ```\n\n2. **Start the test server**:\n   ```bash\n   docker-compose up -d\n   ```\n\n3. **Connect in Cascade Chat**:\n   - Address: `localhost`\n   - Port: `6667` (plaintext) or `6697` (TLS)\n   - Enable TLS if using port 6697\n\nSee [docker/ergo/README.md](docker/ergo/README.md) for more details.\n\n## Documentation\n\n- [Technical Documentation](agents.md) - Architecture, patterns, and workflows\n- [Wails Documentation](https://wails.io/docs)\n- [irc-go Library](https://github.com/ergochat/irc-go)\n\n## License\n\nBSD 3-Clause License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt0x6f%2Firc-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatt0x6f%2Firc-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt0x6f%2Firc-client/lists"}