infiniloom 0.6.0 → 0.6.3
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/bin/infiniloom +1 -3
- package/install.js +5 -18
- package/package.json +26 -7
package/bin/infiniloom
CHANGED
|
@@ -5,9 +5,7 @@ const path = require("path");
|
|
|
5
5
|
const fs = require("fs");
|
|
6
6
|
|
|
7
7
|
const binDir = __dirname;
|
|
8
|
-
const
|
|
9
|
-
const binName = platform === "win32" ? "infiniloom.exe" : "infiniloom-bin";
|
|
10
|
-
const binPath = path.join(binDir, binName);
|
|
8
|
+
const binPath = path.join(binDir, "infiniloom-bin");
|
|
11
9
|
|
|
12
10
|
if (!fs.existsSync(binPath)) {
|
|
13
11
|
console.error("Error: infiniloom binary not found.");
|
package/install.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const fs = require("fs");
|
|
4
4
|
const path = require("path");
|
|
5
5
|
const https = require("https");
|
|
6
|
-
const { execSync
|
|
6
|
+
const { execSync } = require("child_process");
|
|
7
7
|
|
|
8
8
|
const VERSION = require("./package.json").version;
|
|
9
9
|
const REPO = "Topos-Labs/infiniloom";
|
|
@@ -19,9 +19,6 @@ function getArtifactInfo() {
|
|
|
19
19
|
"darwin-arm64": { artifact: "infiniloom-darwin-arm64.tar.gz", binary: "infiniloom" },
|
|
20
20
|
"linux-x64": { artifact: "infiniloom-linux-x64.tar.gz", binary: "infiniloom" },
|
|
21
21
|
"linux-arm64": { artifact: "infiniloom-linux-arm64.tar.gz", binary: "infiniloom" },
|
|
22
|
-
"win32-x64": { artifact: "infiniloom-windows-x64.zip", binary: "infiniloom.exe" },
|
|
23
|
-
// Note: Windows ARM64 not currently built in release workflow
|
|
24
|
-
"win32-arm64": { artifact: "infiniloom-windows-x64.zip", binary: "infiniloom.exe" },
|
|
25
22
|
};
|
|
26
23
|
|
|
27
24
|
const key = `${platform}-${arch}`;
|
|
@@ -29,7 +26,7 @@ function getArtifactInfo() {
|
|
|
29
26
|
|
|
30
27
|
if (!info) {
|
|
31
28
|
console.error(`Unsupported platform: ${platform}-${arch}`);
|
|
32
|
-
console.error("Supported: darwin-x64, darwin-arm64, linux-x64, linux-arm64
|
|
29
|
+
console.error("Supported: darwin-x64, darwin-arm64, linux-x64, linux-arm64");
|
|
33
30
|
console.error("");
|
|
34
31
|
console.error("Install from source instead:");
|
|
35
32
|
console.error(" cargo install infiniloom");
|
|
@@ -84,28 +81,18 @@ async function install() {
|
|
|
84
81
|
await downloadFile(url, archivePath);
|
|
85
82
|
|
|
86
83
|
// Extract archive
|
|
87
|
-
|
|
88
|
-
execSync(`tar -xzf "${archivePath}" -C "${tmpDir}"`, { stdio: "pipe" });
|
|
89
|
-
} else if (artifact.endsWith(".zip")) {
|
|
90
|
-
if (process.platform === "win32") {
|
|
91
|
-
execSync(`powershell -Command "Expand-Archive -Path '${archivePath}' -DestinationPath '${tmpDir}' -Force"`, { stdio: "pipe" });
|
|
92
|
-
} else {
|
|
93
|
-
execSync(`unzip -o "${archivePath}" -d "${tmpDir}"`, { stdio: "pipe" });
|
|
94
|
-
}
|
|
95
|
-
}
|
|
84
|
+
execSync(`tar -xzf "${archivePath}" -C "${tmpDir}"`, { stdio: "pipe" });
|
|
96
85
|
|
|
97
86
|
// Find and move binary
|
|
98
87
|
const srcPath = path.join(tmpDir, binary);
|
|
99
|
-
const destPath = path.join(binDir,
|
|
88
|
+
const destPath = path.join(binDir, "infiniloom-bin");
|
|
100
89
|
|
|
101
90
|
if (!fs.existsSync(srcPath)) {
|
|
102
91
|
throw new Error(`Binary not found in archive: ${binary}`);
|
|
103
92
|
}
|
|
104
93
|
|
|
105
94
|
fs.copyFileSync(srcPath, destPath);
|
|
106
|
-
|
|
107
|
-
fs.chmodSync(destPath, 0o755);
|
|
108
|
-
}
|
|
95
|
+
fs.chmodSync(destPath, 0o755);
|
|
109
96
|
|
|
110
97
|
// Clean up
|
|
111
98
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infiniloom",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.6.3",
|
|
4
|
+
"description": "AST-aware code context engine for RAG, vector databases, and AI assistants. Tree-sitter parsing, PageRank ranking, BLAKE3 content-addressable chunks. Integrates with Pinecone, Weaviate, Qdrant. Supports Claude, GPT-5, GPT-4o, Gemini, Llama (27+ tokenizers).",
|
|
5
5
|
"bin": {
|
|
6
6
|
"infiniloom": "bin/infiniloom"
|
|
7
7
|
},
|
|
@@ -15,13 +15,33 @@
|
|
|
15
15
|
"keywords": [
|
|
16
16
|
"infiniloom",
|
|
17
17
|
"llm",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
18
|
+
"rag",
|
|
19
|
+
"retrieval-augmented-generation",
|
|
20
|
+
"vector-database",
|
|
21
|
+
"pinecone",
|
|
22
|
+
"weaviate",
|
|
23
|
+
"qdrant",
|
|
24
|
+
"chromadb",
|
|
25
|
+
"embeddings",
|
|
26
|
+
"code-context",
|
|
20
27
|
"code-analysis",
|
|
28
|
+
"ast",
|
|
29
|
+
"tree-sitter",
|
|
30
|
+
"pagerank",
|
|
31
|
+
"content-addressable",
|
|
32
|
+
"blake3",
|
|
21
33
|
"claude",
|
|
22
34
|
"gpt",
|
|
35
|
+
"gpt4o",
|
|
36
|
+
"gpt5",
|
|
23
37
|
"gemini",
|
|
24
|
-
"
|
|
38
|
+
"llama",
|
|
39
|
+
"ai-tools",
|
|
40
|
+
"developer-tools",
|
|
41
|
+
"token-counting",
|
|
42
|
+
"tiktoken",
|
|
43
|
+
"code-chunking",
|
|
44
|
+
"semantic-chunking"
|
|
25
45
|
],
|
|
26
46
|
"author": "Topos Labs <hello@toposlabs.ai>",
|
|
27
47
|
"license": "MIT",
|
|
@@ -39,8 +59,7 @@
|
|
|
39
59
|
},
|
|
40
60
|
"os": [
|
|
41
61
|
"darwin",
|
|
42
|
-
"linux"
|
|
43
|
-
"win32"
|
|
62
|
+
"linux"
|
|
44
63
|
],
|
|
45
64
|
"cpu": [
|
|
46
65
|
"x64",
|