ctxora 6.2.0 → 6.2.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  <div align="center">
2
2
 
3
+ <a href="https://ctxora-landing.vercel.app/">
4
+ <img src="assets/ctxora-app-icon.png" alt="CTXORA icon" width="128" height="128">
5
+ </a>
6
+
3
7
  # CTXORA Engine
4
8
 
5
9
  ### Index once. Ground every agent.
@@ -16,7 +20,7 @@
16
20
 
17
21
  **English** · [Tiếng Việt](README.vi.md)
18
22
 
19
- [Quick start](#quick-start) · [Installation](#installation) · [Agent skills](#agent-skills) · [CLI](#cli-reference) · [MCP](#mcp-tools) · [Security](#privacy-and-security)
23
+ [Website](https://ctxora-landing.vercel.app/) · [Quick start](#quick-start) · [Installation](#installation) · [Agent skills](#agent-skills) · [CLI](#cli-reference) · [MCP](#mcp-tools) · [Security](#privacy-and-security)
20
24
 
21
25
  </div>
22
26
 
@@ -142,6 +146,12 @@ Install all CTXORA skills from this repository:
142
146
  npx skills add nguyentrunghieutcu/ctxora-engine
143
147
  ```
144
148
 
149
+ Install the curated CTXORA pack:
150
+
151
+ ```bash
152
+ npx skills add https://www.skills.sh/p/2fCkKUwjcYsPi0WX
153
+ ```
154
+
145
155
  List or install one skill:
146
156
 
147
157
  ```bash
package/README.vi.md CHANGED
@@ -1,5 +1,9 @@
1
1
  <div align="center">
2
2
 
3
+ <a href="https://ctxora-landing.vercel.app/">
4
+ <img src="assets/ctxora-app-icon.png" alt="Biểu tượng CTXORA" width="128" height="128">
5
+ </a>
6
+
3
7
  # CTXORA Engine
4
8
 
5
9
  ### Index once. Ground every agent.
@@ -16,7 +20,7 @@
16
20
 
17
21
  [English](README.md) · **Tiếng Việt**
18
22
 
19
- [Bắt đầu nhanh](#bắt-đầu-nhanh) · [Cài đặt](#cài-đặt) · [Agent skills](#agent-skills) · [CLI](#tham-chiếu-cli) · [MCP](#mcp-tools) · [Bảo mật](#quyền-riêng-tư-và-bảo-mật)
23
+ [Website](https://ctxora-landing.vercel.app/) · [Bắt đầu nhanh](#bắt-đầu-nhanh) · [Cài đặt](#cài-đặt) · [Agent skills](#agent-skills) · [CLI](#tham-chiếu-cli) · [MCP](#mcp-tools) · [Bảo mật](#quyền-riêng-tư-và-bảo-mật)
20
24
 
21
25
  </div>
22
26
 
@@ -142,6 +146,12 @@ Cài toàn bộ CTXORA skills từ repository này:
142
146
  npx skills add nguyentrunghieutcu/ctxora-engine
143
147
  ```
144
148
 
149
+ Cài pack CTXORA đã được gom sẵn:
150
+
151
+ ```bash
152
+ npx skills add https://www.skills.sh/p/2fCkKUwjcYsPi0WX
153
+ ```
154
+
145
155
  Liệt kê hoặc chỉ cài một skill:
146
156
 
147
157
  ```bash
Binary file
package/bin/ctxora.mjs CHANGED
@@ -6,7 +6,7 @@ import { dirname, join, resolve } from "node:path";
6
6
  import { fileURLToPath } from "node:url";
7
7
  import { spawnSync } from "node:child_process";
8
8
 
9
- const PACKAGE_VERSION = "6.2.0";
9
+ const PACKAGE_VERSION = "6.2.1";
10
10
  const PYTHON_RANGE = "3.10-3.13";
11
11
  const PACKAGE_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "..");
12
12
 
@@ -36,9 +36,18 @@ function pythonCandidates() {
36
36
  if (process.env.CTXORA_PYTHON) {
37
37
  return [{ command: process.env.CTXORA_PYTHON, prefix: [] }];
38
38
  }
39
+ const supportedMinors = ["13", "12", "11", "10"];
39
40
  return process.platform === "win32"
40
- ? [{ command: "py", prefix: ["-3"] }, { command: "python", prefix: [] }, { command: "python3", prefix: [] }]
41
- : [{ command: "python3", prefix: [] }, { command: "python", prefix: [] }];
41
+ ? [
42
+ ...supportedMinors.map((minor) => ({ command: "py", prefix: [`-3.${minor}`] })),
43
+ { command: "python", prefix: [] },
44
+ { command: "python3", prefix: [] },
45
+ ]
46
+ : [
47
+ ...supportedMinors.map((minor) => ({ command: `python3.${minor}`, prefix: [] })),
48
+ { command: "python3", prefix: [] },
49
+ { command: "python", prefix: [] },
50
+ ];
42
51
  }
43
52
 
44
53
  export function findPython() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctxora",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "Local-first context engine for coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,6 +10,7 @@
10
10
  "bin",
11
11
  "src/**/*.py",
12
12
  "pyproject.toml",
13
+ "assets/ctxora-app-icon.png",
13
14
  "README.md",
14
15
  "README.vi.md",
15
16
  "LICENSE"
@@ -34,7 +35,7 @@
34
35
  "type": "git",
35
36
  "url": "git+https://github.com/nguyentrunghieutcu/ctxora-engine.git"
36
37
  },
37
- "homepage": "https://github.com/nguyentrunghieutcu/ctxora-engine#readme",
38
+ "homepage": "https://ctxora-landing.vercel.app/",
38
39
  "bugs": {
39
40
  "url": "https://github.com/nguyentrunghieutcu/ctxora-engine/issues"
40
41
  },
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ctxora-engine"
7
- version = "6.2.0"
7
+ version = "6.2.1"
8
8
  description = "Local-first context engine for coding agents."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"