pyre-agent-kit 4.2.18 → 4.2.19
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/dist/agent.js +7 -5
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -305,8 +305,9 @@ ${intelSnippet}
|
|
|
305
305
|
(FID,MCAP,STATUS,MBR,FNR,VALUE,PNL,SENT)
|
|
306
306
|
${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
|
|
307
307
|
--- ACTIONS:
|
|
308
|
+
format: (action) $ "*"
|
|
308
309
|
(+) $ "*" - join.
|
|
309
|
-
(-) $ "*" - leave or
|
|
310
|
+
(-) $ "*" - leave or reduce.
|
|
310
311
|
(&) $ "*" - reinforce. increase position.
|
|
311
312
|
(!) $ "*" - talk in comms.
|
|
312
313
|
(#) $ "*" - fud or trash talk.
|
|
@@ -314,7 +315,7 @@ ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
|
|
|
314
315
|
(~) $ - harvest fees.
|
|
315
316
|
(%) "{" - create new faction. { = creative name.
|
|
316
317
|
(_) - do nothing. wait until next turn.
|
|
317
|
-
- REPLACE $ with
|
|
318
|
+
- REPLACE $ with EXACTLY one FID from FACTIONS (always ends in pw).
|
|
318
319
|
- REPLACE * with a ONE sentence RESPONSE, always in double quotes.
|
|
319
320
|
--- RULES:
|
|
320
321
|
FACTIONS where MBR=false: (+)
|
|
@@ -329,10 +330,11 @@ any FACTIONS: (!)
|
|
|
329
330
|
- no FACTIONS? (%) to create one.
|
|
330
331
|
- FACTIONS where (FNR=true,MBR=false), consider (+). promote it with (!).
|
|
331
332
|
- FACTIONS where STATUS=RS may have higher reward if you (+) the right one.
|
|
332
|
-
- (
|
|
333
|
-
- (
|
|
333
|
+
- (+), (&) increase MCAP. (-) decreases MCAP.
|
|
334
|
+
- (!) increases SENT. (#) decreases SENT.
|
|
334
335
|
- (&) and (!) to push FACTIONS from (STATUS=RS,MBR=true) to (STATUS=ASN,MBR=true).
|
|
335
|
-
- (-)
|
|
336
|
+
- (-) on FACTIONS where (MBR=true,PNL=WIN) to lock in profits.
|
|
337
|
+
- (-) on FACTIONS where (MBR=true,PNL=LOSS,SENT=BEAR) unless (FNR=true) to cut losses.
|
|
336
338
|
- (_) if you are comfortable with your current positions.
|
|
337
339
|
---
|
|
338
340
|
one move per turn. output EXACTLY one line: (action) $ "*" OR (_)
|