@tacone/prosey 0.3.0 → 0.5.0

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 CHANGED
@@ -1,10 +1,8 @@
1
1
  <p align="center">
2
2
  <img src="assets/prosey-logo.svg" alt="Prosey logo" width="400"/>
3
- <br>
4
- <br>
5
3
  </p>
6
4
 
7
- # Prosey
5
+ <h1 align="center">Prosey</h1>
8
6
 
9
7
  **Prosey** is a CLI tool to download and display video transcriptions from YouTube, so you can get the information you're looking for without wasting hours.
10
8
 
@@ -61,7 +59,7 @@ Then use it anywhere:
61
59
  prosey 771PQEDeRmw
62
60
  ```
63
61
 
64
- ### From source (development)
62
+ ### From Source
65
63
 
66
64
  Uses **[Bun](https://bun.sh)** for development — scripts, package management,
67
65
  and running the TypeScript source directly.
@@ -73,10 +71,6 @@ bun install
73
71
  bun run start -- 771PQEDeRmw
74
72
  ```
75
73
 
76
- ### Prebuilt binary
77
-
78
- Grab a compiled binary from the `dist/` directory (requires no runtime).
79
-
80
74
  ## Usage
81
75
 
82
76
  ```
@@ -107,35 +101,35 @@ The `help` command shows the help message, same as `--help`.
107
101
  ### Examples
108
102
 
109
103
  ```bash
110
- # Run the AI summarizer (default command)
104
+ # Summarize (AI summary + formatting + syntax highlighting)
111
105
  prosey 771PQEDeRmw
112
106
 
113
- # Download a plain transcript with details
114
- prosey read 771PQEDeRmw
107
+ # Summarize (same as above)
108
+ prosey summarize 771PQEDeRmw
115
109
 
116
- # Specify language
117
- prosey read https://youtu.be/771PQEDeRmw --lang es
110
+ # Transcribe (AI summary + formatting + syntax highlighting)
111
+ prosey read 771PQEDeRmw
118
112
 
119
- # Include timestamps
120
- prosey read 771PQEDeRmw -t
113
+ # Show video metadata
114
+ prosey info 771PQEDeRmw
121
115
 
122
- # Save transcript to file
123
- prosey read 771PQEDeRmw -o transcript.txt
116
+ # Edit config in $EDITOR
117
+ prosey config
124
118
 
125
- # JSON output (timestamps always included)
126
- prosey read 771PQEDeRmw --json
119
+ # List available languages
120
+ prosey read https://youtu.be/771PQEDeRmw --list
127
121
 
128
- # Transcript only, no video details
129
- prosey read 771PQEDeRmw --no-details
122
+ # Specify language
123
+ prosey read https://youtu.be/771PQEDeRmw --lang es
130
124
 
131
- # List available transcript languages
132
- prosey read 771PQEDeRmw --list
125
+ # Display JSON (no AI transcription)
126
+ prosey read 771PQEDeRmw
133
127
 
134
- # Show video metadata
135
- prosey info 771PQEDeRmw
128
+ # Display plain text (no AI transcription)
129
+ prosey read 771PQEDeRmw
136
130
 
137
- # Edit config in $EDITOR
138
- prosey config
131
+ # Save transcript to file
132
+ prosey read 771PQEDeRmw -o transcript.txt
139
133
  ```
140
134
 
141
135
  ## Options