You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-13Lines changed: 18 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Beeper CLI
1
+
# Beeper API CLI
2
2
3
3
A cross-platform command-line interface for the Beeper Desktop API. Built for programmatic access to Beeper conversations with LLM-friendly output formats.
4
4
@@ -21,17 +21,17 @@ While existing tools read the Beeper SQLite database directly, this CLI interfac
The CLI stores configuration in `~/.beeper-cli/config.yaml`:
61
+
The CLI stores configuration in `~/.beeper-api-cli/config.yaml`:
62
62
63
63
```yaml
64
64
api_url: http://localhost:39867
@@ -124,21 +124,26 @@ Built with Go for:
124
124
125
125
Uses Cobra for CLI framework and Viper for configuration management.
126
126
127
-
## Comparison with beeper-tools
127
+
## Inspiration & Related Tools
128
128
129
-
The existing [beeper-tools](https://github.com/beeper/beeper-tools) provides read-only access via direct SQLite database queries. This CLI complements it by:
129
+
This project was inspired by [KrauseFx/beeper-cli](https://github.com/KrauseFx/beeper-cli), a read-only tool that queries the Beeper SQLite database directly. While that tool provides excellent read-only functionality, beeper-api-cli takes a different approach:
130
130
131
-
- Using the HTTP API instead of direct database access
0 commit comments