bluesky viewer in the terminal

chore: unwrap repo

+32
.gitignore
··· 1 + # If you prefer the allow list template instead of the deny list, see community template: 2 + # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore 3 + # 4 + # Binaries for programs and plugins 5 + *.exe 6 + *.exe~ 7 + *.dll 8 + *.so 9 + *.dylib 10 + 11 + # Test binary, built with `go test -c` 12 + *.test 13 + 14 + # Code coverage profiles and other test artifacts 15 + *.out 16 + coverage.* 17 + *.coverprofile 18 + profile.cov 19 + 20 + # Dependency directories (remove the comment below to include it) 21 + # vendor/ 22 + 23 + # Go workspace file 24 + go.work 25 + go.work.sum 26 + 27 + # env file 28 + .env 29 + 30 + # Editor/IDE 31 + # .idea/ 32 + # .vscode/
-8
cli/README.md README.md
··· 7 7 - View status 8 8 - Basic CLI structure 9 9 10 - See [ROADMAP](../ROADMAP.md) for planned features. 11 - 12 10 ## Installation 13 11 14 12 ### From Source ··· 28 26 # See all commands 29 27 skycli --help 30 28 ``` 31 - 32 - See [ROADMAP](../ROADMAP.md) for planned commands and features. 33 29 34 30 ## Development 35 31 ··· 67 63 ├── Taskfile.yaml # Task runner config 68 64 └── README.md # This file 69 65 ``` 70 - 71 - ## References 72 - 73 - - [CLI ROADMAP](../ROADMAP.md) - Planned features
cli/ROADMAP.md ROADMAP.md
cli/cmd/export.go cmd/export.go
cli/cmd/fetch.go cmd/fetch.go
cli/cmd/followers.go cmd/followers.go
cli/cmd/following.go cmd/following.go
cli/cmd/list.go cmd/list.go
cli/cmd/login.go cmd/login.go
cli/cmd/main.go cmd/main.go
cli/cmd/search.go cmd/search.go
cli/cmd/setup.go cmd/setup.go
cli/cmd/status.go cmd/status.go
cli/cmd/view.go cmd/view.go
cli/internal/config/config.go internal/config/config.go
cli/internal/config/crypto.go internal/config/crypto.go
cli/internal/config/paths.go internal/config/paths.go
cli/internal/export/export.go internal/export/export.go
cli/internal/export/export_test.go internal/export/export_test.go
cli/internal/imports/imports.go internal/imports/imports.go
cli/internal/imports/imports_test.go internal/imports/imports_test.go
cli/internal/registry/registry.go internal/registry/registry.go
cli/internal/setup/preflight.go internal/setup/preflight.go
cli/internal/store/bluesky.go internal/store/bluesky.go
cli/internal/store/bluesky_test.go internal/store/bluesky_test.go
cli/internal/store/cache_model.go internal/store/cache_model.go
cli/internal/store/cache_repo.go internal/store/cache_repo.go
cli/internal/store/cache_repo_test.go internal/store/cache_repo_test.go
cli/internal/store/feed_repo.go internal/store/feed_repo.go
cli/internal/store/feed_repo_test.go internal/store/feed_repo_test.go
cli/internal/store/migration.go internal/store/migration.go
cli/internal/store/migration_test.go internal/store/migration_test.go
cli/internal/store/migrations/001_create_feeds_table.down.sql internal/store/migrations/001_create_feeds_table.down.sql
cli/internal/store/migrations/001_create_feeds_table.up.sql internal/store/migrations/001_create_feeds_table.up.sql
cli/internal/store/migrations/002_create_posts_table.down.sql internal/store/migrations/002_create_posts_table.down.sql
cli/internal/store/migrations/002_create_posts_table.up.sql internal/store/migrations/002_create_posts_table.up.sql
cli/internal/store/migrations/003_create_profiles_table.down.sql internal/store/migrations/003_create_profiles_table.down.sql
cli/internal/store/migrations/003_create_profiles_table.up.sql internal/store/migrations/003_create_profiles_table.up.sql
cli/internal/store/migrations/004_create_cache_tables.down.sql internal/store/migrations/004_create_cache_tables.down.sql
cli/internal/store/migrations/004_create_cache_tables.up.sql internal/store/migrations/004_create_cache_tables.up.sql
cli/internal/store/model.go internal/store/model.go
cli/internal/store/model_test.go internal/store/model_test.go
cli/internal/store/post_repo.go internal/store/post_repo.go
cli/internal/store/post_repo_test.go internal/store/post_repo_test.go
cli/internal/store/profile_model.go internal/store/profile_model.go
cli/internal/store/profile_model_test.go internal/store/profile_model_test.go
cli/internal/store/profile_repo.go internal/store/profile_repo.go
cli/internal/store/profile_repo_test.go internal/store/profile_repo_test.go
cli/internal/store/service.go internal/store/service.go
cli/internal/store/service_test.go internal/store/service_test.go
cli/internal/store/session_repo.go internal/store/session_repo.go
cli/internal/store/session_repo_test.go internal/store/session_repo_test.go
cli/internal/store/snapshot_model.go internal/store/snapshot_model.go
cli/internal/store/snapshot_repo.go internal/store/snapshot_repo.go
cli/internal/store/snapshot_repo_test.go internal/store/snapshot_repo_test.go
cli/internal/ui/help.go internal/ui/help.go
cli/internal/ui/static.go internal/ui/static.go
cli/internal/ui/styles.go internal/ui/styles.go
cli/internal/ui/styles_test.go internal/ui/styles_test.go
cli/internal/utils/logger.go internal/utils/logger.go
cli/internal/utils/logger_test.go internal/utils/logger_test.go
cli/internal/utils/testing.go internal/utils/testing.go