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
The current synthesis prompt in scripts/skill-synthesizer.ts already weaves in TF-IDF keywords and facets-derived summaries, but it never sees the moments humans explicitly flagged as valuable.
What
Inject summaries of bookmarked turns into the Skill synthesis prompt (kept short — the goal is signal, not transcript replay).
Use tag semantics:
reusable → boost the moment as positive evidence for the Skill candidate.
anti-pattern → include as a counter-example, with explicit guidance to avoid this pattern.
Add a humanSignal term to the reusability score so bookmarked clusters rank higher.
Why
scripts/skill-synthesizer.tsalready weaves in TF-IDF keywords and facets-derived summaries, but it never sees the moments humans explicitly flagged as valuable.What
reusable→ boost the moment as positive evidence for the Skill candidate.anti-pattern→ include as a counter-example, with explicit guidance to avoid this pattern.humanSignalterm to the reusability score so bookmarked clusters rank higher.How
buildSynthesisPrompt(or whatever it ends up being called).--use-human-feedback) initially so we can A/B against the no-feedback baseline.Depends on