buildlog 0.4.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

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.
Files changed (28) hide show
  1. buildlog/cli.py +799 -3
  2. buildlog/core/__init__.py +34 -0
  3. buildlog/core/operations.py +925 -0
  4. buildlog/mcp/server.py +16 -0
  5. buildlog/mcp/tools.py +266 -1
  6. buildlog/seed_engine/__init__.py +74 -0
  7. buildlog/seed_engine/categorizers.py +145 -0
  8. buildlog/seed_engine/extractors.py +148 -0
  9. buildlog/seed_engine/generators.py +144 -0
  10. buildlog/seed_engine/models.py +113 -0
  11. buildlog/seed_engine/pipeline.py +202 -0
  12. buildlog/seed_engine/sources.py +362 -0
  13. buildlog/seeds.py +211 -0
  14. buildlog/skills.py +26 -3
  15. buildlog-0.6.0.dist-info/METADATA +490 -0
  16. buildlog-0.6.0.dist-info/RECORD +38 -0
  17. buildlog-0.4.0.dist-info/METADATA +0 -894
  18. buildlog-0.4.0.dist-info/RECORD +0 -30
  19. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/copier.yml +0 -0
  20. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/post_gen.py +0 -0
  21. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/template/buildlog/.gitkeep +0 -0
  22. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/template/buildlog/2026-01-01-example.md +0 -0
  23. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/template/buildlog/BUILDLOG_SYSTEM.md +0 -0
  24. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/template/buildlog/_TEMPLATE.md +0 -0
  25. {buildlog-0.4.0.data → buildlog-0.6.0.data}/data/share/buildlog/template/buildlog/assets/.gitkeep +0 -0
  26. {buildlog-0.4.0.dist-info → buildlog-0.6.0.dist-info}/WHEEL +0 -0
  27. {buildlog-0.4.0.dist-info → buildlog-0.6.0.dist-info}/entry_points.txt +0 -0
  28. {buildlog-0.4.0.dist-info → buildlog-0.6.0.dist-info}/licenses/LICENSE +0 -0
buildlog/core/__init__.py CHANGED
@@ -2,17 +2,33 @@
2
2
 
3
3
  from buildlog.core.operations import (
4
4
  DiffResult,
5
+ EndSessionResult,
5
6
  LearnFromReviewResult,
7
+ LogMistakeResult,
8
+ LogRewardResult,
9
+ Mistake,
6
10
  PromoteResult,
7
11
  RejectResult,
8
12
  ReviewIssue,
9
13
  ReviewLearning,
14
+ RewardEvent,
15
+ RewardSummary,
16
+ Session,
17
+ SessionMetrics,
18
+ StartSessionResult,
10
19
  StatusResult,
11
20
  diff,
21
+ end_session,
12
22
  find_skills_by_ids,
23
+ get_experiment_report,
24
+ get_rewards,
25
+ get_session_metrics,
13
26
  learn_from_review,
27
+ log_mistake,
28
+ log_reward,
14
29
  promote,
15
30
  reject,
31
+ start_session,
16
32
  status,
17
33
  )
18
34
 
@@ -24,10 +40,28 @@ __all__ = [
24
40
  "ReviewIssue",
25
41
  "ReviewLearning",
26
42
  "LearnFromReviewResult",
43
+ "RewardEvent",
44
+ "LogRewardResult",
45
+ "RewardSummary",
46
+ # Session tracking
47
+ "Session",
48
+ "Mistake",
49
+ "SessionMetrics",
50
+ "StartSessionResult",
51
+ "EndSessionResult",
52
+ "LogMistakeResult",
27
53
  "status",
28
54
  "promote",
29
55
  "reject",
30
56
  "diff",
31
57
  "find_skills_by_ids",
32
58
  "learn_from_review",
59
+ "log_reward",
60
+ "get_rewards",
61
+ # Session tracking operations
62
+ "start_session",
63
+ "end_session",
64
+ "log_mistake",
65
+ "get_session_metrics",
66
+ "get_experiment_report",
33
67
  ]