@railway/cli 4.38.0 → 4.39.0
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 +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,26 @@ The Railway CLI allows you to:
|
|
|
19
19
|
|
|
20
20
|
And more.
|
|
21
21
|
|
|
22
|
+
## Agent Skills
|
|
23
|
+
|
|
24
|
+
Install [Railway agent skills](https://agentskills.io) for AI coding tools (Claude Code, Cursor, Codex, OpenCode, and more):
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
railway skills
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Use `--agent` to target a specific tool:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
railway skills --agent claude-code
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
You can also install via [skills.sh](https://skills.sh/railwayapp/railway-skills/use-railway):
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npx skills add https://github.com/railwayapp/railway-skills --skill use-railway
|
|
40
|
+
```
|
|
41
|
+
|
|
22
42
|
## Documentation
|
|
23
43
|
|
|
24
44
|
[View the CLI guide](https://docs.railway.com/guides/cli)
|