@friendlyrobot/discord-pi-agent 0.19.16 → 0.19.17

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/index.js +0 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -324,9 +324,6 @@ async function runAgentTurn(session, prompt, options = {}) {
324
324
  const input = event.toolName === "bash" ? event.args.command : event.args;
325
325
  toolInputsByCallId.set(event.toolCallId, input);
326
326
  if (event.toolName === "bash") {
327
- logger4.debug({
328
- toolName: event.toolName
329
- }, `agent tool start: [${event.toolName}]`);
330
327
  debugPrint(input, "CMD");
331
328
  } else {
332
329
  logger4.debug({
@@ -1551,11 +1548,9 @@ function buildDiscordPromptContent(message, scope, content, config) {
1551
1548
  }
1552
1549
  async function handleDiscordMessage(message, config, agentService, sessionRegistry, accessConfig) {
1553
1550
  if (message.author.bot) {
1554
- logger11.debug("ignored bot message");
1555
1551
  return;
1556
1552
  }
1557
1553
  if (message.system) {
1558
- logger11.debug({ messageId: message.id }, "ignored system message");
1559
1554
  return;
1560
1555
  }
1561
1556
  const scope = resolveMessageScope(message);
@@ -1591,11 +1586,7 @@ ${attachment.content}`;
1591
1586
  return;
1592
1587
  }
1593
1588
  logger11.info({
1594
- direction: "IN",
1595
1589
  scope,
1596
- messageId: message.id,
1597
- authorId: message.author.id,
1598
- channelType: message.channel.type,
1599
1590
  content
1600
1591
  }, "message received");
1601
1592
  const channelKey = message.channel.id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friendlyrobot/discord-pi-agent",
3
- "version": "0.19.16",
3
+ "version": "0.19.17",
4
4
  "description": "Reusable Discord gateway for persistent pi agent sessions",
5
5
  "license": "MIT",
6
6
  "type": "module",