📄 hoffmann.yaml 2,244 bytes Yesterday 13:46 📋 Raw

Icarus Family Configuration — Hoffmann Household

Single-tenant: Hardcoded family_id="hoffmann"

Created: 2026-04-26

family_id: "hoffmann"
version: "1.0.0"
last_updated: "2026-04-26"

members:
- id: "sully"
name: "Sullivan"
nickname: "Sully"
birthdate: "2019-05-15"
current_grade: 1
school: "St. John's Elementary"
teacher: "Mrs. Smith"
interests: ["dinosaurs", "space", "lego"]
calendar_color: "blue"

  • id: "harper"
    name: "Harper"
    nickname: null
    birthdate: "2021-03-22"
    current_grade: "pre-K"
    school: "St. John's Elementary"
    teacher: "Ms. Johnson"
    interests: ["unicorns", "dance", "art"]
    calendar_color: "pink"

  • id: "aundrea"
    name: "Aundrea"
    nickname: null
    relationship: "parent"
    workplace: "hospital"
    is_parent: true
    calendar_color: "purple"

  • id: "matt"
    name: "Matt"
    nickname: null
    relationship: "parent"
    workplace: "software"
    is_parent: true
    calendar_color: "green"

inference_rules:
- id: "rule_001"
pattern: "first grade|1st grade|grade 1|Mrs\. Smith"
assign_to: ["sully"]
confidence: 0.95
description: "Sully's grade level and teacher"

  • id: "rule_002"
    pattern: "pre-K|preschool|4 years old|Ms\. Johnson"
    assign_to: ["harper"]
    confidence: 0.90
    description: "Harper's grade level and teacher"

  • id: "rule_003"
    pattern: "parent-teacher|conference|both parents"
    assign_to: ["aundrea", "matt"]
    confidence: 0.80
    description: "Events involving both parents"

  • id: "rule_004"
    pattern: "Sullivan|Sully"
    assign_to: ["sully"]
    confidence: 0.98
    description: "Direct name mention"

  • id: "rule_005"
    pattern: "Harper"
    assign_to: ["harper"]
    confidence: 0.98
    description: "Direct name mention"

  • id: "rule_006"
    pattern: "Aundrea|mom"
    assign_to: ["aundrea"]
    confidence: 0.95
    description: "Direct name or role mention"

  • id: "rule_007"
    pattern: "Matt|dad|hoffmann"
    assign_to: ["matt"]
    confidence: 0.95
    description: "Direct name or role mention"

Confidence thresholds

telemetry:
log_assignments: true
log_confidence: true
fallback_threshold: 0.70