@tmturtle/cli 1.0.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/CHANGELOG.md +12 -0
- package/README.md +38 -0
- package/dist/tt.js +3812 -0
- package/package.json +31 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Trademark Turtle CLI Changelog
|
|
2
|
+
|
|
3
|
+
## v1.0.0 - 2026-07-22
|
|
4
|
+
|
|
5
|
+
- Search United States trademarks with Exact, Multi, Split, and Wildcard modes.
|
|
6
|
+
- Resolve exact serial and registration numbers, check listing text, and run
|
|
7
|
+
trademark reports from scripts and agent workflows.
|
|
8
|
+
- Read the latest trademarks and Trademark Turtle service status as stable JSON.
|
|
9
|
+
- Store API keys in macOS Keychain without exposing credentials in command
|
|
10
|
+
arguments or local configuration files.
|
|
11
|
+
- Use the companion typed HTTP client for the same search, identity, report,
|
|
12
|
+
account, and status contracts in TypeScript applications.
|
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Trademark Turtle CLI
|
|
2
|
+
|
|
3
|
+
`tt` is the JSON-first command-line client for Trademark Turtle. It searches
|
|
4
|
+
United States trademarks, resolves exact identities, checks listing text, runs
|
|
5
|
+
reports, and reads service status.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
The CLI requires Bun 1.3.5 or newer.
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
bun add --global @tmturtle/cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Store a Trademark Turtle API key in macOS Keychain:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
printf '%s' "$TMTURTLE_API_KEY" | tt auth set --stdin
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Use
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
tt search "TURTLE CLUB" --status live
|
|
25
|
+
tt get --serial 60146682
|
|
26
|
+
tt get --registration 0146682
|
|
27
|
+
printf '%s' "shirt title" | tt match --stdin
|
|
28
|
+
tt latest
|
|
29
|
+
tt reports run --event published-for-opposition
|
|
30
|
+
tt status
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Normal commands write one JSON envelope to stdout on success or stderr on
|
|
34
|
+
failure. `tt --help`, `tt help <command>`, and `tt --version` use human-readable
|
|
35
|
+
text.
|
|
36
|
+
|
|
37
|
+
See the [CLI reference](https://github.com/merchbaseco/tmturtle/blob/main/docs/reference/cli.md)
|
|
38
|
+
for command flags, authentication precedence, pagination, and error contracts.
|