Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<img src=".github/assets/tsky-logo.png" width="200" height="200">
</p>

<h1 align="center">TSky</h1>
<h1 align="center">tsky</h1>

<p align="center">
A lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots.
</p>

## ⚠️ TSky is still in development and is not ready for production use.
## ⚠️ tsky is still in development and is not ready for production use.

TSksy is still in active development and is not ready for production use. If you want to contribute to the project, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file or join our [Discord Server](https://discord.gg/KPD7XPUZn3).
tsky is still in active development and is not ready for production use. If you want to contribute to the project, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file or join our [Discord Server](https://discord.gg/KPD7XPUZn3).

TSky is a lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots. It's designed to be easy to use, lightweight and straightforward to use. It's built with TypeScript and has full type support.
tsky is a lightweight, fast, universal and typed Bluesky API wrapper for Apps & Bots. It's designed to be easy to use, lightweight and straightforward to use. It's built with TypeScript and has full type support.

It was primarily built for the [Nimbus Client](https://github.com/nimbus-town/nimbus) but can be used in any other project that requires Bluesky API integration.

Expand Down Expand Up @@ -48,9 +48,9 @@ console.log(profile.handle);

## Links

- [📚 TSky Documentation](https://tsky.dev/)
- [🦋 TSky on Bluesky](https://bsky.app/profile/tsky.dev)
- [📣 TSky Discord Server](https://discord.gg/KPD7XPUZn3)
- [📚 tsky Documentation](https://tsky.dev/)
- [🦋 tsky on Bluesky](https://bsky.app/profile/tsky.dev)
- [📣 tsky Discord Server](https://discord.gg/KPD7XPUZn3)
- [🦋 Nimbus on Bluesky](https://bsky.app/profile/nimbus.town)

## Contributing
Expand Down
4 changes: 2 additions & 2 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { defineConfig } from 'vitepress';

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: 'TSky',
description: 'A BlueSky API client for nimble apps and tools',
title: 'tsky',
description: 'A Bluesky API client for nimble apps and tools',
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
layout: home

hero:
name: "TSky"
text: "A BlueSky API client for nimble apps and tools"
tagline: A BlueSky API client for nimble apps and tools
name: "tsky"
text: "A Bluesky API client for nimble apps and tools"
tagline: A Bluesky API client for nimble apps and tools
actions:
- theme: brand
text: Get Started
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/tsky/tsky.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type {
} from '@atproto/api';
import { Paginator } from './paginator';

export class TSky {
export class Tsky {
constructor(private instance: AppBskyNS) {}

/**
Expand Down