{"id":28172475,"url":"https://github.com/atproto-os/module-atproto","last_synced_at":"2026-04-24T16:06:39.920Z","repository":{"id":292940702,"uuid":"956295072","full_name":"atproto-os/module-atproto","owner":"atproto-os","description":"AT Protocol module for OWD Client","archived":false,"fork":false,"pushed_at":"2025-06-23T22:46:31.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-11T12:35:09.616Z","etag":null,"topics":["atproto","bluesky","owd-client","owd-modules","owdproject"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/atproto-os.png","metadata":{"files":{"readme":"README.md","changelog":null,"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},"funding":{"github":"owdproject"}},"created_at":"2025-03-28T02:39:13.000Z","updated_at":"2025-06-23T22:46:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"aa1c8a6b-dbfb-4941-b990-6dc94b3e9e50","html_url":"https://github.com/atproto-os/module-atproto","commit_stats":null,"previous_names":["atproto-os/module-atproto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/atproto-os/module-atproto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atproto-os%2Fmodule-atproto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atproto-os%2Fmodule-atproto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atproto-os%2Fmodule-atproto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atproto-os%2Fmodule-atproto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atproto-os","download_url":"https://codeload.github.com/atproto-os/module-atproto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atproto-os%2Fmodule-atproto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32230441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"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":["atproto","bluesky","owd-client","owd-modules","owdproject"],"created_at":"2025-05-15T20:10:38.530Z","updated_at":"2026-04-24T16:06:39.908Z","avatar_url":"https://github.com/atproto-os.png","language":"TypeScript","funding_links":["https://github.com/sponsors/owdproject"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"160\" height=\"160\" src=\"https://avatars.githubusercontent.com/u/201536780?s=160\u0026v=4\" /\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003eATProto Module\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e\n  AT Protocol Module for Open Web Desktop.\n\u003c/h3\u003e\n\n## Overview\n\nThis module for Open Web Desktop enables AT Protocol integration.\n\nRefer to the [nuxt-atproto](https://www.npmjs.com/package/nuxt-atproto) documentation for more details and options.\n\n## Features\n\n- Provides ATProto agent and OAuth client integration\n- Generates `client-metadata.json` on the fly in `/public`\n- Fetches the Open Web Desktop client account host\n- Handles the AT Protocol OAuth client login\n\n## Installation\n\n```bash\nowd install-module @owdproject/module-atproto\n```\n\n## Configuration\n\nYou could set this configuration in `/desktop/owd.config.ts`:\n\n```json\natproto: {\n  serviceEndpoint: {\n    private: 'https://bsky.social',\n    public: 'https://public.api.bsky.app'\n  },\n  oauth: {\n    clientMetadata: {\n      // url of your remote client_metadata.json, leave the field empty\n      // to let `nuxt-atproto` generate a local /public/client_metadata.json\n      remote: '',\n      // configuration for the local client_metadata.json\n      local: {\n        client_id: 'https://nuxt-atproto.pages.dev/client-metadata.json',\n        client_name: 'nuxt-atproto',\n        client_uri: 'https://nuxt-atproto.pages.dev',\n        logo_uri: 'https://nuxt-atproto.pages.dev/logo.png',\n        tos_uri: 'https://nuxt-atproto.pages.dev',\n        policy_uri: 'https://nuxt-atproto.pages.dev',\n        redirect_uris: ['https://nuxt-atproto.pages.dev'],\n        scope: \"atproto transition:generic\",\n        grant_types: [\"authorization_code\", \"refresh_token\"],\n        response_types: [\"code\"],\n        token_endpoint_auth_method: 'none',\n        application_type: 'web',\n        dpop_bound_access_tokens: true\n      }\n    },\n    signInOptions: {\n      state: '',\n      prompt: 'login',\n      scope: 'atproto',\n      ui_locales: 'en',\n    },\n  },\n  debug: true,\n},\natprotoDesktop: {\n  owner: {\n    did: 'did:plc:iaf5ejdchj6nydfxmcrq5rm6',\n  },\n  name: {\n    title: 'atproto',\n    affix: 'OS'\n  },\n}\n```\n\n## License\n\nThis module is released under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatproto-os%2Fmodule-atproto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatproto-os%2Fmodule-atproto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatproto-os%2Fmodule-atproto/lists"}