zillacore 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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +126 -0
- data/README.md +1166 -0
- data/Rakefile +12 -0
- data/bin/zillacore +1521 -0
- data/certs/stowzilla.pem +26 -0
- data/docs/waybar-config.md +96 -0
- data/lib/user_registry.rb +159 -0
- data/lib/zillacore/agents.rb +203 -0
- data/lib/zillacore/brain.rb +197 -0
- data/lib/zillacore/card_index.rb +389 -0
- data/lib/zillacore/config.rb +263 -0
- data/lib/zillacore/cron.rb +629 -0
- data/lib/zillacore/deployments.rb +258 -0
- data/lib/zillacore/handlers/discord.rb +1643 -0
- data/lib/zillacore/handlers/fizzy.rb +1249 -0
- data/lib/zillacore/handlers/github.rb +598 -0
- data/lib/zillacore/handlers/zoho.rb +487 -0
- data/lib/zillacore/helpers.rb +760 -0
- data/lib/zillacore/planning.rb +237 -0
- data/lib/zillacore/prompts.rb +620 -0
- data/lib/zillacore/sessions.rb +282 -0
- data/lib/zillacore/skills.rb +276 -0
- data/lib/zillacore/users.rb +76 -0
- data/lib/zillacore/version.rb +6 -0
- data/lib/zillacore/zoho_mail_api.rb +109 -0
- data/lib/zillacore.rb +10 -0
- data/monitor/daemon.rb +99 -0
- data/monitor/deploy-env-macos.rb +131 -0
- data/monitor/menubar.rb +295 -0
- data/monitor/open-action.sh +15 -0
- data/monitor/setup-menubar.rb +78 -0
- data/monitor/setup-waybar-deploy-envs.rb +121 -0
- data/monitor/setup-waybar-deployments.rb +96 -0
- data/monitor/setup-waybar-module.rb +113 -0
- data/monitor/setup-xbar-plugin.rb +35 -0
- data/monitor/view-logs-macos.rb +210 -0
- data/monitor/view-logs-rofi.rb +194 -0
- data/monitor/view-logs.rb +119 -0
- data/monitor/waybar-config-updater.rb +56 -0
- data/monitor/waybar-deploy-env.rb +206 -0
- data/monitor/waybar-deployments.rb +239 -0
- data/monitor/waybar.rb +146 -0
- data/monitor/xbar.3s.rb +179 -0
- data/receiver.rb +956 -0
- data/templates/agents.json.example +10 -0
- data/templates/discord.json.example +17 -0
- data/templates/fizzy.json.example +24 -0
- data/templates/github.json.example +4 -0
- data/templates/testflight.json.example +8 -0
- data/templates/users.json.example +121 -0
- data/templates/zoho.json.example +27 -0
- data/views/dashboard.erb +437 -0
- data/zillacore.gemspec +30 -0
- data.tar.gz.sig +2 -0
- metadata +235 -0
- metadata.gz.sig +0 -0
data/zillacore.gemspec
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
require_relative "lib/zillacore/version"
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = "zillacore"
|
|
5
|
+
s.version = ZillaCore::VERSION
|
|
6
|
+
s.summary = "AI agent webhook receiver and dispatcher"
|
|
7
|
+
s.description = "Webhook receiver that listens for Fizzy, GitHub, Discord, and Zoho Mail events, then dispatches work to AI agent CLIs."
|
|
8
|
+
s.authors = ["Andy Davis"]
|
|
9
|
+
s.homepage = "https://github.com/stowzilla/zillacore"
|
|
10
|
+
s.license = "MIT"
|
|
11
|
+
s.required_ruby_version = ">= 3.4"
|
|
12
|
+
|
|
13
|
+
s.cert_chain = ["certs/stowzilla.pem"]
|
|
14
|
+
signing_key_path = File.expand_path("~/.ssh/gem-private_key.pem")
|
|
15
|
+
s.signing_key = signing_key_path if File.exist?(signing_key_path)
|
|
16
|
+
|
|
17
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?("test/", "tmp/", ".") }
|
|
18
|
+
s.executables = ["zillacore"]
|
|
19
|
+
|
|
20
|
+
s.add_dependency "puma", "~> 7.2"
|
|
21
|
+
s.add_dependency "rackup", "~> 2.3"
|
|
22
|
+
s.add_dependency "sinatra", "~> 4.1"
|
|
23
|
+
s.add_dependency "websocket-client-simple", "~> 0.8.0"
|
|
24
|
+
|
|
25
|
+
s.add_development_dependency "minitest", "~> 5.25"
|
|
26
|
+
s.add_development_dependency "rake", "~> 13.0"
|
|
27
|
+
s.add_development_dependency "rubocop", "~> 1.75"
|
|
28
|
+
s.add_development_dependency "rubocop-performance", "~> 1.25"
|
|
29
|
+
s.metadata["rubygems_mfa_required"] = "true"
|
|
30
|
+
end
|
data.tar.gz.sig
ADDED
metadata
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: zillacore
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andy Davis
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain:
|
|
10
|
+
- |
|
|
11
|
+
-----BEGIN CERTIFICATE-----
|
|
12
|
+
MIIEdDCCAtygAwIBAgIBATANBgkqhkiG9w0BAQsFADBAMQ4wDAYDVQQDDAVhZ2Vu
|
|
13
|
+
dDEZMBcGCgmSJomT8ixkARkWCXN0b3d6aWxsYTETMBEGCgmSJomT8ixkARkWA2Nv
|
|
14
|
+
bTAeFw0yNjA2MDgxOTExNTlaFw0yNzA2MDgxOTExNTlaMEAxDjAMBgNVBAMMBWFn
|
|
15
|
+
ZW50MRkwFwYKCZImiZPyLGQBGRYJc3Rvd3ppbGxhMRMwEQYKCZImiZPyLGQBGRYD
|
|
16
|
+
Y29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAupBquKI/4WvXOgND
|
|
17
|
+
pXyqH2GllZs1wG4TWWdn/DoMg45UoCwD+AWEuGrIdInBCpPN8vEJNJWPoM/RrU+b
|
|
18
|
+
xRBZT4uUk00bnZRW2SYh5GJSqBoBR+rWc2DGkXyGfdRU2sQvkB0+is6ChgQ61WMM
|
|
19
|
+
33LE9+loBlVsZ6EVtrc18Uh2OW0mJpe0hN2nmBrxZqqOZigxC4DKRMFHvpRkxSb6
|
|
20
|
+
mD4kit1AcwX9NEWJsXxrPaetL/SB/VbXaEZX93XAvp6USaXvCWt4slkDS2mIvqtn
|
|
21
|
+
9DtGC43LFC7SDGbnsG9PVenQgVCi8UWFPUAab0PqZSlmi3Qlbhw8qTGPp5Cbv4vz
|
|
22
|
+
qjC2UGPOQigA/7lbbGRhCohMrjOVHMAQwkcgiIqtolUoYlnvPMIy+m3pdvgDv/PH
|
|
23
|
+
bsZGvXQ7i0458xsmp1vaKthZocVAR+GboHbuIiYPUnO45ccXUQ00x6365tTe7mZi
|
|
24
|
+
NvmUYdAGbQmVvFqyxF7IYA6sF74L2Lstu0knSfss557bAe1HAgMBAAGjeTB3MAkG
|
|
25
|
+
A1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSnxTL/lNBCeLqpeVIX6AUY
|
|
26
|
+
kel4zjAeBgNVHREEFzAVgRNhZ2VudEBzdG93emlsbGEuY29tMB4GA1UdEgQXMBWB
|
|
27
|
+
E2FnZW50QHN0b3d6aWxsYS5jb20wDQYJKoZIhvcNAQELBQADggGBACm9Fjit/UCv
|
|
28
|
+
FxlKqeiCTIG94cIx+QrWAOJSx9knKydwUec1u04D/DbfZjTn3C2Bj227QgxeUn+6
|
|
29
|
+
if3e2v7zAk1896hLmGYzML0+nxQPb0vmtdLR7HETUlSKTVabcv1fbwLyjsuGrBvk
|
|
30
|
+
y51vOEzUEZ508a9yepLYqrQu1kOju4d57c9oA5l3H0mMKWz7av9tFj0B+STvuaWk
|
|
31
|
+
HRYDWc5HgOEVTyV+w0uFt2Kw4OCb8C42uSvC5RfYYtw78MSP+5Ru+LXJ7XOtmuN0
|
|
32
|
+
E6GVmofQ17ig9O3rgfFbMendSInrRmvPIGswvM1yivq9NOllFbdck2OJKPx6FCJF
|
|
33
|
+
7SJIkXQfc9P4B5iASIV1d1FsE0YX+g3jHXPJK/4mGL5bAyBKzpMfQB/mg6vQBzkh
|
|
34
|
+
aOKPwcreFj7TznBl89R5tNS9wZQfPVR98zgPyocddWhK18eQNMSBUnv4eeJ8PPbk
|
|
35
|
+
DovL+G8ajHDZ9fjH/+GVYHEMuiVdLarXrKJpHC1VfGTTUAp4NSEpUQ==
|
|
36
|
+
-----END CERTIFICATE-----
|
|
37
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
38
|
+
dependencies:
|
|
39
|
+
- !ruby/object:Gem::Dependency
|
|
40
|
+
name: puma
|
|
41
|
+
requirement: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '7.2'
|
|
46
|
+
type: :runtime
|
|
47
|
+
prerelease: false
|
|
48
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '7.2'
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: rackup
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '2.3'
|
|
60
|
+
type: :runtime
|
|
61
|
+
prerelease: false
|
|
62
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '2.3'
|
|
67
|
+
- !ruby/object:Gem::Dependency
|
|
68
|
+
name: sinatra
|
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - "~>"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '4.1'
|
|
74
|
+
type: :runtime
|
|
75
|
+
prerelease: false
|
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - "~>"
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '4.1'
|
|
81
|
+
- !ruby/object:Gem::Dependency
|
|
82
|
+
name: websocket-client-simple
|
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - "~>"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: 0.8.0
|
|
88
|
+
type: :runtime
|
|
89
|
+
prerelease: false
|
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
91
|
+
requirements:
|
|
92
|
+
- - "~>"
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: 0.8.0
|
|
95
|
+
- !ruby/object:Gem::Dependency
|
|
96
|
+
name: minitest
|
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
|
98
|
+
requirements:
|
|
99
|
+
- - "~>"
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '5.25'
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - "~>"
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '5.25'
|
|
109
|
+
- !ruby/object:Gem::Dependency
|
|
110
|
+
name: rake
|
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - "~>"
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '13.0'
|
|
116
|
+
type: :development
|
|
117
|
+
prerelease: false
|
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
- - "~>"
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: '13.0'
|
|
123
|
+
- !ruby/object:Gem::Dependency
|
|
124
|
+
name: rubocop
|
|
125
|
+
requirement: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - "~>"
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '1.75'
|
|
130
|
+
type: :development
|
|
131
|
+
prerelease: false
|
|
132
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
133
|
+
requirements:
|
|
134
|
+
- - "~>"
|
|
135
|
+
- !ruby/object:Gem::Version
|
|
136
|
+
version: '1.75'
|
|
137
|
+
- !ruby/object:Gem::Dependency
|
|
138
|
+
name: rubocop-performance
|
|
139
|
+
requirement: !ruby/object:Gem::Requirement
|
|
140
|
+
requirements:
|
|
141
|
+
- - "~>"
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: '1.25'
|
|
144
|
+
type: :development
|
|
145
|
+
prerelease: false
|
|
146
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
147
|
+
requirements:
|
|
148
|
+
- - "~>"
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: '1.25'
|
|
151
|
+
description: Webhook receiver that listens for Fizzy, GitHub, Discord, and Zoho Mail
|
|
152
|
+
events, then dispatches work to AI agent CLIs.
|
|
153
|
+
executables:
|
|
154
|
+
- zillacore
|
|
155
|
+
extensions: []
|
|
156
|
+
extra_rdoc_files: []
|
|
157
|
+
files:
|
|
158
|
+
- CHANGELOG.md
|
|
159
|
+
- Gemfile
|
|
160
|
+
- Gemfile.lock
|
|
161
|
+
- README.md
|
|
162
|
+
- Rakefile
|
|
163
|
+
- bin/zillacore
|
|
164
|
+
- certs/stowzilla.pem
|
|
165
|
+
- docs/waybar-config.md
|
|
166
|
+
- lib/user_registry.rb
|
|
167
|
+
- lib/zillacore.rb
|
|
168
|
+
- lib/zillacore/agents.rb
|
|
169
|
+
- lib/zillacore/brain.rb
|
|
170
|
+
- lib/zillacore/card_index.rb
|
|
171
|
+
- lib/zillacore/config.rb
|
|
172
|
+
- lib/zillacore/cron.rb
|
|
173
|
+
- lib/zillacore/deployments.rb
|
|
174
|
+
- lib/zillacore/handlers/discord.rb
|
|
175
|
+
- lib/zillacore/handlers/fizzy.rb
|
|
176
|
+
- lib/zillacore/handlers/github.rb
|
|
177
|
+
- lib/zillacore/handlers/zoho.rb
|
|
178
|
+
- lib/zillacore/helpers.rb
|
|
179
|
+
- lib/zillacore/planning.rb
|
|
180
|
+
- lib/zillacore/prompts.rb
|
|
181
|
+
- lib/zillacore/sessions.rb
|
|
182
|
+
- lib/zillacore/skills.rb
|
|
183
|
+
- lib/zillacore/users.rb
|
|
184
|
+
- lib/zillacore/version.rb
|
|
185
|
+
- lib/zillacore/zoho_mail_api.rb
|
|
186
|
+
- monitor/daemon.rb
|
|
187
|
+
- monitor/deploy-env-macos.rb
|
|
188
|
+
- monitor/menubar.rb
|
|
189
|
+
- monitor/open-action.sh
|
|
190
|
+
- monitor/setup-menubar.rb
|
|
191
|
+
- monitor/setup-waybar-deploy-envs.rb
|
|
192
|
+
- monitor/setup-waybar-deployments.rb
|
|
193
|
+
- monitor/setup-waybar-module.rb
|
|
194
|
+
- monitor/setup-xbar-plugin.rb
|
|
195
|
+
- monitor/view-logs-macos.rb
|
|
196
|
+
- monitor/view-logs-rofi.rb
|
|
197
|
+
- monitor/view-logs.rb
|
|
198
|
+
- monitor/waybar-config-updater.rb
|
|
199
|
+
- monitor/waybar-deploy-env.rb
|
|
200
|
+
- monitor/waybar-deployments.rb
|
|
201
|
+
- monitor/waybar.rb
|
|
202
|
+
- monitor/xbar.3s.rb
|
|
203
|
+
- receiver.rb
|
|
204
|
+
- templates/agents.json.example
|
|
205
|
+
- templates/discord.json.example
|
|
206
|
+
- templates/fizzy.json.example
|
|
207
|
+
- templates/github.json.example
|
|
208
|
+
- templates/testflight.json.example
|
|
209
|
+
- templates/users.json.example
|
|
210
|
+
- templates/zoho.json.example
|
|
211
|
+
- views/dashboard.erb
|
|
212
|
+
- zillacore.gemspec
|
|
213
|
+
homepage: https://github.com/stowzilla/zillacore
|
|
214
|
+
licenses:
|
|
215
|
+
- MIT
|
|
216
|
+
metadata:
|
|
217
|
+
rubygems_mfa_required: 'true'
|
|
218
|
+
rdoc_options: []
|
|
219
|
+
require_paths:
|
|
220
|
+
- lib
|
|
221
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
222
|
+
requirements:
|
|
223
|
+
- - ">="
|
|
224
|
+
- !ruby/object:Gem::Version
|
|
225
|
+
version: '3.4'
|
|
226
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
|
+
requirements:
|
|
228
|
+
- - ">="
|
|
229
|
+
- !ruby/object:Gem::Version
|
|
230
|
+
version: '0'
|
|
231
|
+
requirements: []
|
|
232
|
+
rubygems_version: 3.6.9
|
|
233
|
+
specification_version: 4
|
|
234
|
+
summary: AI agent webhook receiver and dispatcher
|
|
235
|
+
test_files: []
|
metadata.gz.sig
ADDED
|
Binary file
|