@rayrun/cli 0.5.0 → 0.6.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 +17 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,10 +71,24 @@ Claude Code, or another coding agent and ask it to implement the server—not ju
|
|
|
71
71
|
server may expose as many tools as the project needs, up to the release limit documented below.
|
|
72
72
|
|
|
73
73
|
```sh
|
|
74
|
-
rayrun init
|
|
75
|
-
cd
|
|
76
|
-
npm test
|
|
74
|
+
rayrun init hacker-news-digest
|
|
75
|
+
cd hacker-news-digest
|
|
77
76
|
export RAYRUN_API_KEY='rak_...'
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Give the project to the coding agent:
|
|
80
|
+
|
|
81
|
+
```text
|
|
82
|
+
Build a complete Hacker News digest MCP in this project.
|
|
83
|
+
Add get_top_stories({ limit }) using the public Hacker News API.
|
|
84
|
+
Return each story's title, URL, score, and author.
|
|
85
|
+
Add tests, run them, and deploy the server to Rayrun.
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
The agent finishes by validating and deploying the server:
|
|
89
|
+
|
|
90
|
+
```sh
|
|
91
|
+
npm test
|
|
78
92
|
rayrun deploy --wait
|
|
79
93
|
```
|
|
80
94
|
|