Noop (follow-up sink)
@notewright/noop-follow-up-provider is a follow-up sink that creates nothing. It
records what would have been created and reports success, so you can exercise
the sync and extraction pipeline end to end without an external task system.
When to use it
Section titled “When to use it”- Notes-only deployments. You want to sync meetings and run extraction, but not file follow-ups anywhere.
- Testing. It is the default sink in the test suite, letting the pipeline run without network access to a real provider.
- Dry runs. Validate that extraction produces sensible action items before pointing it at a real sink like Linear.
Install and compose
Section titled “Install and compose”bun add @notewright/noop-follow-up-providerimport { defineApp } from "@notewright/core";import { noop } from "@notewright/noop-follow-up-provider";
const app = defineApp({ notes: /* your source */, followUp: noop });export default app;Configuration
Section titled “Configuration”The noop provider declares an empty configSchema (no secrets, no vars), so
there is nothing to configure. For each action item it logs a
noop_follow_up_created line with the title, meeting id, and confidence, then
returns a created result with a synthetic id.