Intent Solutions · Walkthrough
Six steps. The operator decides at the checkpoints, code decides the order, and the model is consulted at exactly one step. Every step cites the file that implements it.
An ideal customer profile, a list of target domains, and a channel. That is the whole input, from the Claude Code skill or the command line.
skills/intent-outreach/SKILL.md · cli.ts
One researcher per domain, fanned out. Data connectors run in the order written in code, free tiers first; a connector with no key set skips itself and is recorded as skipped. Every fact carries its source. The run then checkpoints: the operator reviews the leads before anything else happens.
pipeline_core/pipeline.ts · pipeline_core/connectors/index.ts
Contacts are found, emails verified, and records enriched with signals the draft can use, funding, hiring, team size. Everything is a typed record before it moves on. Second checkpoint: the operator sees who would be contacted.
pipeline_core/pipeline.ts · pipeline_core/models.ts
The compliance gate runs ahead of any drafting: do-not-call lists, TCPA quiet hours, and service area. It is pure, clock-injected, and fails closed, so a contact it cannot clear is blocked. Blocked contacts are recorded on the run with a reason and never reach the model.
pipeline_core/compliance/index.ts · pipeline_core/packs/b2b-sdr.ts
Two model calls per cleared contact: a fit score with reasoning, then a draft grounded in the researched facts. Output is structured and treated as a proposal, never trusted directly. Each message records its model, prompt version, and score. The cost meter records tokens and dollars per call.
pipeline_core/seam.ts · pipeline_core/cost.ts · prompts/
The validator is the only code that can mint the record type the store accepts, so an invalid run cannot be persisted; the compiler and CI both enforce it. The finished run lands in a local file the operator owns, with cost totals and the audit trail attached.
pipeline_core/validator.ts · pipeline_core/store.ts
← Back to the executive brief · See a sample run · What it touches