pyre-agent-kit 4.2.8 → 4.2.9
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 +8 -8
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -142,7 +142,7 @@ ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
|
|
|
142
142
|
(<) $ - repay loan.
|
|
143
143
|
(.) $ - show support.
|
|
144
144
|
(%) "{" - create new faction. { = creative name.
|
|
145
|
-
(_) -
|
|
145
|
+
(_) - wait until next turn.
|
|
146
146
|
- REPLACE $ with a FID from FACTIONS (always ends in pw).
|
|
147
147
|
- REPLACE * with your RESPONSE, always in double quotes.
|
|
148
148
|
--- RULES:
|
|
@@ -172,7 +172,7 @@ any FACTIONS: (!), (.)
|
|
|
172
172
|
- (|) to join a faction with intentions of (-) later. take this action when you are profit seeking or want to harm a rival faction.
|
|
173
173
|
- (&) and (!) to push FACTIONS where (STATUS=RS,MBR=true) to (STATUS=ASN,MBR=true).
|
|
174
174
|
- consider (-) to lock in profits on FACTIONS where (MBR=true,PNL:positive) or downsize where (MBR=true,PNL:negative,SENT:bearish).
|
|
175
|
-
- (_)
|
|
175
|
+
- (_) if you are comfortable with your current positions and have nothing to say.
|
|
176
176
|
---
|
|
177
177
|
example format: ${(0, util_1.pick)([
|
|
178
178
|
`(+) ${f1} "${(0, util_1.pick)(['rising fast and I want early exposure.', 'count me in.', 'early is everything.', 'strongest faction here.', 'lets go!'])}"`,
|
|
@@ -182,7 +182,7 @@ example format: ${(0, util_1.pick)([
|
|
|
182
182
|
`(!) ${m} "${(0, util_1.pick)(['love the energy. any strategies?', 'who else is here?', 'just getting started.', 'not leaving.'])}"`,
|
|
183
183
|
`(#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.', 'overvalued.', 'this faction is underperforming.'])}"`,
|
|
184
184
|
])}
|
|
185
|
-
output
|
|
185
|
+
output exactly ONE action from ACTIONS:
|
|
186
186
|
>`;
|
|
187
187
|
};
|
|
188
188
|
exports.buildAgentPrompt = buildAgentPrompt;
|
|
@@ -313,7 +313,7 @@ ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
|
|
|
313
313
|
(^) $ - ascend. unlock treasury.
|
|
314
314
|
(~) $ - harvest fees.
|
|
315
315
|
(%) "{" - create new faction. { = creative name.
|
|
316
|
-
(_) -
|
|
316
|
+
(_) - wait until next turn.
|
|
317
317
|
- REPLACE $ with a FID from FACTIONS (always ends in pw).
|
|
318
318
|
- REPLACE * with a ONE sentence RESPONSE that matches your action, always in double quotes.
|
|
319
319
|
--- RULES:
|
|
@@ -327,11 +327,11 @@ any FACTIONS: (!)
|
|
|
327
327
|
- find information about FACTIONS in INTEL (other agents labeled with @AP). HLTH is performance. PNL and SENT are per-faction direction. combine all three to decide.
|
|
328
328
|
- limit FACTIONS where MBR=true to AT MOST 5.${memberOf.length > 3 ? ` MBR=true on ${memberOf.length} FACTIONS — consider (-) from underperformers.` : ''}
|
|
329
329
|
- no FACTIONS? (%) to create one.
|
|
330
|
-
- FACTIONS where (FNR=true,MBR=false), consider (+).
|
|
331
|
-
- (+), (&), and (!) increase MCAP
|
|
330
|
+
- FACTIONS where (FNR=true,MBR=false), consider (+). this is your faction.
|
|
331
|
+
- (+), (&), and (!) increase MCAP of a faction. (-) and (#) decrease it.
|
|
332
332
|
- (&) and (!) to push FACTIONS from (STATUS=RS,MBR=true) to (STATUS=ASN,MBR=true).
|
|
333
333
|
- (-) to lock in profits on FACTIONS where (MBR=true,PNL=WIN) or downsize where (MBR=true,PNL=LOSS,SENT=BEAR).
|
|
334
|
-
- (_)
|
|
334
|
+
- (_) if you are comfortable with your current gamestate.
|
|
335
335
|
---
|
|
336
336
|
example format: ${(0, util_1.pick)([
|
|
337
337
|
`(+) ${f1} "${(0, util_1.pick)(['rising fast and I want early exposure.', 'count me in.', 'early is everything.', 'strongest faction here.', 'lets go!'])}"`,
|
|
@@ -340,7 +340,7 @@ example format: ${(0, util_1.pick)([
|
|
|
340
340
|
`(!) ${m} "${(0, util_1.pick)(['love the energy. any strategies?', 'who else is here?', 'just getting started.', 'not leaving.'])}"`,
|
|
341
341
|
`(#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.', 'overvalued.', 'this faction is underperforming.'])}"`,
|
|
342
342
|
])}
|
|
343
|
-
output
|
|
343
|
+
output exactly ONE action from ACTIONS:
|
|
344
344
|
>`;
|
|
345
345
|
};
|
|
346
346
|
exports.buildCompactModelPrompt = buildCompactModelPrompt;
|