robot_lab-am 0.0.1

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,119 @@
1
+ site_name: robot_lab-am
2
+ site_description: Activity monitor for the RobotLab LLM agent framework — watches git, Claude Code, and terminal activity to infer what you're working on
3
+ site_author: Dewayne VanHoozer
4
+ site_url: https://madbomber.github.io/robot_lab-am
5
+ copyright: Copyright © 2026 Dewayne VanHoozer
6
+
7
+ repo_name: MadBomber/robot_lab-am
8
+ repo_url: https://github.com/MadBomber/robot_lab-am
9
+ edit_uri: edit/main/docs/
10
+ docs_dir: docs
11
+
12
+ theme:
13
+ name: material
14
+
15
+ palette:
16
+ - scheme: default
17
+ primary: cyan
18
+ accent: amber
19
+ toggle:
20
+ icon: material/brightness-7
21
+ name: Switch to dark mode
22
+
23
+ - scheme: slate
24
+ primary: cyan
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/radar
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-am
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-am
108
+ name: robot_lab-am on GitHub
109
+ - icon: fontawesome/solid/gem
110
+ link: https://rubygems.org/gems/robot_lab-am
111
+ name: robot_lab-am on RubyGems
112
+
113
+ nav:
114
+ - Home: index.md
115
+ - Getting Started: getting-started.md
116
+ - The Daemon: daemon.md
117
+ - How It Works: how-it-works.md
118
+ - Privacy & Redaction: privacy.md
119
+ - CLI Reference: cli-reference.md
@@ -0,0 +1,6 @@
1
+ module RobotLab
2
+ module Am
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,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: robot_lab-am
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Dewayne VanHoozer
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: myway_config
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: ruby_llm
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '1.12'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '1.12'
40
+ description: Standalone background daemon that watches a repo's git activity, Claude
41
+ Code session transcripts, and terminal commands, then infers the current goal/direction
42
+ via a one-shot RubyLLM call to a local model. Writes an intent artifact any tool
43
+ can read — robot_lab-to uses it to seed takeover runs, but nothing here requires
44
+ RobotLab.
45
+ email:
46
+ - dvanhoozer@gmail.com
47
+ executables:
48
+ - am
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - ".envrc"
53
+ - ".github/workflows/deploy-github-pages.yml"
54
+ - ".loki"
55
+ - ".rubocop.yml"
56
+ - Archspec.rb
57
+ - CHANGELOG.md
58
+ - CLAUDE.md
59
+ - LICENSE.txt
60
+ - README.md
61
+ - Rakefile
62
+ - bin/am
63
+ - docs/assets/pipeline.svg
64
+ - docs/cli-reference.md
65
+ - docs/daemon.md
66
+ - docs/getting-started.md
67
+ - docs/how-it-works.md
68
+ - docs/index.md
69
+ - docs/privacy.md
70
+ - lib/robot_lab/am.rb
71
+ - lib/robot_lab/am/cli.rb
72
+ - lib/robot_lab/am/collector.rb
73
+ - lib/robot_lab/am/config.rb
74
+ - lib/robot_lab/am/config/defaults.yml
75
+ - lib/robot_lab/am/daemon.rb
76
+ - lib/robot_lab/am/daemon_controller.rb
77
+ - lib/robot_lab/am/event.rb
78
+ - lib/robot_lab/am/event_log.rb
79
+ - lib/robot_lab/am/heartbeat.rb
80
+ - lib/robot_lab/am/inferrer.rb
81
+ - lib/robot_lab/am/intent.rb
82
+ - lib/robot_lab/am/intent_writer.rb
83
+ - lib/robot_lab/am/launchd.rb
84
+ - lib/robot_lab/am/pid_file.rb
85
+ - lib/robot_lab/am/redactor.rb
86
+ - lib/robot_lab/am/version.rb
87
+ - lib/robot_lab/am/watchers/claude_watcher.rb
88
+ - lib/robot_lab/am/watchers/git_watcher.rb
89
+ - lib/robot_lab/am/watchers/terminal_watcher.rb
90
+ - mkdocs.yml
91
+ - sig/robot_lab/am.rbs
92
+ homepage: https://github.com/MadBomber/robot_lab-am
93
+ licenses:
94
+ - MIT
95
+ metadata:
96
+ homepage_uri: https://github.com/MadBomber/robot_lab-am
97
+ source_code_uri: https://github.com/MadBomber/robot_lab-am
98
+ changelog_uri: https://github.com/MadBomber/robot_lab-am/blob/main/CHANGELOG.md
99
+ rubygems_mfa_required: 'true'
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 3.2.0
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 4.0.20
115
+ specification_version: 4
116
+ summary: Watches terminal, git, and Claude Code activity to infer what you're working
117
+ on.
118
+ test_files: []