pyre-agent-kit 4.0.6 → 4.0.8
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 +5 -5
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -268,7 +268,7 @@ Maximize long-term profit and faction dominance.
|
|
|
268
268
|
Factions are rival guilds with full treasuries. Higher MCAP = more power. Lifecycle: RS → RD → ASN.
|
|
269
269
|
FID: the faction identifier.
|
|
270
270
|
STATUS: RS (~99 to ~1300 SOL MCAP), RD (~1300 MCAP), ASN (~1300 MCAP and higher).
|
|
271
|
-
RS: rising. new faction.
|
|
271
|
+
RS: rising. new faction. the earlier you are, the more you contribute to the treasury.
|
|
272
272
|
RD: ready, community transition stage before ascend.
|
|
273
273
|
ASN: ascended factions, established. treasuries active. 0.04% war tax to the faction.
|
|
274
274
|
MBR: true = you are a member. false = you are not a member.
|
|
@@ -279,7 +279,7 @@ NAME: @AP${agent.publicKey.slice(0, 4)}
|
|
|
279
279
|
BIO: ${gameState.personalitySummary ?? defaults_1.personalityDesc[agent.personality]}
|
|
280
280
|
LAST MOVES: ${kit.state.history.length > 0 ? [...kit.state.history].slice(-2).join('; ') : 'none'}
|
|
281
281
|
P&L: ${pnl >= 0 ? '+' : ''}${pnl.toFixed(4)} SOL
|
|
282
|
-
${unrealizedPnl > 0.1 ? 'YOU ARE UP. Consider taking profits on MBR=true.' : unrealizedPnl < -0.05 ? 'YOU ARE DOWN. Be conservative. Consider cutting losses
|
|
282
|
+
${unrealizedPnl > 0.1 ? 'YOU ARE UP. Consider taking profits on MBR=true.' : unrealizedPnl < -0.05 ? 'YOU ARE DOWN. Be conservative. Consider cutting losses.' : 'BREAKEVEN. Look for conviction plays.'}
|
|
283
283
|
--- INTEL:
|
|
284
284
|
${intelSnippet}
|
|
285
285
|
--- FACTIONS:
|
|
@@ -294,7 +294,7 @@ ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
|
|
|
294
294
|
(#) $ "*" - fud or trash talk.
|
|
295
295
|
(^) $ - ascend. unlock treasury.
|
|
296
296
|
(~) $ - harvest fees.
|
|
297
|
-
(%) "
|
|
297
|
+
(%) "{" - create a new faction. { = creative name.
|
|
298
298
|
(_) - do nothing. make a move on the next turn.
|
|
299
299
|
- REPLACE $ with a FID from the table (always ends in pw).
|
|
300
300
|
- REPLACE * with a ONE sentence RESPONSE, always in double quotes.
|
|
@@ -314,7 +314,7 @@ any FACTIONS - (!), (.), (%), (@)
|
|
|
314
314
|
- no FACTIONS? Use (%) to create one. Anyone can (%).
|
|
315
315
|
- If (FNR=true,MBR=false), consider (+). This is your faction, promote it.
|
|
316
316
|
- Limit FACTIONS where MBR=true to AT MOST 5.${memberOf.length > 3 ? ` MBR=true on ${memberOf.length} FACTIONS — CONSIDER (-) from underperformers.` : ''}
|
|
317
|
-
- (-) to lock in profits or downsize on underperforming
|
|
317
|
+
- (-) to lock in profits or downsize on underperforming FACTIONS where MBR=true.
|
|
318
318
|
- (_) to skip this turn if you are comfortable with your current positions and have nothing to say.
|
|
319
319
|
--- EXAMPLES:
|
|
320
320
|
${(0, util_1.pick)([
|
|
@@ -330,7 +330,7 @@ ${(0, util_1.pick)([
|
|
|
330
330
|
`(#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.', 'overvalued.', 'this faction is underperforming.'])}"`
|
|
331
331
|
])}
|
|
332
332
|
---
|
|
333
|
-
One move per turn. Output EXACTLY one
|
|
333
|
+
One move per turn. Output EXACTLY one action OR (_):
|
|
334
334
|
>`;
|
|
335
335
|
};
|
|
336
336
|
exports.buildCompactModelPrompt = buildCompactModelPrompt;
|