Coverage for src / tracekit / onboarding / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 23:04 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 23:04 +0000
1"""Onboarding and help system for TraceKit.
3This package provides interactive tutorials, context-sensitive help,
4and guided analysis features for new users.
5"""
7from tracekit.onboarding.help import (
8 explain_result,
9 get_example,
10 get_help,
11 suggest_commands,
12)
13from tracekit.onboarding.tutorials import (
14 Tutorial,
15 TutorialStep,
16 get_tutorial,
17 list_tutorials,
18 run_tutorial,
19)
20from tracekit.onboarding.wizard import (
21 AnalysisWizard,
22 WizardStep,
23 run_wizard,
24)
26__all__ = [
27 "AnalysisWizard",
28 "Tutorial",
29 "TutorialStep",
30 "WizardStep",
31 "explain_result",
32 "get_example",
33 "get_help",
34 "get_tutorial",
35 "list_tutorials",
36 "run_tutorial",
37 "run_wizard",
38 "suggest_commands",
39]