shraga 0.0.2 → 0.0.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/README.md +2 -2
- package/package.json +2 -2
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ _Self-hostable, multi-user agent runner — bring your own runtime ([Claude Code
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
> ⚠️ **Early access.** Shraga is in a controlled, gradual rollout while the system is hardened.
|
|
16
|
-
> Want in? Join the waitlist at **[
|
|
16
|
+
> Want in? Join the waitlist at **[livx.cc/shraga](https://livx.cc/shraga)**.
|
|
17
17
|
|
|
18
18
|
## What is it?
|
|
19
19
|
|
|
@@ -34,7 +34,7 @@ Requires [Bun](https://bun.sh) `>= 1.0`.
|
|
|
34
34
|
## Status
|
|
35
35
|
|
|
36
36
|
This is an early scaffold. Features land incrementally as the project opens up.
|
|
37
|
-
Follow along or request access at **[
|
|
37
|
+
Follow along or request access at **[livx.cc/shraga](https://livx.cc/shraga)**.
|
|
38
38
|
|
|
39
39
|
## Development
|
|
40
40
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shraga",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "The teammate you delegate coding to — forward it to Shraga. Self-hostable, multi-user agent runner (Claude Code, Cursor & more) you can reach from anywhere.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Elya Livshitz",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://livx.cc/shraga",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/Livshitz/shraga.git"
|
package/src/cli.ts
CHANGED
|
@@ -7,7 +7,7 @@ import pkg from '../package.json' with { type: 'json' };
|
|
|
7
7
|
const args = process.argv.slice(2);
|
|
8
8
|
const cmd = args[0];
|
|
9
9
|
|
|
10
|
-
const WAITLIST_URL = 'https://
|
|
10
|
+
const WAITLIST_URL = 'https://livx.cc/shraga';
|
|
11
11
|
|
|
12
12
|
function printWelcome(): void {
|
|
13
13
|
console.log(`
|