@senso-ai/cli 0.11.1 → 0.14.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.
Files changed (3) hide show
  1. package/README.md +176 -377
  2. package/dist/cli.js +4518 -2214
  3. package/package.json +51 -24
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@senso-ai/cli",
3
- "version": "0.11.1",
4
- "description": "Senso CLI — Infrastructure for the Agentic Web. Interact with your Senso knowledge base from the terminal.",
3
+ "version": "0.14.0",
4
+ "description": "Senso CLI — Infrastructure for the Agentic Web. Manage your Senso knowledge base, content and GEO analytics from the terminal.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "senso": "./dist/cli.js"
@@ -10,44 +10,71 @@
10
10
  "dist"
11
11
  ],
12
12
  "engines": {
13
- "node": ">=18.0.0"
13
+ "node": ">=20.12.0"
14
14
  },
15
15
  "scripts": {
16
16
  "dev": "tsx src/cli.ts",
17
17
  "build": "tsup",
18
- "prepublishOnly": "npm run build",
19
- "test": "vitest"
18
+ "lint": "eslint .",
19
+ "lint:fix": "eslint . --fix",
20
+ "format": "prettier --write .",
21
+ "format:check": "prettier --check .",
22
+ "typecheck": "tsc --noEmit",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:coverage": "vitest run --coverage",
26
+ "reference": "tsx scripts/gen-reference.ts",
27
+ "version": "tsx scripts/changelog-release.ts && git add CHANGELOG.md",
28
+ "prepare": "husky || true",
29
+ "prepublishOnly": "npm run build"
20
30
  },
21
31
  "dependencies": {
22
- "@clack/prompts": "^0.9.1",
23
- "boxen": "^8.0.1",
24
- "commander": "^13.1.0",
25
- "env-paths": "^3.0.0",
26
- "figlet": "^1.8.0",
27
- "gradient-string": "^3.0.0",
28
- "picocolors": "^1.1.1",
29
- "semver": "^7.7.4"
32
+ "@clack/prompts": "1.8.0",
33
+ "boxen": "8.0.1",
34
+ "commander": "14.0.1",
35
+ "env-paths": "4.0.0",
36
+ "figlet": "1.11.4",
37
+ "gradient-string": "3.0.0",
38
+ "picocolors": "1.1.1",
39
+ "semver": "7.8.5"
30
40
  },
31
41
  "devDependencies": {
32
- "@types/figlet": "^1.7.0",
33
- "@types/gradient-string": "^1.1.6",
34
- "@types/node": "^22.13.0",
35
- "@types/semver": "^7.7.1",
36
- "tsup": "^8.4.0",
37
- "tsx": "^4.19.0",
38
- "typescript": "^5.7.0",
39
- "vitest": "^3.0.0"
42
+ "@eslint/js": "10.0.1",
43
+ "@types/figlet": "1.7.0",
44
+ "@types/gradient-string": "1.1.6",
45
+ "@types/node": "26.5.0",
46
+ "@types/semver": "7.8.0",
47
+ "@vitest/coverage-v8": "5.0.0",
48
+ "eslint": "10.10.0",
49
+ "husky": "9.1.7",
50
+ "lint-staged": "17.5.0",
51
+ "msw": "2.15.0",
52
+ "prettier": "3.9.6",
53
+ "tsup": "8.5.1",
54
+ "tsx": "4.23.13",
55
+ "typescript": "5.9.3",
56
+ "typescript-eslint": "8.70.0",
57
+ "vitest": "^5.0.0"
40
58
  },
41
59
  "license": "AGPL-3.0-or-later",
42
60
  "repository": {
43
61
  "type": "git",
44
- "url": "https://github.com/AI-Template-SDK/senso-user-cli"
62
+ "url": "git+https://github.com/AI-Template-SDK/senso-user-cli.git"
45
63
  },
46
64
  "keywords": [
47
65
  "senso",
48
66
  "cli",
49
67
  "ai",
68
+ "agent",
69
+ "agentic",
50
70
  "knowledge-base",
51
- "agentic"
52
- ]
71
+ "geo",
72
+ "generative-engine-optimization",
73
+ "rag",
74
+ "llm"
75
+ ],
76
+ "homepage": "https://github.com/AI-Template-SDK/senso-user-cli#readme",
77
+ "bugs": {
78
+ "url": "https://github.com/AI-Template-SDK/senso-user-cli/issues"
79
+ }
53
80
  }