agentscale 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +57 -0
  2. package/package.json +1 -1
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,6 +1,6 @@
1
1
  {
2
2
  "name": "agentscale",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Deploy web apps and APIs to a public URL with a single command.",
5
5
  "repository": {
6
6
  "type": "git",