Files
Mark b4041622b0 feat(examples): LangGraph interrupt HITL probe for channels
Adds a minimal, runnable test rig for the channels HITL path that nothing in
the repo previously exercised: `onInterrupt` + `thread.resume()`, driven by a
real LangGraph graph that suspends in its checkpointer.

Channels has two unrelated HITL models, and they suspend in different places:

  thread.awaitChoice()   a channel-side tool handler blocks; the agent run
                         stays open; the waiter is an in-memory Map
  onInterrupt/resume     the AGENT's graph suspends; the run ENDS; the click
                         starts a new run carrying the resume value

Only the first had coverage. `examples/integrations/langgraph-python` has zero
`interrupt()` calls, and `examples/slack/e2e/restart-recovery.ts` — written for
this exact path — no longer compiles (it imports `@copilotkit/slack` plus
`appComponents`/`appHitl`, none of which still exist).

What's here:

- `agent-py/` — a LangGraph agent whose `create_thing` tool calls `interrupt()`
  and writes nothing, so the interrupt fires deterministically with no
  Linear/Notion credentials. Served over AG-UI, so the channel dials it
  directly and `runtime.ts` is not involved.
- `agent-py/probe.py` — drives the agent alone (no channel, no Slack).
- `e2e/route-b-interrupt.ts` — drives agent + channel with a `FakeAdapter`
  standing in for the platform, so a failure is unambiguously channels' fault.
  Asserts the resume leaves in the legacy `forwardedProps.command.resume` shape.
- `app/route-b.ts` — the Slack-facing probe, plus a boot-time preflight that
  rejects an unreachable/mangled `AGENT_URL` with a specific diagnosis instead
  of a bare `fetch failed` on the first message.

Two wire facts worth recording, since both fail silently:

- `on_interrupt` is not a label you choose. It's the AG-UI custom event name
  LangGraph's adapter emits, and adapters default `interruptEventNames` to
  exactly that. Rename either side and the graph stays suspended forever.
- the interrupt payload crosses as a JSON *string*. All four real adapters
  parse it before the handler runs; `FakeAdapter` does not, so handlers that
  assume an object work in Slack and break headless. Both handlers here
  normalize defensively.

Nothing in `packages/` changes; this is examples-only.
2026-08-03 08:53:30 +00:00
..

e2e/ — live end-to-end test harness

True end-to-end coverage for the Slack bridge: send real user messages in a real Slack workspace, sample the bot's reply while it's streaming, take screenshots in the middle of long streams, and verify what landed.

Why this exists. Unit tests (under src/__tests__/) lock in the internal contracts of each module — they don't catch issues that only surface end-to-end: an open code fence leaking through the rest of the Slack message during streaming, a mrkdwn translation that looks right in tests but renders weird in Slack's actual client, a Block Kit limit we forgot about, a Bolt event that doesn't fire under some setting.

The catalog at e2e/cases.ts is the source of truth for what "feature-complete" means.

What's in here

e2e/
├── README.md         this
├── cases.ts          catalog of test cases (technical axes; expand liberally)
├── slack-api.ts      Slack Web API helpers (history, thread replies, sampling)
├── run.ts            harness entrypoint — sends prompts, samples, screenshots
└── results/          per-run output: screenshots + JSON report

Running

# from packages/slack/

# one-time: log into Slack once in the playwright browser profile.
# Subsequent runs reuse that profile.
pnpm exec playwright open --browser=chromium --user-data-dir=./e2e/.chrome-profile \
  https://app.slack.com/client/T05QFA4BW9X/C0B49MEJ1HQ

# then:
pnpm e2e

The runner expects .env to already contain SLACK_BOT_TOKEN (used for polling the channel history while the bot streams). Sending the user message happens through the playwright-driven Slack UI using Atai's session cookies from the persistent profile.

How sampling works

For each case the harness:

  1. Sends the prompt via the Slack UI (or /agent slash command).
  2. Polls conversations.replies (or .history for DMs / flat replies) every sampleIntervalMs until maxWaitMs elapses.
  3. At each sample, records:
    • elapsed time
    • bot's reply text snapshot
    • bracket-balance check (isBalanced(text))
  4. At each screenshots[i] offset (ms after send), takes a screenshot of the Slack thread pane via playwright.
  5. After the run, writes results/<timestamp>/report.json and the screenshots.

What this catches that unit tests don't

  • Open code fences leaking through the rest of the Slack message
  • Slack's chat.update rate limits creating visible "jumps"
  • mrkdwn rendering differences vs. our translator's expectations
  • The bot's actual streaming cadence with the model
  • Thread vs DM rendering differences
  • Real concurrency from multiple users in the channel
  • Mid-stream cancellation / kill behaviour

Adding cases

Edit cases.ts. The bar is low — anything you'd want to see working in Slack belongs in the catalog. Don't be afraid of duplication with unit tests; the unit test proves the code is internally correct, the E2E proves Slack actually renders it that way.

Limitations (current)

  • Sending the user message still relies on UI automation (no user token), so a one-time signin in the persistent profile is required.
  • A future enhancement: a long-lived user OAuth token would let us skip the browser entirely for the send step (screenshots still need the browser, but sampling already uses pure API).