Skip to content

Instantly share code, notes, and snippets.

View anton-pt's full-sized avatar

Anton Tcholakov anton-pt

  • Causaly
  • London, UK
View GitHub Profile
@anton-pt
anton-pt / MeetQuService.ts
Created June 30, 2025 15:20
MeetQu service using Restate
export const MeetQuService = restate.service({
name: 'MeetQuService',
handlers: {
runSearch: restate.handlers.handler(
async (ctx: restate.Context, request): Promise<SearchContext> => {
// Generate short bio in parallel with main pipeline
const shortBioPromise = ctx
.serviceClient(MeetQuService)
.generateShortBio(request);
@anton-pt
anton-pt / example-story.md
Created June 6, 2025 08:22
Example user story for AI coding assistant

Story BRIEF-V2-004: Add Short Bio Interim Flow

Overview

Priority: High | Effort: 4 hours | Dependencies: BRIEF-V2-001, BRIEF-V2-002

Add support for the new shortbio-final message from the backend and implement an engaging interim flow that displays key profile insights while users wait for the full briefing to complete.


Acceptance Criteria

@anton-pt
anton-pt / rfc-template.md
Created June 6, 2025 08:07
Request for Comments template

RFC: Feature Name

One paragraph explanation of the feature.

Motivation

  • What problem does this solve for users?
  • What is the background context needed to understand this problem?
  • Specific use cases where this feature helps users
  • How those use cases are currently handled (if at all)