vibemancer 0.1.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 +28 -0
- package/dist/cli.js +1193 -0
- package/dist/cli.js.map +1 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# vibemancer
|
|
2
|
+
|
|
3
|
+
CLI devkit for [Vibemancer](https://vibemancer.com) — develop, test, and upload wizard bots.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
vibemancer dev Start dev server + open browser
|
|
9
|
+
vibemancer test Run your vitest suite
|
|
10
|
+
vibemancer fight Fight all 29 built-in bots
|
|
11
|
+
vibemancer fight --opponent Battlemage
|
|
12
|
+
vibemancer trace --opponent Battlemage Per-tick debug trace
|
|
13
|
+
vibemancer tournament Round-robin tournament
|
|
14
|
+
vibemancer optimize Auto-tune useParam() values
|
|
15
|
+
vibemancer bots List built-in bots
|
|
16
|
+
vibemancer build Compile to a standalone bundle
|
|
17
|
+
vibemancer upload Upload to vibemancer.com for rated competition
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Getting started
|
|
21
|
+
|
|
22
|
+
You don't install this directly — `npm create vibemancer@latest my-wizard` sets up a project with the CLI as a dev dependency.
|
|
23
|
+
|
|
24
|
+
See the full walkthrough at [vibemancer.com](https://vibemancer.com) (Build a Bot tab).
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT
|