lookupBoundTaskSlug returns the slug of the bound task, or "" if the session is unbound. Thin wrapper over lookupBoundTask.
()
| 145 | // lookupBoundTaskSlug returns the slug of the bound task, or "" if the |
| 146 | // session is unbound. Thin wrapper over lookupBoundTask. |
| 147 | func lookupBoundTaskSlug() string { |
| 148 | if t := lookupBoundTask(); t != nil { |
| 149 | return t.Slug |
| 150 | } |
| 151 | return "" |
| 152 | } |
| 153 | |
| 154 | // emitAmbientSkillHint is the unbound-session branch of the |
| 155 | // SessionStart hook. The user has installed flow — a personal task/ |
no test coverage detected