@getxflow/cli 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.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/index.js +2 -0
  3. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @getxflow/cli
2
+
3
+ Аналитика кабинетов маркетплейсов для вашего ИИ-агента.
4
+
5
+ Подключаете кабинеты — агент через MCP или CLI получает нормализованные ответы по всем кабинетам сразу и собирает живые дашборды.
6
+
7
+ ```bash
8
+ npm i -g @getxflow/cli
9
+ xflow auth:login
10
+ xflow stats --today
11
+ ```
12
+
13
+ Пакет в разработке.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log('XFlow CLI — в разработке.');
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@getxflow/cli",
3
+ "version": "0.0.1",
4
+ "description": "XFlow CLI — аналитика кабинетов маркетплейсов для вашего агента",
5
+ "keywords": [
6
+ "wildberries",
7
+ "marketplace",
8
+ "analytics",
9
+ "mcp",
10
+ "cli"
11
+ ],
12
+ "license": "UNLICENSED",
13
+ "type": "module",
14
+ "bin": {
15
+ "xflow": "index.js"
16
+ },
17
+ "files": [
18
+ "index.js",
19
+ "README.md"
20
+ ],
21
+ "engines": {
22
+ "node": ">=24"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ }
27
+ }