@rocksky/cli 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -6
- package/dist/drizzle/0001_awesome_gabe_jones.sql +1 -0
- package/dist/drizzle/meta/0001_snapshot.json +1569 -0
- package/dist/drizzle/meta/_journal.json +7 -0
- package/dist/index.js +316 -96
- package/drizzle/0001_awesome_gabe_jones.sql +1 -0
- package/drizzle/meta/0001_snapshot.json +1569 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +5 -1
- package/preview.png +0 -0
- package/src/cmd/scrobble-api.ts +8 -0
- package/src/cmd/sync.ts +356 -86
- package/src/schema/tracks.ts +40 -32
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
🎧 The official command-line interface for [Rocksky](https://rocksky.app) — a modern, decentralized music tracking and discovery platform built on [AT Protocol](https://atproto.com).
|
|
4
4
|
|
|
5
|
+
📚 **[View Full Documentation](https://docs.rocksky.app)**
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
5
9
|
## Features
|
|
6
10
|
- 🔐 Authenticate with your Rocksky account using OAuth
|
|
7
11
|
- 🎵 View your currently playing track
|
|
@@ -11,6 +15,7 @@
|
|
|
11
15
|
- 🤖 MCP Server
|
|
12
16
|
|
|
13
17
|
## Table of Contents
|
|
18
|
+
- [Documentation](#documentation)
|
|
14
19
|
- [Installation](#installation)
|
|
15
20
|
- [Run in development](#run-in-development)
|
|
16
21
|
- [Usage](#usage)
|
|
@@ -25,6 +30,10 @@
|
|
|
25
30
|
- [albums](#albums)
|
|
26
31
|
- [tracks](#tracks)
|
|
27
32
|
|
|
33
|
+
## Documentation
|
|
34
|
+
|
|
35
|
+
For comprehensive guides, API references, and tutorials, visit the official documentation at **[docs.rocksky.app](https://docs.rocksky.app)**.
|
|
36
|
+
|
|
28
37
|
## Installation
|
|
29
38
|
|
|
30
39
|
```sh
|
|
@@ -113,12 +122,6 @@ rocksky albums [did]
|
|
|
113
122
|
rocksky tracks [did]
|
|
114
123
|
```
|
|
115
124
|
|
|
116
|
-
`scrobble` - Manually scrobbles a track.
|
|
117
|
-
|
|
118
|
-
```bash
|
|
119
|
-
rocksky scrobble "Karma Police" "Radiohead"
|
|
120
|
-
```
|
|
121
|
-
|
|
122
125
|
`scrobble-api` - Start a local listenbrainz/lastfm compatibility server
|
|
123
126
|
|
|
124
127
|
```bash
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CREATE INDEX `idx_title_artist_album_albumartist` ON `tracks` (`title`,`artist`,`album`,`album_artist`);
|