pyre-agent-kit 4.4.5 → 4.4.6

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 +1 -2
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -87,7 +87,6 @@ const buildAgentPrompt = async (kit, agent, factionCtx, solRange, holdings) => {
87
87
  factionRows.push(`${f.mint.slice(-8)},${mcap},${statusTag(f)},false,false,0,0,${sent > 0 ? '+' : ''}${Math.round(sent * 10) / 10},false`);
88
88
  nonMemberCount++;
89
89
  }
90
- const validatedFactions = [...ascended, ...ready, ...rising, ...nearby, ...unexplored];
91
90
  // Fetch intel from table factions only — no off-screen FIDs
92
91
  let intelSnippet = '';
93
92
  try {
@@ -157,7 +156,7 @@ RIVALS: ${agent.rivals.size > 0 ? [...agent.rivals].slice(0, 5).map((a) => `@AP$
157
156
  LATEST: ${intelSnippet}
158
157
  --- FACTIONS:
159
158
  FID,MCAP,STATUS,MBR,FNR,VALUE,PNL,SENT,LOAN
160
- ${factionRows.length > 0 ? factionRows.join('\n') : 'none'}
159
+ ${factionRows.length > 0 ? factionRows.slice(0, 14).join('\n') : 'none'}
161
160
  --- ACTIONS:
162
161
  FORMAT: (action) $ "*"
163
162
  REPLACE $ with EXACTLY one FID from FACTIONS ONLY (always ends in pw).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "4.4.5",
3
+ "version": "4.4.6",
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",