You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(analytics): identify the user so feature flags can target by email
identifyUser sets the distinct id and person properties (email, name) before flag evaluation, and getFeatureFlag/getAllFlagsForWizard now send them. Previously the wizard sent only $app_name, so email-targeted flags never matched.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/lib/programs/orchestrator/agent-prompt-loader.ts
+25-2Lines changed: 25 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,30 @@ const TASK_BASICS = `You are one isolated task in a larger PostHog workflow, run
51
51
52
52
constSEED_BASICS=`You are the orchestrator. Plan the work and seed the queue with enqueue_task — each call returns an id you can pass as a dependency to a later task. Give each task a short label for the UI — the action in a few words, not file names, class names, or other specifics. You are not a task yourself: do not call complete_task and do not edit the project.`;
53
53
54
+
/**
55
+
* Points the agent at its installed task instructions (the HOW). They live under
56
+
* the wizard's run dir, not `.claude/skills/`, so the SDK does not auto-load
0 commit comments