@mentio-dev/cli 0.1.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 ADDED
@@ -0,0 +1,15 @@
1
+ # @mentio-dev/cli
2
+
3
+ `mentio` is the [Mentio API](https://docs.mentio.dev) on the command line: every endpoint as a `noun:verb` command generated from the OpenAPI document, plus `mentions:watch` (a live feed as JSON lines) and `mcp:config`. Node 22+.
4
+
5
+ ```bash
6
+ npm install -g @mentio-dev/cli
7
+ mentio auth:set --key mk_live_...
8
+ mentio keywords:create --term "acme" --kind brand
9
+ mentio mentions:search --relevant true --sentiment negative --limit 20
10
+ mentio mentions:update mm_7f3a... --status done
11
+ mentio analytics:summary --range 7d --compare true
12
+ mentio mentions:watch --platform reddit | jq -r '.post.url'
13
+ ```
14
+
15
+ JSON out, compact when piped and indented on a terminal; `--table` for lists. Keys come from `--api-key`, `MENTIO_API_KEY`, or `~/.mentio/config.json`. The full command list is at [docs.mentio.dev/cli/commands](https://docs.mentio.dev/cli/commands).