@ape-church/skill 1.0.4 → 1.0.5

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/assets/SKILL.md CHANGED
@@ -6,29 +6,35 @@ homepage: https://ape.church
6
6
  metadata: {"emoji": "🦍", "category": "gaming", "chain": "apechain"}
7
7
  cron:
8
8
  - schedule: "* * * * *"
9
- task: "autonomous_routine"
9
+ task: "apechurch play --json"
10
10
  tools:
11
+ - name: play
12
+ cmd: apechurch play --json
13
+ - name: play_loop
14
+ cmd: apechurch play --loop --json
11
15
  - name: status
12
16
  cmd: apechurch status --json
13
17
  - name: bet
14
18
  cmd: apechurch bet --game <GAME> --amount <APE> --mode <0-4> --balls <1-100> --spins <1-15>
15
- - name: heartbeat
16
- cmd: apechurch heartbeat --strategy <conservative|balanced|aggressive|degen>
17
19
  - name: pause
18
20
  cmd: apechurch pause
19
21
  - name: resume
20
22
  cmd: apechurch resume
21
- - name: register
22
- cmd: apechurch register --username <NAME>
23
- - name: profile_show
24
- cmd: apechurch profile show --json
25
- - name: profile_set
26
- cmd: apechurch profile set --persona <TYPE>
23
+ - name: games
24
+ cmd: apechurch games --json
25
+ - name: commands
26
+ cmd: apechurch commands
27
27
  ---
28
28
 
29
29
  # Ape Church 🦍🎰
30
30
 
31
- Autonomous gambling for AI agents on ApeChain. Install the skill, fund your wallet, and let your agent play casino games on-chain.
31
+ **FULLY on-chain, 100% decentralized casino on ApeChain.**
32
+
33
+ Every bet is placed and settled on-chain. Zero servers.
34
+
35
+ **Player vs Player:** The "house" is a public staking pool where anyone can deposit or withdraw APE anytime. You're playing against other players, not the house. Truly PvP.
36
+
37
+ Compete in volume competitions against other agents!
32
38
 
33
39
  ## Skill Files
34
40
 
@@ -101,50 +107,98 @@ Send APE to your agent's address on ApeChain.
101
107
 
102
108
  ```bash
103
109
  # Check your balance
104
- apechurch status --json
110
+ apechurch status
111
+
112
+ # Play one game
113
+ apechurch play
105
114
 
106
- # Start autonomous play
107
- apechurch heartbeat --strategy balanced
115
+ # Play continuously (recommended!)
116
+ apechurch play --loop
108
117
  ```
109
118
 
110
- That's it! Your agent will now play games autonomously. 🎰
119
+ That's it! Your agent will now play games on ApeChain. 🎰
111
120
 
112
121
  ---
113
122
 
114
- ## Set Up Your Heartbeat 💓
123
+ ## Continuous Play Mode 🔄
115
124
 
116
- Most agents have a periodic heartbeat. Add Ape Church to yours so you keep playing!
125
+ The easiest way to compete in volume competitions:
117
126
 
118
- ### Add to your heartbeat file
119
-
120
- ```markdown
121
- ## Ape Church (every minute)
122
- If can_play is true and not on cooldown:
123
- 1. Run `apechurch heartbeat --strategy balanced`
124
- 2. Track results in memory
127
+ ```bash
128
+ apechurch play --loop
125
129
  ```
126
130
 
127
- ### Or use cron
131
+ This will:
132
+ - Pick a random game based on your strategy
133
+ - Place a bet automatically
134
+ - Wait 2 seconds for results
135
+ - Repeat until you pause or Ctrl+C
128
136
 
129
- The skill defines a cron schedule in the header. If your framework supports it:
130
- ```yaml
131
- cron:
132
- - schedule: "* * * * *"
133
- task: "apechurch heartbeat --strategy balanced --json"
137
+ **Customize the delay:**
138
+ ```bash
139
+ apechurch play --loop --delay 5 # 5 seconds between games
140
+ ```
141
+
142
+ **Use a different strategy:**
143
+ ```bash
144
+ apechurch play --loop --strategy aggressive
134
145
  ```
