agentscale 0.1.1 → 0.1.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 +57 -0
- package/package.json +15 -3
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# agentscale
|
|
2
|
+
|
|
3
|
+
Deploy web apps and APIs to a public URL with a single command. No config, no Docker, no CI pipeline — just `agentscale deploy`.
|
|
4
|
+
|
|
5
|
+
Supports Node.js, Python, Go, and anything [Nixpacks](https://nixpacks.com) can detect.
|
|
6
|
+
|
|
7
|
+
## Quick start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx agentscale register # get an API key (saved to ~/.agentscale)
|
|
11
|
+
npx agentscale deploy # package and deploy the current directory
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Your app gets a public `.railway.app` URL on deploy.
|
|
15
|
+
|
|
16
|
+
## Commands
|
|
17
|
+
|
|
18
|
+
### `agentscale register`
|
|
19
|
+
|
|
20
|
+
Creates an API key and saves it to `~/.agentscale/config.json`. No account or payment needed.
|
|
21
|
+
|
|
22
|
+
### `agentscale deploy`
|
|
23
|
+
|
|
24
|
+
Packages the current directory and deploys it.
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
agentscale deploy # auto-generates a service name
|
|
28
|
+
agentscale deploy --name myapp # deploy to a specific service
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Your server must listen on the `$PORT` environment variable.
|
|
32
|
+
|
|
33
|
+
### `agentscale list`
|
|
34
|
+
|
|
35
|
+
Lists your services and their status.
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
quick-fox-1234 [active] (created 2/15/2026)
|
|
39
|
+
my-api [expires in 42m] (created 2/15/2026)
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Free tier
|
|
43
|
+
|
|
44
|
+
- No signup or payment required.
|
|
45
|
+
- Free deploys expire after 1 hour.
|
|
46
|
+
- Limited to 1 service.
|
|
47
|
+
|
|
48
|
+
Add credits to remove the expiry and deploy permanently.
|
|
49
|
+
|
|
50
|
+
## Limits
|
|
51
|
+
|
|
52
|
+
- Upload: 100 MB compressed, 500 MB decompressed.
|
|
53
|
+
- Your project needs a standard structure (e.g. `package.json` with a start script, `requirements.txt`, or `go.mod`).
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentscale",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Deploy
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Deploy web apps and APIs to a public URL with a single command.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/jpbonch/agentscale.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/jpbonch/agentscale#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/jpbonch/agentscale/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"bin": {
|
|
7
15
|
"agentscale": "dist/index.js"
|
|
@@ -11,12 +19,16 @@
|
|
|
11
19
|
],
|
|
12
20
|
"scripts": {
|
|
13
21
|
"dev": "bun --watch src/index.ts",
|
|
14
|
-
"build": "tsc -p tsconfig.json",
|
|
22
|
+
"build": "npx tsc -p tsconfig.json",
|
|
15
23
|
"prepublishOnly": "npm run build",
|
|
16
24
|
"start": "node dist/index.js"
|
|
17
25
|
},
|
|
18
26
|
"dependencies": {
|
|
19
27
|
"commander": "^13.0.0",
|
|
20
28
|
"dotenv": "^17.3.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^25.2.3",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
21
33
|
}
|
|
22
34
|
}
|