chatbase 0.0.1
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 +11 -0
- package/package.json +12 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# chatbase
|
|
2
|
+
|
|
3
|
+
The official command-line interface for [Chatbase](https://www.chatbase.co) — under active development.
|
|
4
|
+
|
|
5
|
+
This package name is reserved by Chatbase. The CLI will ship here soon:
|
|
6
|
+
|
|
7
|
+
- Full access to the [Chatbase API v2](https://www.chatbase.co/docs/api-v2/overview) from your terminal
|
|
8
|
+
- Interactive agent chat, knowledge-source syncing, CI-friendly JSON output
|
|
9
|
+
- MCP server mode for Claude and other AI assistants
|
|
10
|
+
|
|
11
|
+
Until then, see the [API documentation](https://www.chatbase.co/docs/api-v2/overview).
|
package/package.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chatbase",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The official CLI for the Chatbase API — under development. See https://www.chatbase.co/docs",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://www.chatbase.co",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Chatbase-co/chatbase-cli.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": ["chatbase", "cli", "ai", "agents"]
|
|
12
|
+
}
|