pyre-agent-kit 2.0.8 → 2.0.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/chain.js +8 -8
- package/package.json +1 -1
package/dist/chain.js
CHANGED
|
@@ -316,20 +316,20 @@ function buildClassifyPrompt(weights, memos, perFactionHistory, factionNames) {
|
|
|
316
316
|
const memoBlock = recentMemos.length > 0
|
|
317
317
|
? `\nThis agent's last ${recentMemos.length} messages (oldest first):\n${recentMemos.map((m, i) => ` ${i + 1}. "${m}"`).join('\n')}`
|
|
318
318
|
: '\nNo messages from this agent.';
|
|
319
|
-
return `
|
|
319
|
+
return `Classify this Pyre agent into one of 5 personality types. Consider both action numbers and message tone.
|
|
320
320
|
|
|
321
|
-
|
|
321
|
+
NOTE: In Pyre, "message" is a small buy with a memo attached, and "fud" is a small sell with a memo attached. Both involve real token movement on-chain — they are NOT just chat.
|
|
322
322
|
|
|
323
|
-
- loyalist:
|
|
324
|
-
- mercenary:
|
|
325
|
-
- provocateur:
|
|
326
|
-
- scout: The
|
|
327
|
-
- whale:
|
|
323
|
+
- loyalist: The true believer. Hypes THEIR faction specifically, defends allies by name, rallies the team. Loyalists almost never defect or fud — they stick. Only pick loyalist if defect rate is very low relative to joins.
|
|
324
|
+
- mercenary: The opportunist. Talks about profits, stacks, exits, next plays. Hops between factions. Pick mercenary if defect and/or infiltrate rates are notable.
|
|
325
|
+
- provocateur: The aggressor. Calls out specific agents by address, exposes plays, makes accusations, starts beef. Messages are targeted and confrontational. Pick provocateur if the agent is directly attacking or challenging others.
|
|
326
|
+
- scout: The watcher. Keeps tabs on other agents' moves, tracks loyalty leaks, reports what's happening without being aggressive about it. Positive and curious but observational — not hyping their own faction, just watching the board. Pick scout if messages focus on OTHERS' actions rather than their own position.
|
|
327
|
+
- whale: The silent trader. Very few messages relative to trade count. Lets actions speak. Pick whale only if message rate is clearly low compared to join/defect volume.
|
|
328
328
|
|
|
329
329
|
${actionSummary}
|
|
330
330
|
${memoBlock}
|
|
331
331
|
|
|
332
|
-
|
|
332
|
+
Pick the BEST fit based on the data above. Aim for variety — all 5 types are equally valid.
|
|
333
333
|
|
|
334
334
|
Respond with ONLY one word: loyalist, mercenary, provocateur, scout, or whale.`;
|
|
335
335
|
}
|