robot_lab-audit 0.2.6

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.
data/mkdocs.yml ADDED
@@ -0,0 +1,117 @@
1
+ site_name: robot_lab-audit
2
+ site_description: SQLite-backed execution audit log for the RobotLab LLM agent framework
3
+ site_author: Dewayne VanHoozer
4
+ site_url: https://madbomber.github.io/robot_lab-audit
5
+ copyright: Copyright © 2026 Dewayne VanHoozer
6
+
7
+ repo_name: MadBomber/robot_lab-audit
8
+ repo_url: https://github.com/MadBomber/robot_lab-audit
9
+ edit_uri: edit/main/docs/
10
+ docs_dir: docs
11
+
12
+ theme:
13
+ name: material
14
+
15
+ palette:
16
+ - scheme: default
17
+ primary: teal
18
+ accent: amber
19
+ toggle:
20
+ icon: material/brightness-7
21
+ name: Switch to dark mode
22
+
23
+ - scheme: slate
24
+ primary: teal
25
+ accent: amber
26
+ toggle:
27
+ icon: material/brightness-4
28
+ name: Switch to light mode
29
+
30
+ font:
31
+ text: Roboto
32
+ code: Roboto Mono
33
+
34
+ icon:
35
+ repo: fontawesome/brands/github
36
+ logo: material/clipboard-text-clock
37
+
38
+ features:
39
+ - navigation.instant
40
+ - navigation.tracking
41
+ - navigation.tabs
42
+ - navigation.tabs.sticky
43
+ - navigation.path
44
+ - navigation.indexes
45
+ - navigation.top
46
+ - navigation.footer
47
+ - toc.follow
48
+ - search.suggest
49
+ - search.highlight
50
+ - search.share
51
+ - header.autohide
52
+ - content.code.copy
53
+ - content.code.annotate
54
+ - content.tabs.link
55
+ - content.tooltips
56
+ - content.action.edit
57
+ - content.action.view
58
+
59
+ plugins:
60
+ - search:
61
+ separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
62
+
63
+ markdown_extensions:
64
+ - abbr
65
+ - admonition
66
+ - attr_list
67
+ - def_list
68
+ - footnotes
69
+ - md_in_html
70
+ - tables
71
+ - toc:
72
+ permalink: true
73
+ title: On this page
74
+ - pymdownx.betterem:
75
+ smart_enable: all
76
+ - pymdownx.caret
77
+ - pymdownx.details
78
+ - pymdownx.emoji:
79
+ emoji_generator: !!python/name:material.extensions.emoji.to_svg
80
+ emoji_index: !!python/name:material.extensions.emoji.twemoji
81
+ - pymdownx.highlight:
82
+ anchor_linenums: true
83
+ line_spans: __span
84
+ pygments_lang_class: true
85
+ - pymdownx.inlinehilite
86
+ - pymdownx.magiclink:
87
+ repo_url_shorthand: true
88
+ user: MadBomber
89
+ repo: robot_lab-audit
90
+ normalize_issue_symbols: true
91
+ - pymdownx.mark
92
+ - pymdownx.smartsymbols
93
+ - pymdownx.superfences:
94
+ custom_fences:
95
+ - name: mermaid
96
+ class: mermaid
97
+ format: !!python/name:pymdownx.superfences.fence_code_format
98
+ - pymdownx.tabbed:
99
+ alternate_style: true
100
+ - pymdownx.tasklist:
101
+ custom_checkbox: true
102
+ - pymdownx.tilde
103
+
104
+ extra:
105
+ social:
106
+ - icon: fontawesome/brands/github
107
+ link: https://github.com/MadBomber/robot_lab-audit
108
+ name: robot_lab-audit on GitHub
109
+ - icon: fontawesome/solid/gem
110
+ link: https://rubygems.org/gems/robot_lab-audit
111
+ name: robot_lab-audit on RubyGems
112
+
113
+ nav:
114
+ - Home: index.md
115
+ - Getting Started: getting_started.md
116
+ - How It Works: how_it_works.md
117
+ - Querying the Log: querying.md
@@ -0,0 +1,6 @@
1
+ module RobotLab
2
+ module Audit
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: robot_lab-audit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.6
5
+ platform: ruby
6
+ authors:
7
+ - Dewayne VanHoozer
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: robot_lab
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0.1'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0.1'
26
+ - !ruby/object:Gem::Dependency
27
+ name: sqlite3
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.0'
40
+ description: Appends structured records for network runs, robot invocations, and tool
41
+ calls to a SQLite database for post-mortem analysis.
42
+ email:
43
+ - dvanhoozer@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".envrc"
49
+ - ".github/workflows/deploy-github-pages.yml"
50
+ - ".loki"
51
+ - ".quality/reek_baseline.txt"
52
+ - ".rubocop.yml"
53
+ - CHANGELOG.md
54
+ - CLAUDE.md
55
+ - COMMITS.md
56
+ - LICENSE.txt
57
+ - README.md
58
+ - Rakefile
59
+ - docs/getting_started.md
60
+ - docs/how_it_works.md
61
+ - docs/index.md
62
+ - docs/querying.md
63
+ - examples/01_basic_usage.rb
64
+ - examples/common.rb
65
+ - lib/robot_lab/audit.rb
66
+ - lib/robot_lab/audit/event_log.rb
67
+ - lib/robot_lab/audit/hook.rb
68
+ - lib/robot_lab/audit/version.rb
69
+ - mkdocs.yml
70
+ - sig/robot_lab/audit.rbs
71
+ homepage: https://github.com/MadBomber/robot_lab-audit
72
+ licenses:
73
+ - MIT
74
+ metadata:
75
+ homepage_uri: https://github.com/MadBomber/robot_lab-audit
76
+ source_code_uri: https://github.com/MadBomber/robot_lab-audit
77
+ changelog_uri: https://github.com/MadBomber/robot_lab-audit/blob/main/CHANGELOG.md
78
+ rubygems_mfa_required: 'true'
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: 3.2.0
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubygems_version: 4.0.17
94
+ specification_version: 4
95
+ summary: SQLite-backed execution audit log for RobotLab via the Hook system.
96
+ test_files: []