{"id":18057654,"url":"https://github.com/blob42/gosuki","last_synced_at":"2026-01-19T21:57:56.150Z","repository":{"id":303508911,"uuid":"700075378","full_name":"blob42/gosuki","owner":"blob42","description":"A lightweight, open-source, privacy-first bookmark manager that unifies your bookmarks across multiple browsers, syncs them in real time (locally or P2P), requires no extensions, and stores everything locally.","archived":false,"fork":false,"pushed_at":"2025-12-28T12:49:00.000Z","size":1565,"stargazers_count":424,"open_issues_count":5,"forks_count":23,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-29T10:29:19.950Z","etag":null,"topics":["archivebox","archiving","bookmark-manager","bookmarks","buku","cli","cloudless","extension-free","golang","multi-browser","multi-device-sync","multi-profile","organizer","privacy","real-time","self-hosted","standalone","webui"],"latest_commit_sha":null,"homepage":"https://gosuki.net","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blob42.png","metadata":{"files":{"readme":"README.dev.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["blob42"],"patreon":"GoSuki","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2023-10-03T22:29:05.000Z","updated_at":"2025-12-28T18:45:43.000Z","dependencies_parsed_at":"2025-07-08T03:04:56.100Z","dependency_job_id":"4f53b684-277d-4ebd-aedc-c07fdee4b295","html_url":"https://github.com/blob42/gosuki","commit_stats":null,"previous_names":["blob42/gosuki"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/blob42/gosuki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blob42%2Fgosuki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blob42%2Fgosuki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blob42%2Fgosuki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blob42%2Fgosuki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blob42","download_url":"https://codeload.github.com/blob42/gosuki/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blob42%2Fgosuki/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28579459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T17:42:58.221Z","status":"ssl_error","status_checked_at":"2026-01-19T17:40:54.158Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["archivebox","archiving","bookmark-manager","bookmarks","buku","cli","cloudless","extension-free","golang","multi-browser","multi-device-sync","multi-profile","organizer","privacy","real-time","self-hosted","standalone","webui"],"created_at":"2024-10-31T02:08:52.711Z","updated_at":"2026-01-19T21:57:56.144Z","avatar_url":"https://github.com/blob42.png","language":"Go","funding_links":["https://github.com/sponsors/blob42","https://patreon.com/GoSuki"],"categories":["Applications"],"sub_categories":["Productivity and Organization"],"readme":"## Development notes\n\nThe entry points for the CLI are:\n\n```sh\ncmd/gosuki/main.go\ncmd/suki/suki.go\n```\n\nSo to run via Go (and debug it)\n\n```sh\ngo run ./cmd/gosuki\n```\n\nor\n\n```sh\ngo run ./cmd/suki\n```\n\n## VSCodium/VSCode setup for running / debugging:\n\n```sh\n.vscode/launch.json\n```\n\n```json\n{\n    // Use IntelliSense to learn about possible attributes.\n    // Hover to view descriptions of existing attributes.\n    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"name\": \"Debug gosuki import pocket\",\n            \"type\": \"go\",\n            \"request\": \"launch\",\n            \"mode\": \"auto\",\n            \"program\": \"${workspaceRoot}/cmd/gosuki\",\n            \"showLog\": true,\n            // \"debugAdapter\": \"dlv-dap\",\n            \"args\": [\"import\", \"pocket\", \"--debug=trace\", \"${workspaceRoot}/debug.csv\"]\n        }\n    ]\n}\n```\n\n### For MacOS:\n\n```sh\n.vscode/settings.json\n```\n\n```json\n{\n  \"go.goroot\": \"/opt/homebrew/Cellar/go/1.24.3/libexec\"\n}\n```\n\nExtensions:\n\n- https://open-vsx.org/vscode/item?itemName=golang.Go\n\n## Debugging\n\n### Attach to running process with dlv\n\n- This example uses `dlv` to launch gosuki in server mode with TUI using a test config file and database and enabling debug log for Chrome based browsers.\n\n```sh\ndlv debug --headless --listen 127.0.0.1:38697 ./cmd/gosuki/ -- -c ~/.config/gosuki/config.test.toml --db=/tmp/gosuki.db --debug=none,chrome=debug start\n```\n\n- Then attach to the dlv session using your IDE DAP plugin after setting a breakpoint\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblob42%2Fgosuki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblob42%2Fgosuki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblob42%2Fgosuki/lists"}