Files
Abiba b6fa3da540 fix: Zulip attachment handling — event attachments + all file types
hermes-zulip-plugin (Tanko/Mumuni):
  - Add _extract_event_attachments() to handle message.attachments from
    Zulip UI file uploads (previously only inline markdown links worked)
  - Add shared _cache_attachment() method for images/audio/documents
  - Refactor _extract_inline_media() to use _cache_attachment()
  - Fix connect() signature for hermes-agent 0.18.0 compat (add is_reconnect)

pi-zulip-extension (Abiba):
  - Extend attachment handling beyond images only: text files (decoded
    inline), PDFs (pdftotext extraction), binary files (metadata)
  - 50K char cap on text/PDF extraction to prevent context flooding
  - Classify attachments by extension (image/text/pdf/binary)

pi-mcp-extension (Abiba):
  - Detect bridge-side text truncation (… ellipsis marker)
  - Rebuild relay message display from structuredContent when truncated
  - Add rebuildRelayTextFromStructuredContent() helper

Config:
  - Add ZULIP_ROLE=router to ecosystem.abiba.config.cjs (was missing)
2026-07-05 16:03:32 +00:00
..

Abiba Zulip Gateway — Standalone Service

Replaces the old pi extension (~/.pi/agent/extensions/zulip/).

Instead of injecting messages into pi's session (which dies when pi exits), this runs as an independent Node.js systemd service that:

  • Polls Zulip event queue for DMs
  • Calls the harness inference API directly (no pi dependency)
  • Maintains per-sender conversation memory
  • Survives pi shutdown and restart

Architecture

Zulip event queue → poll every 3s → DM detected
  → send typing indicator + placeholder
  → POST /v1/chat/completions with conversation history
  → edit placeholder with final response

Requirements

  • Node.js 22+
  • npm install in this directory

Config

All config via environment variables. Copy abiba-zulip.service to set up as a systemd service, or run directly:

ZULIP_EMAIL=abiba-bot@chat.sysloggh.net \
ZULIP_API_KEY=your_key \
ZULIP_SITE=https://chat.sysloggh.net \
HARNESS_URL=http://192.168.68.116/v1/chat/completions \
HARNESS_API_KEY=sk-xxx \
HARNESS_MODEL=qwen3.6-35B-A3B \
node dist/index.js

Deploy as a service

# 1. Install deps
cd /opt/abiba-zulip
npm install

# 2. Build
npx tsc

# 3. Install systemd service
cp abiba-zulip.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable abiba-zulip
systemctl start abiba-zulip

# 4. Check status
systemctl status abiba-zulip
journalctl -u abiba-zulip -f

# 5. Health check
curl http://127.0.0.1:9200/health

Development

npm run dev    # watch mode (tsc watch)
npm run build  # compile
npm start      # run compiled