{"id":51303879,"url":"https://github.com/phalt/atpcli","last_synced_at":"2026-06-30T22:32:21.330Z","repository":{"id":339604017,"uuid":"1162482589","full_name":"phalt/atpcli","owner":"phalt","description":"AT PROTO cli written in Python","archived":false,"fork":false,"pushed_at":"2026-04-07T15:29:01.000Z","size":408,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-07T17:25:53.227Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/phalt.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2026-02-20T10:13:57.000Z","updated_at":"2026-04-07T15:29:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/phalt/atpcli","commit_stats":null,"previous_names":["phalt/atpcli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phalt/atpcli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalt%2Fatpcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalt%2Fatpcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalt%2Fatpcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalt%2Fatpcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phalt","download_url":"https://codeload.github.com/phalt/atpcli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalt%2Fatpcli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34986248,"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-30T02:00:05.919Z","response_time":92,"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":[],"created_at":"2026-06-30T22:32:18.162Z","updated_at":"2026-06-30T22:32:21.294Z","avatar_url":"https://github.com/phalt.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# atpcli\n\nA Python CLI wrapper around the [atproto](https://github.com/MarshalX/atproto) package for interacting with Bluesky.\n\n## Documentation\n\nFull documentation is available at [docs/](docs/):\n\n- [Installation Guide](docs/install.md)\n- [Quick Start Guide](docs/getting-started.md) - Learn how to get app passwords and use atpcli\n- [Login Command](docs/usage-login.md)\n- [Timeline Command](docs/usage-timeline.md)\n- [Feeds Commands](docs/usage-feeds.md) - List and view custom Bluesky feeds\n- [Post Command](docs/usage-post.md)\n\nOr serve the docs locally:\n\n```bash\nmake docs-serve\n```\n\n## Quick Start\n\n### Installation\n\nInstall globally using [uv](https://docs.astral.sh/uv/):\n\n```bash\nuv tool install atpcli\n```\n\nThis installs `atpcli` as a global tool, making it available from anywhere in your terminal.\n\nOr for development:\n\n```bash\ngit clone https://github.com/phalt/atpcli.git\ncd atpcli\nmake install\n```\n\n## Usage\n\n### Login\n\n⚠️ **Security Note**: Use app passwords, not your main password! See the [Quick Start Guide](docs/getting-started.md) for instructions on creating an app password.\n\nLogin to an AT Protocol PDS (defaults to Bluesky):\n\n```bash\natpcli login\n```\n\nOr login to a custom PDS:\n\n```bash\natpcli login https://my-pds.com\n```\n\nYou'll be prompted for your handle and password. The session will be saved to `~/.config/atpcli/config.json`.\n\n### View Timeline\n\nView your timeline:\n\n```bash\natpcli bsky timeline\n```\n\nOptions:\n- `--limit N` - Show N posts (default: 10)\n- `--p N` - Show page N (default: 1)\n\nExample:\n```bash\natpcli bsky timeline --limit 20\natpcli bsky timeline --p 2\n```\n\n### Post Messages\n\nCreate a post on Bluesky using the interactive editor:\n\n```bash\natpcli bsky post\n```\n\nOr post directly with a message:\n\n```bash\natpcli bsky post --message 'Hello, Bluesky!'\n```\n\n**Note:** When using special characters like `!`, use single quotes to avoid shell expansion issues, or use the interactive editor mode. See the [Post Command documentation](docs/usage-post.md) for more details.\n\n### Custom Feeds\n\nList your saved Bluesky feeds:\n\n```bash\natpcli bsky feeds\n```\n\nView posts from a specific feed:\n\n```bash\natpcli bsky feed at://did:plc:xxx/app.bsky.feed.generator/discover\n```\n\nOptions:\n- `--limit N` - Show N posts (default: 10)\n- `--p N` - Show page N (default: 1)\n- `--format uri` - Output only URIs (for `feeds` command)\n\nExample:\n```bash\n# List feeds in URI format for scripting\natpcli bsky feeds --format uri\n\n# View a feed with more posts\natpcli bsky feed at://did:plc:xxx/app.bsky.feed.generator/tech --limit 20\n\n# Navigate to page 2\natpcli bsky feed at://did:plc:xxx/app.bsky.feed.generator/tech --p 2\n```\n\nSee the [Feeds Commands documentation](docs/usage-feeds.md) for more details.\n\n## Development\n\n### Setup\n\n```bash\nmake install\n```\n\n### Run tests\n\n```bash\nmake test\n```\n\n### Build documentation\n\n```bash\nmake docs-build\n```\n\n### Serve documentation locally\n\n```bash\nmake docs-serve\n```\n\n### Format code\n\n```bash\nmake format\n```\n\n### Clean build artifacts\n\n```bash\nmake clean\n```\n\n## Requirements\n\n- Python 3.10+\n- uv package manager\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalt%2Fatpcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphalt%2Fatpcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalt%2Fatpcli/lists"}