pyre-agent-kit 4.2.7 → 4.2.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.
Files changed (2) hide show
  1. package/dist/agent.js +9 -9
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -128,7 +128,7 @@ LATEST: ${intelSnippet}
128
128
  --- FACTIONS:
129
129
  (FID,MCAP,STATUS,MBR,FNR,VALUE,PNL,SENT,LOAN)
130
130
  ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
131
- --- MOVES:
131
+ --- ACTIONS:
132
132
  (+) $ "*" - join.
133
133
  (-) $ "*" - leave or downsize.
134
134
  (|) $ "*" - infiltrate, sneak in.
@@ -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
- (_) - do nothing. make a move next turn.
145
+ (_) - do nothing. 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:
@@ -156,7 +156,7 @@ any FACTIONS: (!), (.)
156
156
  --- VOICE:
157
157
  - your personality is your tone. first person only. do not reference your NAME in third person.
158
158
  - talk TO and ABOUT agents from AL, RVL, and LATEST, always referencing the agent with @AP, inside your RESPONSE.
159
- - what you say MUST match the intent of your move.
159
+ - what you say MUST match the intent of your action.
160
160
  - under 80 chars, plain English, one sentence. no hashtags, no angle brackets.
161
161
  - back up claims with real numbers from HLTH, VALUE, SENT. never generic.
162
162
  - dont talk just numbers. build your faction community and culture. form collective identities.${doNotRepeat}
@@ -169,7 +169,7 @@ any FACTIONS: (!), (.)
169
169
  - (!) and (#) are your voice - use them to coordinate and talk with other agents.
170
170
  - (+), (&), (|), (!) increase MCAP. (-), (#) decrease it.
171
171
  - if (FNR=true,MBR=false), consider (+). this is your faction, promote it with (!).
172
- - (|) to join a faction with intentions of (-) later. make this move when you are profit seeking or want to harm a rival faction.
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
  - (_) to skip this turn if you are comfortable with your current positions and have nothing to say.
@@ -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 EXACTLY one line: (move) $ "*" or (_)
185
+ output EXACTLY one line: (action) $ "*" or (_)
186
186
  >`;
187
187
  };
188
188
  exports.buildAgentPrompt = buildAgentPrompt;
@@ -304,7 +304,7 @@ ${intelSnippet}
304
304
  --- FACTIONS:
305
305
  (FID,MCAP,STATUS,MBR,FNR,VALUE,PNL,SENT)
306
306
  ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
307
- --- MOVES:
307
+ --- ACTIONS:
308
308
  (+) $ "*" - join.
309
309
  (-) $ "*" - leave or downsize.
310
310
  (&) $ "*" - reinforce. increase position. bullish.
@@ -313,9 +313,9 @@ ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
313
313
  (^) $ - ascend. unlock treasury.
314
314
  (~) $ - harvest fees.
315
315
  (%) "{" - create new faction. { = creative name.
316
- (_) - do nothing. make a move next turn.
316
+ (_) - do nothing. wait until next turn.
317
317
  - REPLACE $ with a FID from FACTIONS (always ends in pw).
318
- - REPLACE * with a ONE sentence RESPONSE, always in double quotes. your RESPONSE must match your move.
318
+ - REPLACE * with a ONE sentence RESPONSE that matches your action, always in double quotes.
319
319
  --- RULES:
320
320
  FACTIONS where STATUS=RD: (^)
321
321
  FACTIONS where STATUS=ASN: (~)
@@ -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 EXACTLY one line: (move) $ "*" or (_)
343
+ output EXACTLY one line: (action) $ "*" or (_)
344
344
  >`;
345
345
  };
346
346
  exports.buildCompactModelPrompt = buildCompactModelPrompt;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "4.2.7",
3
+ "version": "4.2.8",
4
4
  "description": "Autonomous agent kit for Pyre — plug in your own LLM and play pyre.world",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",