krelvan 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 +23 -0
- package/cli.mjs +20 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Krelvan
|
|
2
|
+
|
|
3
|
+
**Self-hostable, open-source platform to build AI agents you own.**
|
|
4
|
+
|
|
5
|
+
Describe a goal in plain English and Krelvan builds a real agent that researches, drafts, and
|
|
6
|
+
acts across your tools — then delivers the result to your inbox or a channel you connect. Runs
|
|
7
|
+
on any LLM provider or fully local with Ollama. Apache-2.0, self-hosted, no lock-in.
|
|
8
|
+
|
|
9
|
+
> This npm package is a placeholder. The full platform runs from the repository today; a
|
|
10
|
+
> standalone `npx krelvan` one-liner is coming soon.
|
|
11
|
+
|
|
12
|
+
## Run it
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
git clone https://github.com/sreenathmmenon/krelvan
|
|
16
|
+
cd krelvan
|
|
17
|
+
npm install
|
|
18
|
+
npx krelvan
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
The first run builds the web UI (one time). Then open **http://localhost:3100**.
|
|
22
|
+
|
|
23
|
+
**Repo:** https://github.com/sreenathmmenon/krelvan
|
package/cli.mjs
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Krelvan — placeholder CLI. The full self-hosted platform runs from the repository today;
|
|
3
|
+
// a standalone `npx krelvan` one-liner is coming soon. This just points you to the repo.
|
|
4
|
+
|
|
5
|
+
const REPO = "https://github.com/sreenathmmenon/krelvan";
|
|
6
|
+
|
|
7
|
+
console.log(`
|
|
8
|
+
Krelvan — build AI agents you own, self-hosted.
|
|
9
|
+
|
|
10
|
+
The full platform runs from the repository. To try it:
|
|
11
|
+
|
|
12
|
+
git clone ${REPO}
|
|
13
|
+
cd krelvan
|
|
14
|
+
npm install
|
|
15
|
+
npx krelvan
|
|
16
|
+
|
|
17
|
+
A standalone one-command install is coming soon.
|
|
18
|
+
|
|
19
|
+
Repo: ${REPO}
|
|
20
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "krelvan",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Krelvan — self-hostable, open-source platform to build AI agents you own. Clone the repo to run it; the npx one-liner is coming soon.",
|
|
5
|
+
"keywords": ["ai", "agents", "ai-agents", "self-hosted", "open-source", "llm", "mcp", "automation", "rag"],
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": "Sreenath Menon",
|
|
8
|
+
"homepage": "https://github.com/sreenathmmenon/krelvan#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/sreenathmmenon/krelvan.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/sreenathmmenon/krelvan/issues"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"krelvan": "cli.mjs"
|
|
18
|
+
},
|
|
19
|
+
"files": ["cli.mjs", "README.md"],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=22"
|
|
22
|
+
}
|
|
23
|
+
}
|