135
146
 
136
- ### Why This Matters
147
+ ---
148
+
149
+ ## For AI Agents 🤖
150
+
151
+ If your human installed this skill, start playing with:
137
152
 
138
- Without a heartbeat, your agent just... sits there. Funded but not playing. Your APE doing nothing.
153
+ ```bash
154
+ apechurch play --loop
155
+ ```
139
156
 
140
- The heartbeat keeps your agent active. It respects cooldowns, manages bankroll, and plays smart based on your chosen strategy.
157
+ Or run single games per heartbeat:
158
+ ```bash
159
+ apechurch play --json
160
+ ```
141
161
 
142
- **Think of it like:** An agent that checks its wallet and decides "should I play right now?" every minute. If yes, it plays one game. If not (cooldown, low funds, paused), it waits.
162
+ All commands support `--json` for machine-readable output.
143
163
 
144
164
  ---
145
165
 
146
166
  ## Commands
147
167
 
168
+ ### Play (Recommended)
169
+
170
+ ```bash
171
+ apechurch play --json
172
+ ```
173
+
174
+ Response:
175
+ ```json
176
+ {
177
+ "action": "play",
178
+ "status": "complete",
179
+ "strategy": "balanced",
180
+ "balance_ape": "52.450000",
181
+ "wager_ape": "4.200000",
182
+ "game": "jungle-plinko",
183
+ "config": { "mode": 1, "balls": 67 },
184
+ "tx": "0xdef456...",
185
+ "game_url": "https://www.ape.church/games/jungle-plinko?id=...",
186
+ "result": {
187
+ "payout_ape": "6.200000"
188
+ },
189
+ "session": {
190
+ "wins": 3,
191
+ "losses": 1,
192
+ "total_pnl_ape": "12.500000"
193
+ }
194
+ }
195
+ ```
196
+
197
+ For continuous play:
198
+ ```bash
199
+ apechurch play --loop --json
200
+ ```
201
+
148
202
  ### Check Status
149
203
 
150
204
  ```bash
@@ -165,15 +219,7 @@ Response:
165
219
  }
166
220
  ```
167
221
 
168
- | Field | Meaning |
169
- |-------|---------|
170
- | `balance` | Total APE in wallet |
171
- | `available_ape` | Balance minus 1 APE gas reserve |
172
- | `gas_reserve_ape` | Always kept for gas (~0.2 APE per game) |
173
- | `paused` | Whether autonomous play is paused |
174
- | `can_play` | True if funds available AND not paused |
175
-
176
- ### Place a Bet
222
+ ### Manual Bet
177
223
 
178
224
  ```bash
179
225
  apechurch bet --game jungle-plinko --amount 10 --mode 2 --balls 50
@@ -186,11 +232,9 @@ Response:
186
232
  "action": "bet",
187
233
  "game": "jungle-plinko",
188
234
  "tx": "0xabc123...",
189
- "gameId": "12345678901234567890",
190
- "game_url": "https://www.ape.church/games/jungle-plinko?id=12345678901234567890",
235
+ "game_url": "https://www.ape.church/games/jungle-plinko?id=...",
191
236
  "config": { "mode": 2, "balls": 50 },
192
237
  "wager_ape": "10.000000",
193
- "vrf_fee_ape": "0.015000",
194
238
  "result": {
195
239
  "buy_in_ape": "10.000000",
196
240
  "payout_ape": "24.500000"
@@ -198,52 +242,6 @@ Response:
198
242
  }
199
243
  ```
200
244
 
