core.types¶
Pydantic models for the core data contracts.
FeatureRow identity fields¶
Every FeatureRow carries stable identity columns alongside the schema
metadata and feature values:
| Field | Type | Description |
|---|---|---|
user_id |
str |
Random UUID identifying the user (not PII). |
device_id |
str \| None |
Optional device identifier. |
session_id |
str |
Deterministic session identifier derived from user_id + session start timestamp. |
bucket_start_ts |
datetime |
Start of the 60 s bucket (UTC, inclusive). |
bucket_end_ts |
datetime |
End of the 60 s bucket (UTC, exclusive). |
The primary key is (user_id, bucket_start_ts).
LabelSpan fields¶
LabelSpan represents a contiguous time span carrying a single task-type
label. Gold labels and weak labels share this structure. During validation,
all timestamps are normalized to timezone-aware UTC via ts_utc_aware_get()
so persisted label spans and in-memory comparisons use a single timestamp
convention. Legacy naive inputs (from CSV, Parquet, or API) are accepted and
treated as UTC on read.
| Field | Type | Description |
|---|---|---|
start_ts |
datetime |
Span start (aware UTC, inclusive). |
end_ts |
datetime |
Span end (aware UTC, exclusive). |
label |
str |
Task-type label from LABEL_SET_V1. |
provenance |
str |
Origin tag, e.g. "manual" or "weak:app_rule". |
user_id |
str \| None |
User who created this label (optional, default None). |
confidence |
float \| None |
Labeler confidence 0-1 (optional, default None). NaN is coerced to None. |
TitlePolicy¶
TitlePolicy controls whether raw window titles may appear in a
FeatureRow.
| Member | Value | Behaviour |
|---|---|---|
HASH_ONLY |
"hash_only" |
Default. All raw_* fields are rejected. |
RAW_WINDOW_TITLE_OPT_IN |
"raw_window_title_opt_in" |
raw_window_title is accepted but excluded from model_dump(), preventing leakage into data/processed/. All other raw_* fields remain prohibited. |
Pass the policy via Pydantic validation context:
from taskclf.core.types import FeatureRow, TitlePolicy
row = FeatureRow.model_validate(
data,
context={"title_policy": TitlePolicy.RAW_WINDOW_TITLE_OPT_IN},
)
row.raw_window_title # available on the instance
row.model_dump() # raw_window_title is NOT included
taskclf.core.types
¶
Core data contracts: Event protocol, feature rows, and label spans.
Event
¶
Bases: Protocol
Normalized activity event contract.
Any adapter event type that exposes these read-only attributes
satisfies the protocol -- no inheritance required. For example,
:class:~taskclf.adapters.activitywatch.types.AWEvent is a valid
Event without importing or subclassing this protocol.
Source code in src/taskclf/core/types.py
CoreLabel
¶
Bases: StrEnum
Canonical task-type labels (v1).
Member ordering matches schema/labels_v1.json label IDs.
Do NOT reorder or remove members without a version bump.
Source code in src/taskclf/core/types.py
TitlePolicy
¶
Bases: StrEnum
Controls whether raw window titles may appear in a :class:FeatureRow.
HASH_ONLY (default)
All raw_* fields are rejected — the standard privacy mode.
RAW_WINDOW_TITLE_OPT_IN
raw_window_title is accepted (but still excluded from
model_dump() so it can never leak into data/processed/).
All other raw_* fields remain prohibited.
Pass the policy via Pydantic validation context::
FeatureRow.model_validate(data, context={"title_policy": TitlePolicy.RAW_WINDOW_TITLE_OPT_IN})
Source code in src/taskclf/core/types.py
FeatureRowBase
¶
Bases: BaseModel
One bucketed observation (typically 60 s).
All persisted feature rows carry schema metadata so downstream consumers can detect silent drift.
Fields are grouped into four sections:
- meta —
bucket_start_ts,schema_version,schema_hash,source_ids. - context —
app_id,app_category,window_title_hash,is_browser,is_editor,is_terminal,app_switch_count_last_5m,app_foreground_time_ratio,app_change_count,app_dwell_time_seconds,app_entropy_5m,app_entropy_15m,top2_app_concentration_15m,idle_return_indicator. - keyboard / mouse — nullable until the corresponding collector is
wired (
keys_per_min,backspace_ratio,shortcut_rate,clicks_per_min,scroll_events_per_min,mouse_distance). - activity occupancy — nullable; derived from
aw-watcher-input(active_seconds_keyboard,active_seconds_mouse,active_seconds_any,max_idle_run_seconds,event_density). - temporal —
hour_of_day,day_of_week,session_length_so_far.
A pre-validator rejects any field whose name starts with raw_ to
enforce the privacy invariant (no raw keystrokes / titles). The
single exception is raw_window_title, which is accepted when
validation context carries title_policy=TitlePolicy.RAW_WINDOW_TITLE_OPT_IN.
Even then, the field is excluded from model_dump() so it cannot
leak into persisted datasets.
Source code in src/taskclf/core/types.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | |
LabelSpan
¶
Bases: BaseModel
A contiguous time span carrying a single task-type label.
Gold labels and weak labels share this structure; provenance
distinguishes them (e.g. "manual" vs "weak:app_rule").
Optional user_id ties the span to a specific user (required for
multi-user datasets and block-to-window projection). Optional
confidence records the labeler's self-assessed certainty.
Both default to None for backward compatibility with existing
label CSV imports.