Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9541e77
upgrade llm_gateway
billybonks Apr 3, 2026
cdb53d3
feat: db management tools
billybonks Mar 14, 2026
6d8a5a2
feat: create communication integration layer
billybonks Mar 14, 2026
48860d7
telegram writer
billybonks Feb 27, 2026
f31f862
feat: discord writer
billybonks Feb 27, 2026
7b2d182
feat: add sql session manager for daemon mode
billybonks Feb 27, 2026
0c05dad
smoke tester
billybonks Feb 27, 2026
83f1e5c
feat: spawn clone tool
billybonks Mar 14, 2026
9af4eda
add assembly client
billybonks Mar 20, 2026
e6a5839
system prompt
billybonks Mar 20, 2026
6e1b7e1
feat: gruv agent
billybonks Mar 14, 2026
013ddc3
unify setup
billybonks Mar 14, 2026
a4a59b7
reload tool
billybonks Mar 14, 2026
5566a9f
docs
billybonks Mar 14, 2026
73710fc
setup script
billybonks Mar 14, 2026
5a1f1b9
fix: file session manager
billybonks Mar 18, 2026
13c7f5a
fixup! refactor: move tools to lib directory
billybonks Apr 3, 2026
74a36ca
fix compaction for structured streaming responses
billybonks Apr 4, 2026
6a69c6a
record portable random file sampling lesson
billybonks Apr 4, 2026
a8e10df
record session_events schema inspection lesson
billybonks Apr 4, 2026
96094ce
fix: ensure clone does not waste token trying to respond
billybonks Apr 12, 2026
c725228
remove reasoning effort and model setup since that is not read anymor
billybonks Apr 12, 2026
c23af89
clean up some duplicate and vestigial code
billybonks Apr 12, 2026
5a32e89
refactor: deslopification
billybonks Apr 15, 2026
15abf13
refactor: remove the random eventable stuff and rely on block events
billybonks Apr 17, 2026
d23f1f1
refactor: use active support structed events for logs
billybonks Apr 20, 2026
25a1ef9
fix ensure chats get cached
billybonks Apr 20, 2026
6d51854
fix: we were adding empty user messages into transcript
billybonks Apr 20, 2026
84e497c
feat: add a way to see transcripts
billybonks Apr 23, 2026
2209ed7
load writer registrations before agent tools
billybonks Apr 27, 2026
effc049
refactor: rearrange all the code
billybonks Apr 27, 2026
b4837d8
feature: add transcript viewer to supervisor
billybonks Apr 27, 2026
af28a39
refactor: isolate code and change the way we load tools
billybonks Apr 27, 2026
9c60b34
add rubocop
billybonks Apr 27, 2026
356721c
clean up system prompt code as anthropic caching is auto injected
billybonks Apr 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:
pull_request:

jobs:
rubocop:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run RuboCop
run: bundle exec rubocop
7 changes: 7 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
inherit_from: .rubocop_todo.yml

inherit_gem:
rubocop-shopify: rubocop.yml

AllCops:
NewCops: enable
Loading
Loading