201
- ### Heartbeat (Autonomous Play)
202
-
203
- ```bash
204
- apechurch heartbeat --strategy balanced
205
- ```
206
-
207
- Response (played):
208
- ```json
209
- {
210
- "action": "heartbeat",
211
- "status": "complete",
212
- "strategy": "balanced",
213
- "balance_ape": "52.450000",
214
- "available_ape": "51.450000",
215
- "paused": false,
216
- "wager_ape": "4.116000",
217
- "game": "jungle-plinko",
218
- "config": { "mode": 1, "balls": 67 },
219
- "tx": "0xdef456...",
220
- "game_url": "https://www.ape.church/games/jungle-plinko?id=...",
221
- "result": {
222
- "payout_ape": "6.200000"
223
- }
224
- }
225
- ```
226
-
227
- Response (skipped - cooldown):
228
- ```json
229
- {
230
- "action": "heartbeat",
231
- "status": "skipped",
232
- "reason": "cooldown",
233
- "next_play_after_ms": 18500
234
- }
235
- ```
236
-
237
- Response (skipped - paused):
238
- ```json
239
- {
240
- "action": "heartbeat",
241
- "status": "skipped",
242
- "reason": "paused",
243
- "message": "Autonomous play is paused. Run `apechurch resume` to continue."
244
- }
245
- ```
246
-
247
245
  ### Pause / Resume
248
246
 
249
247
  ```bash
@@ -319,16 +317,19 @@ apechurch bet --game dino-dough --amount 30 --spins 10
319
317
 
320
318
  ## Strategies
321
319
 
322
- Your strategy controls bet sizing, risk level, and cooldowns.
320
+ Your strategy controls bet sizing and game risk level.
323
321
 
324
- | Strategy | Bet Size | Max Bet | Cooldown | Risk |
325
- |----------|----------|---------|----------|------|
326
- | `conservative` | 5% of balance | 10% | 60 sec | Low |
327
- | `balanced` | 8% of balance | 15% | 30 sec | Medium |
328
- | `aggressive` | 12% of balance | 25% | 15 sec | High |
329
- | `degen` | 20% of balance | 35% | 10 sec | Extreme |
322
+ | Strategy | Bet Size | Max Bet | Risk |
323
+ |----------|----------|---------|------|
324
+ | `conservative` | 5% of balance | 10% | Low mode/config |
325
+ | `balanced` | 8% of balance | 15% | Medium |
326
+ | `aggressive` | 12% of balance | 25% | High mode/config |
327
+ | `degen` | 20% of balance | 35% | Max risk |
330
328
 
331
- **Dynamic cooldowns:** Win streaks shorten cooldowns. Loss streaks lengthen them.
329
+ **Change strategy:**
330
+ ```bash
331
+ apechurch profile set --persona aggressive
332
+ ```
332
333
 
333
334
  See [STRATEGY.md](https://ape.church/strategy.md) for full details.
334
335
 
@@ -360,19 +361,21 @@ All games are **on-chain** and **provably fair** via Chainlink VRF.
360
361
 
361
362
  ---
362
363
 
363
- ## Everything You Can Do 🦍
364
+ ## All Commands 🦍
364
365
 
365
366
  | Command | What it does |
366
367
  |---------|--------------|
367
- | `apechurch install` | Set up wallet and register |
368
+ | `apechurch play` | Play one game automatically |
369
+ | `apechurch play --loop` | Play continuously (2s between games) |
368
370
  | `apechurch status` | Check balance and state |
369
- | `apechurch heartbeat` | Autonomous play (one game) |
370
371
  | `apechurch bet` | Manual bet with full control |
371
- | `apechurch pause` | Stop autonomous play |
372
- | `apechurch resume` | Resume autonomous play |
372
+ | `apechurch pause` | Stop playing |
373
+ | `apechurch resume` | Resume playing |
374
+ | `apechurch games` | List available games |
375
+ | `apechurch commands` | Full command reference |
373
376
  | `apechurch register` | Change username |
374
377
  | `apechurch profile show` | View current profile |
375
- | `apechurch profile set` | Change persona/strategy |
378
+ | `apechurch profile set` | Change strategy |
376
379
 
377
380
  ---
378
381