{"id":48100365,"url":"https://github.com/derleiti/ailinux-client","last_synced_at":"2026-04-04T15:42:24.811Z","repository":{"id":331119183,"uuid":"1118075787","full_name":"derleiti/ailinux-client","owner":"derleiti","description":"AILinux Desktop Client - PyQt6 GUI for Linux with AI Chat, Terminal, File Browser","archived":false,"fork":false,"pushed_at":"2026-03-24T07:47:22.000Z","size":1683,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T09:30:04.026Z","etag":null,"topics":["ai-assistant","ailinux","chat","desktop","gui","linux","pyqt6","python"],"latest_commit_sha":null,"homepage":"https://ailinux.me/downloads/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/derleiti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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-12-17T08:22:23.000Z","updated_at":"2026-03-24T07:47:26.000Z","dependencies_parsed_at":"2026-01-03T21:07:13.919Z","dependency_job_id":null,"html_url":"https://github.com/derleiti/ailinux-client","commit_stats":null,"previous_names":["derleiti/ailinux-client"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/derleiti/ailinux-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derleiti%2Failinux-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derleiti%2Failinux-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derleiti%2Failinux-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derleiti%2Failinux-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/derleiti","download_url":"https://codeload.github.com/derleiti/ailinux-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derleiti%2Failinux-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31403960,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"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":["ai-assistant","ailinux","chat","desktop","gui","linux","pyqt6","python"],"created_at":"2026-04-04T15:42:24.727Z","updated_at":"2026-04-04T15:42:24.800Z","avatar_url":"https://github.com/derleiti.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AILinux Client\n\nVersion: `4.8.0-beta`\n\nDesktop client for the AILinux / TriForce platform.\n\n## Overview\n\nAILinux Client is a PyQt6 desktop application for interacting with TriForce services:\n\n- authenticated chat against `https://api.ailinux.me`\n- tier-based model access\n- MCP tool listing and execution\n- MCP node/websocket integration\n- update checks and backend error logging\n\n## Core Architecture\n\n- `ailinux_client/core/api_client.py`\n  - fixed backend base URL: `https://api.ailinux.me`\n  - login and token flow\n  - chat, model list, tier info, MCP client endpoints\n- `ailinux_client/core/mcp_node_client.py`\n  - websocket handshake to `/v1/mcp/node/connect`\n- `ailinux_client/core/mcp_stdio_server.py`\n  - MCP stdio bridge and remote MCP passthrough\n- `ailinux_client/core/updater.py`\n  - update metadata from `/v1/client/update/version`\n\n## Installation (Debian/Ubuntu)\n\n```bash\ncurl -fsSL https://repo.ailinux.me/mirror/archive.ailinux.me/ailinux-archive-key.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/ailinux.gpg\necho \"deb https://repo.ailinux.me/mirror/archive.ailinux.me stable main\" | sudo tee /etc/apt/sources.list.d/ailinux.list\nsudo apt update\nsudo apt install ailinux-client\n```\n\n## Run\n\n```bash\nailinux-client\n```\n\nSafe/stable startup options:\n\n```bash\n# disable GPU + disable local/remote MCP auto-connect\npython3 run.py --safe-mode\n\n# disable only remote MCP node websocket\npython3 run.py --no-mcp-node\n\n# disable only local MCP stdio process\npython3 run.py --no-local-mcp\n\n# custom backend endpoint\npython3 run.py --server https://api.ailinux.me\n```\n\n## Debug Loop\n\nUse the built-in debug loop for repeatable stability checks:\n\n```bash\n./debug-loop.sh 3\n```\n\nChecks performed per loop:\n- `compileall` for syntax regressions\n- import smoke test for core/ui modules\n- `run.py --hwinfo` non-GUI smoke test\n- CLI parse check for stability flags\n\n## Related Docs\n\n- `docs/SERVER_API.md`\n- `../../docs/projects/AILINUX_CLIENT_PROJECT.md`\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderleiti%2Failinux-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderleiti%2Failinux-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderleiti%2Failinux-client/lists"}