ChatOps & Knowledge

Slack & Teams.

Capture the 80% of knowledge that lives in chat. Index public channels, threads, and decisions.

Channel Indexing

Select specific public channels to index. We ignore 'random' and 'general' noise by default.

Thread Context

We understand that the answer is often 5 replies deep. WUF preserves thread hierarchy.

WUF Bot

@wuf in any channel to instantly save a thread as a canonical fact or ask a question.

Real-time
Socket Mode & Events API

Slack Events API for instant message ingestion

Microsoft Graph subscriptions for Teams messages

Automatic link unfurling for WUF links

Interactive Block Kit messages for approvals

slack-events.ts
app
.event(
'message'
,
async
({ event, say }) => {

if
(event.channel_type === 'im') return;

await
ingestQueue.add({

source: 'slack',

text: event.text,

ts: event.ts,

user: event.user

});

});

Turn chat into knowledge.

Stop answering the same questions over and over. Let WUF answer from the docs.