@outlit/cli 1.8.0 → 1.9.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 +22 -0
- package/dist/cli.js +5022 -864
- package/package.json +16 -4
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @outlit/cli
|
|
2
|
+
|
|
3
|
+
Command-line interface for Outlit customer context.
|
|
4
|
+
|
|
5
|
+
Use the CLI to connect customer data sources, query customers and users, inspect timelines, search facts and sources, run read-only SQL, and install Outlit agent skills for local coding agents.
|
|
6
|
+
|
|
7
|
+
Outlit is the real-time understanding of every customer, the infrastructure agents use to automate customer operations.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @outlit/cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Canonical Docs
|
|
16
|
+
|
|
17
|
+
- CLI overview: <https://docs.outlit.ai/cli/overview>
|
|
18
|
+
- Command reference: <https://docs.outlit.ai/cli/commands>
|
|
19
|
+
- AI agent setup: <https://docs.outlit.ai/cli/ai-agents>
|
|
20
|
+
- Agent skills: <https://docs.outlit.ai/ai-integrations/skills>
|
|
21
|
+
- MCP integration for remote MCP clients: <https://docs.outlit.ai/ai-integrations/mcp>
|
|
22
|
+
- Agent-facing docs index: <https://docs.outlit.ai/llms.txt>
|