aid-installer 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,56 @@
1
+ # dashboard/reader/__init__.py
2
+ # Public entry point for the AID state reader (feature-002).
3
+ #
4
+ # Single export: read_repo(aid_root) -> RepoModel
5
+ #
6
+ # Python 3.11+ stdlib only. Zero third-party deps.
7
+ # No write / no LLM / one read-only `git log` subprocess for KB freshness (FR35).
8
+
9
+ from .reader import read_repo, read_repo_detail
10
+ from .models import (
11
+ RepoModel,
12
+ ToolInfo,
13
+ RepoInfo,
14
+ KbStateRef,
15
+ KbStatus,
16
+ KbBaseline,
17
+ WorkModel,
18
+ TaskModel,
19
+ PendingInput,
20
+ ReadMeta,
21
+ Lifecycle,
22
+ Phase,
23
+ TaskStatus,
24
+ # feature-008 LC-TR TaskDetail sub-model (task-069)
25
+ TaskDetail,
26
+ Finding,
27
+ TaskLedger,
28
+ DeferredIssue,
29
+ RawStateRef,
30
+ LogAvailability,
31
+ )
32
+
33
+ __all__ = [
34
+ "read_repo",
35
+ "read_repo_detail",
36
+ "RepoModel",
37
+ "ToolInfo",
38
+ "RepoInfo",
39
+ "KbStateRef",
40
+ "KbStatus",
41
+ "KbBaseline",
42
+ "WorkModel",
43
+ "TaskModel",
44
+ "PendingInput",
45
+ "ReadMeta",
46
+ "Lifecycle",
47
+ "Phase",
48
+ "TaskStatus",
49
+ # feature-008 LC-TR TaskDetail sub-model (task-069)
50
+ "TaskDetail",
51
+ "Finding",
52
+ "TaskLedger",
53
+ "DeferredIssue",
54
+ "RawStateRef",
55
+ "LogAvailability",
56
+ ]