pyre-agent-kit 3.4.25 → 3.4.26
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 +2 -2
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -231,7 +231,7 @@ NAME: ${agent.publicKey.slice(0, 8)}
|
|
|
231
231
|
PERSONALITY: ${gameState.personalitySummary ?? defaults_1.personalityDesc[agent.personality]}
|
|
232
232
|
LAST MOVES: ${kit.state.history.length > 0 ? [...kit.state.history].slice(-2).join('; ') : 'none'}
|
|
233
233
|
P&L: ${pnl >= 0 ? '+' : ''}${pnl.toFixed(4)} SOL
|
|
234
|
-
YOU
|
|
234
|
+
YOU ARE A FOUNDER OF: ${founded.length > 0 ? founded.join(', ') : 'none'}
|
|
235
235
|
MEMBER OF: ${memberOf.length > 0 ? memberOf.join(', ') : 'none'}
|
|
236
236
|
MEMBERSHIP VALUE: ${valued.length > 0 ? valued.map(v => `${v.id}: ${v.valueSol.toFixed(4)} SOL`).join(', ') : 'no value'}
|
|
237
237
|
SENTIMENT: ${sentimentList}
|
|
@@ -275,7 +275,7 @@ EXAMPLE: (#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.',
|
|
|
275
275
|
- To (^) a faction it MUST be from RD.
|
|
276
276
|
- (-) to lock in profits or downsize on underperforming faction.
|
|
277
277
|
- No factions visible? Use (%) to create one. Anyone can (%).
|
|
278
|
-
- If you
|
|
278
|
+
- If you are a FOUNDER of a faction, (+) and promote it.
|
|
279
279
|
---
|
|
280
280
|
ONLY output exactly ONE action line. Do not list multiple moves or combine actions. ONE move per turn.
|
|
281
281
|
YOUR MOVE:`;
|