@orth/cli 0.2.31 → 0.2.33
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 +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
# Orthogonal CLI
|
|
4
4
|
|
|
5
|
-
**
|
|
5
|
+
**Command-line tool for the [Orthogonal](https://orthogonal.com) platform — discover and call APIs and agent skills from your terminal.**
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Search for APIs in natural language, call them with a single command, and pay per request from your Orthogonal credit balance.
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@orth/cli)
|
|
10
10
|
[](https://www.npmjs.com/package/@orth/cli)
|
|
@@ -32,7 +32,7 @@ Discover APIs in natural language, call them with a single command, and pay per
|
|
|
32
32
|
|
|
33
33
|
## Why Orthogonal
|
|
34
34
|
|
|
35
|
-
Orthogonal
|
|
35
|
+
Orthogonal puts a catalog of APIs and agent skills behind one account and one balance. The CLI lets you — and your AI agents — find and call them without leaving the terminal:
|
|
36
36
|
|
|
37
37
|
- **Discover** APIs and skills with natural-language search.
|
|
38
38
|
- **Call** any endpoint with one command — auth, billing, and routing are handled for you.
|
|
@@ -96,7 +96,7 @@ Get an API key from your [Orthogonal dashboard](https://orthogonal.com/dashboard
|
|
|
96
96
|
### Discover & inspect
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
# Natural-language search across the
|
|
99
|
+
# Natural-language search across the catalog
|
|
100
100
|
orth api search "generate images"
|
|
101
101
|
|
|
102
102
|
# List every available API
|
|
@@ -226,11 +226,10 @@ Credentials from `orth login` are stored in your OS user-config directory (manag
|
|
|
226
226
|
|
|
227
227
|
## Programmatic Use
|
|
228
228
|
|
|
229
|
-
Building an application instead of scripting the terminal? Use the official
|
|
229
|
+
Building an application instead of scripting the terminal? Use one of the official SDKs:
|
|
230
230
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
```
|
|
231
|
+
- **[`@orth/sdk`](https://www.npmjs.com/package/@orth/sdk)** — TypeScript/JavaScript (`npm install @orth/sdk`)
|
|
232
|
+
- **[`orth`](https://pypi.org/project/orth/)** — Python (`pip install orth`)
|
|
234
233
|
|
|
235
234
|
## Development
|
|
236
235
|
|