pyre-agent-kit 4.1.0 → 4.1.1
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 +10 -5
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -322,26 +322,31 @@ FACTIONS where STATUS=ASN: (~)
|
|
|
322
322
|
any FACTIONS: (!), (%)
|
|
323
323
|
--- STRATEGIES:
|
|
324
324
|
- your personality is your tone.
|
|
325
|
+
- no FACTIONS? (%) to create one.
|
|
325
326
|
- (+), (&), (|) and (!) all push MCAP up. (-) and (#) lower it.
|
|
326
327
|
- find information about FACTIONS in INTEL (other agents are labeled with @AP). HLTH is your performance. PNL and SENT are per-faction direction. combine all three to decide.
|
|
327
328
|
- FACTIONS where STATUS=RS may have higher reward if you (+) the right one.
|
|
328
329
|
- (&) and (!) to push FACTIONS where (STATUS=RS,MBR=true) to (STATUS=ASN,MBR=true) if SENT=BULL or SENT=NEUT.
|
|
329
|
-
- (!) and (#) are your voice.
|
|
330
|
-
- no FACTIONS? (%) to create one. anyone can (%).
|
|
330
|
+
- (!) and (#) are your voice.
|
|
331
331
|
- if (FNR=true,MBR=false), consider (+). this is your faction, promote it.
|
|
332
332
|
- limit FACTIONS where MBR=true to AT MOST 5.${memberOf.length > 3 ? ` MBR=true on ${memberOf.length} FACTIONS — consider (-) from underperformers.` : ''}
|
|
333
333
|
- (-) to lock in profits on FACTIONS where (MBR=true,PNL=WIN) or downsize where (MBR=true,PNL=LOSS,SENT=BEAR).
|
|
334
334
|
- (_) to skip this turn if you are comfortable with your current positions and have nothing to say.
|
|
335
335
|
---
|
|
336
|
-
|
|
337
|
-
example format: ${(0, util_1.pick)([
|
|
336
|
+
EXAMPLE: ${(0, util_1.pick)([
|
|
338
337
|
`(+) ${f1} "${(0, util_1.pick)(['rising fast and I want early exposure.', 'count me in.', 'early is everything.', 'strongest faction here.', 'lets go!'])}"`,
|
|
339
338
|
`(&) ${m} "${(0, util_1.pick)(['doubling down.', 'conviction play.', 'added more.'])}"`,
|
|
340
|
-
|
|
339
|
+
])}
|
|
340
|
+
EXAMPLE: ${(0, util_1.pick)([
|
|
341
341
|
`(-) ${m} "${(0, util_1.pick)(['taking profits.', 'time to move on.', 'sentiment is bearish, ready to cut losses.'])}"`,
|
|
342
342
|
`(|) ${f2} "${(0, util_1.pick)(['just looking around.', 'checking the vibes.', 'scouting.', 'sneaking in, opportunity here.'])}"`,
|
|
343
|
+
])}
|
|
344
|
+
EXAMPLE: ${(0, util_1.pick)([
|
|
345
|
+
`(!) ${m} "${(0, util_1.pick)(['love the energy. any strategies?', 'who else is here?', 'just getting started.', 'not leaving.'])}"`,
|
|
343
346
|
`(#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.', 'overvalued.', 'this faction is underperforming.'])}"`,
|
|
344
347
|
])}
|
|
348
|
+
---
|
|
349
|
+
output EXACTLY one line: (action) $ "*" OR (_)
|
|
345
350
|
>`;
|
|
346
351
|
};
|
|
347
352
|
exports.buildCompactModelPrompt = buildCompactModelPrompt;
|