superkick 0.1.0
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
- data/CLA.md +91 -0
- data/CLAUDE.md +2226 -0
- data/CONTRIBUTING.md +104 -0
- data/LICENSE +108 -0
- data/LICENSE-COMMERCIAL.md +39 -0
- data/PLAN.md +161 -0
- data/README.md +1155 -0
- data/exe/superkick +6 -0
- data/lib/superkick/agent/runtime.rb +82 -0
- data/lib/superkick/agent/runtimes/local.rb +74 -0
- data/lib/superkick/agent/runtimes.rb +4 -0
- data/lib/superkick/agent.rb +209 -0
- data/lib/superkick/agent_store.rb +85 -0
- data/lib/superkick/attach/client.rb +245 -0
- data/lib/superkick/attach/protocol.rb +71 -0
- data/lib/superkick/attach/server.rb +371 -0
- data/lib/superkick/budget_checker.rb +120 -0
- data/lib/superkick/buffer/client.rb +91 -0
- data/lib/superkick/buffer/server.rb +127 -0
- data/lib/superkick/cli/agent.rb +524 -0
- data/lib/superkick/cli/completion.rb +591 -0
- data/lib/superkick/cli/goal.rb +71 -0
- data/lib/superkick/cli/mcp.rb +34 -0
- data/lib/superkick/cli/monitor.rb +47 -0
- data/lib/superkick/cli/notifier.rb +39 -0
- data/lib/superkick/cli/repository.rb +46 -0
- data/lib/superkick/cli/server.rb +106 -0
- data/lib/superkick/cli/setup.rb +166 -0
- data/lib/superkick/cli/spawner.rb +85 -0
- data/lib/superkick/cli/team.rb +407 -0
- data/lib/superkick/cli.rb +175 -0
- data/lib/superkick/client_registry.rb +30 -0
- data/lib/superkick/configuration.rb +178 -0
- data/lib/superkick/connection.rb +56 -0
- data/lib/superkick/control/client.rb +78 -0
- data/lib/superkick/control/reply.rb +43 -0
- data/lib/superkick/control/server.rb +1271 -0
- data/lib/superkick/cost_accumulator.rb +53 -0
- data/lib/superkick/cost_extractor.rb +65 -0
- data/lib/superkick/cost_poller.rb +70 -0
- data/lib/superkick/driver/profile_source.rb +134 -0
- data/lib/superkick/driver.rb +179 -0
- data/lib/superkick/drivers/claude_code.rb +110 -0
- data/lib/superkick/drivers/codex.rb +57 -0
- data/lib/superkick/drivers/copilot.rb +75 -0
- data/lib/superkick/drivers/gemini.rb +86 -0
- data/lib/superkick/drivers/goose.rb +74 -0
- data/lib/superkick/drivers.rb +16 -0
- data/lib/superkick/drop.rb +80 -0
- data/lib/superkick/drops.rb +76 -0
- data/lib/superkick/environment_executor.rb +90 -0
- data/lib/superkick/goal.rb +95 -0
- data/lib/superkick/goals/agent_exit.rb +41 -0
- data/lib/superkick/goals/agent_signal.rb +42 -0
- data/lib/superkick/goals/command.rb +103 -0
- data/lib/superkick/history_buffer.rb +38 -0
- data/lib/superkick/hosted/attach/bridge.rb +52 -0
- data/lib/superkick/hosted/attach/client.rb +208 -0
- data/lib/superkick/hosted/attach/relay.rb +313 -0
- data/lib/superkick/hosted/attach/relay_store.rb +48 -0
- data/lib/superkick/hosted/bridge.rb +263 -0
- data/lib/superkick/hosted/buffer/bridge.rb +42 -0
- data/lib/superkick/hosted/buffer/client.rb +63 -0
- data/lib/superkick/hosted/buffer/relay.rb +126 -0
- data/lib/superkick/hosted/buffer/relay_store.rb +42 -0
- data/lib/superkick/hosted/control/client.rb +84 -0
- data/lib/superkick/hosted/mcp_proxy.rb +144 -0
- data/lib/superkick/inject_handler.rb +24 -0
- data/lib/superkick/injection_guard.rb +26 -0
- data/lib/superkick/injection_queue.rb +177 -0
- data/lib/superkick/injector.rb +65 -0
- data/lib/superkick/input_buffer.rb +171 -0
- data/lib/superkick/integrations/bugsnag/README.md +98 -0
- data/lib/superkick/integrations/bugsnag/spawner.rb +307 -0
- data/lib/superkick/integrations/bugsnag/templates/error_opened.liquid +17 -0
- data/lib/superkick/integrations/bugsnag.rb +7 -0
- data/lib/superkick/integrations/circleci/README.md +75 -0
- data/lib/superkick/integrations/circleci/monitor.rb +185 -0
- data/lib/superkick/integrations/circleci/probe.rb +36 -0
- data/lib/superkick/integrations/circleci/templates/ci_failure.liquid +8 -0
- data/lib/superkick/integrations/circleci/templates/ci_success.liquid +1 -0
- data/lib/superkick/integrations/circleci.rb +8 -0
- data/lib/superkick/integrations/datadog/README.md +253 -0
- data/lib/superkick/integrations/datadog/alert_goal.rb +94 -0
- data/lib/superkick/integrations/datadog/alert_monitor.rb +163 -0
- data/lib/superkick/integrations/datadog/alert_spawner.rb +201 -0
- data/lib/superkick/integrations/datadog/notification_templates/default.liquid +10 -0
- data/lib/superkick/integrations/datadog/notifier.rb +294 -0
- data/lib/superkick/integrations/datadog/spawner.rb +201 -0
- data/lib/superkick/integrations/datadog/templates/alert_changed.liquid +8 -0
- data/lib/superkick/integrations/datadog/templates/alert_escalated.liquid +8 -0
- data/lib/superkick/integrations/datadog/templates/alert_recovered.liquid +14 -0
- data/lib/superkick/integrations/datadog/templates/alert_triggered.liquid +29 -0
- data/lib/superkick/integrations/datadog/templates/error_opened.liquid +15 -0
- data/lib/superkick/integrations/datadog.rb +14 -0
- data/lib/superkick/integrations/docker/README.md +256 -0
- data/lib/superkick/integrations/docker/client.rb +295 -0
- data/lib/superkick/integrations/docker/runtime.rb +218 -0
- data/lib/superkick/integrations/docker.rb +4 -0
- data/lib/superkick/integrations/git/repository_source.rb +66 -0
- data/lib/superkick/integrations/git/version_control.rb +119 -0
- data/lib/superkick/integrations/git.rb +8 -0
- data/lib/superkick/integrations/github/README.md +300 -0
- data/lib/superkick/integrations/github/check_failed_spawner.rb +199 -0
- data/lib/superkick/integrations/github/drops.rb +114 -0
- data/lib/superkick/integrations/github/goal.rb +135 -0
- data/lib/superkick/integrations/github/issue_goal.rb +104 -0
- data/lib/superkick/integrations/github/issue_spawner.rb +160 -0
- data/lib/superkick/integrations/github/monitor.rb +251 -0
- data/lib/superkick/integrations/github/probe.rb +30 -0
- data/lib/superkick/integrations/github/repository_source.rb +228 -0
- data/lib/superkick/integrations/github/templates/check_failed.liquid +10 -0
- data/lib/superkick/integrations/github/templates/ci_failure.liquid +5 -0
- data/lib/superkick/integrations/github/templates/ci_success.liquid +1 -0
- data/lib/superkick/integrations/github/templates/issue_opened.liquid +20 -0
- data/lib/superkick/integrations/github/templates/pr_comment.liquid +2 -0
- data/lib/superkick/integrations/github/templates/pr_review.liquid +4 -0
- data/lib/superkick/integrations/github.rb +16 -0
- data/lib/superkick/integrations/honeybadger/README.md +97 -0
- data/lib/superkick/integrations/honeybadger/notification_templates/default.liquid +8 -0
- data/lib/superkick/integrations/honeybadger/notifier.rb +250 -0
- data/lib/superkick/integrations/honeybadger/spawner.rb +214 -0
- data/lib/superkick/integrations/honeybadger/templates/error_opened.liquid +17 -0
- data/lib/superkick/integrations/honeybadger.rb +9 -0
- data/lib/superkick/integrations/shell/README.md +83 -0
- data/lib/superkick/integrations/shell/monitor.rb +87 -0
- data/lib/superkick/integrations/shell/templates/shell_alert.liquid +6 -0
- data/lib/superkick/integrations/shell/templates/shell_success.liquid +6 -0
- data/lib/superkick/integrations/shell.rb +7 -0
- data/lib/superkick/integrations/shortcut/README.md +193 -0
- data/lib/superkick/integrations/shortcut/drops.rb +91 -0
- data/lib/superkick/integrations/shortcut/monitor.rb +582 -0
- data/lib/superkick/integrations/shortcut/probe.rb +34 -0
- data/lib/superkick/integrations/shortcut/spawner.rb +264 -0
- data/lib/superkick/integrations/shortcut/templates/related_story_changed.liquid +6 -0
- data/lib/superkick/integrations/shortcut/templates/story_blocker.liquid +8 -0
- data/lib/superkick/integrations/shortcut/templates/story_comment.liquid +5 -0
- data/lib/superkick/integrations/shortcut/templates/story_description_changed.liquid +19 -0
- data/lib/superkick/integrations/shortcut/templates/story_owner_changed.liquid +10 -0
- data/lib/superkick/integrations/shortcut/templates/story_ready.liquid +41 -0
- data/lib/superkick/integrations/shortcut/templates/story_state_changed.liquid +9 -0
- data/lib/superkick/integrations/shortcut/templates/story_unblocked.liquid +5 -0
- data/lib/superkick/integrations/shortcut.rb +11 -0
- data/lib/superkick/integrations/slack/README.md +297 -0
- data/lib/superkick/integrations/slack/drops.rb +70 -0
- data/lib/superkick/integrations/slack/notifier.rb +426 -0
- data/lib/superkick/integrations/slack/spawner.rb +251 -0
- data/lib/superkick/integrations/slack/templates/default.liquid +17 -0
- data/lib/superkick/integrations/slack/templates/slack_reply.liquid +3 -0
- data/lib/superkick/integrations/slack/templates/spawn/slack_message.liquid +10 -0
- data/lib/superkick/integrations/slack/thread_monitor.rb +161 -0
- data/lib/superkick/integrations/slack.rb +12 -0
- data/lib/superkick/liquid.rb +129 -0
- data/lib/superkick/local/repository_source.rb +148 -0
- data/lib/superkick/mcp_server.rb +596 -0
- data/lib/superkick/monitor.rb +215 -0
- data/lib/superkick/notification_dispatcher.rb +280 -0
- data/lib/superkick/notifier.rb +173 -0
- data/lib/superkick/notifier_state_store.rb +55 -0
- data/lib/superkick/notifier_template.rb +121 -0
- data/lib/superkick/notifiers/command.rb +124 -0
- data/lib/superkick/notifiers/terminal_bell.rb +41 -0
- data/lib/superkick/output_logger.rb +54 -0
- data/lib/superkick/poller.rb +126 -0
- data/lib/superkick/process_runner.rb +87 -0
- data/lib/superkick/pty_proxy.rb +403 -0
- data/lib/superkick/registry.rb +75 -0
- data/lib/superkick/repository_source.rb +195 -0
- data/lib/superkick/server.rb +211 -0
- data/lib/superkick/session_recorder.rb +154 -0
- data/lib/superkick/setup.rb +160 -0
- data/lib/superkick/spawn/agent_spawner.rb +311 -0
- data/lib/superkick/spawn/approval_store.rb +113 -0
- data/lib/superkick/spawn/handler.rb +144 -0
- data/lib/superkick/spawn/injector.rb +119 -0
- data/lib/superkick/spawn/workflow_executor.rb +196 -0
- data/lib/superkick/spawn/workflow_validator.rb +77 -0
- data/lib/superkick/spawner.rb +67 -0
- data/lib/superkick/supervisor.rb +516 -0
- data/lib/superkick/team/artifact_store.rb +92 -0
- data/lib/superkick/team/log.rb +140 -0
- data/lib/superkick/team/log_entry_drop.rb +34 -0
- data/lib/superkick/team/log_monitor.rb +84 -0
- data/lib/superkick/team/log_notifier.rb +96 -0
- data/lib/superkick/team/log_store.rb +40 -0
- data/lib/superkick/template_filters.rb +24 -0
- data/lib/superkick/template_renderer.rb +223 -0
- data/lib/superkick/templates/team_log/planning_agent.liquid +38 -0
- data/lib/superkick/templates/team_log/team_digest.liquid +45 -0
- data/lib/superkick/templates/team_log/teammate_message.liquid +7 -0
- data/lib/superkick/templates/team_log/worker_kickoff.liquid +37 -0
- data/lib/superkick/templates/workflow/workflow_triggered.liquid +22 -0
- data/lib/superkick/version.rb +5 -0
- data/lib/superkick/version_control.rb +135 -0
- data/lib/superkick/yaml_config.rb +302 -0
- data/lib/superkick.rb +198 -0
- data/plan.md +267 -0
- metadata +404 -0
metadata
ADDED
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: superkick
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Superkick Contributors
|
|
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: base64
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: faraday-multipart
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: faraday-retry
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '2.0'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '2.0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: mcp
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0.6'
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0.6'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: octokit
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '10.0'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '10.0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: thor
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.3'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1.3'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: tty-prompt
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - "~>"
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0.23'
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0.23'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: liquid
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '5.0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "~>"
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '5.0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: websocket-driver
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - "~>"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0.7'
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - "~>"
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0.7'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: minitest
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "~>"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '5.0'
|
|
145
|
+
type: :development
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '5.0'
|
|
152
|
+
- !ruby/object:Gem::Dependency
|
|
153
|
+
name: rake
|
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '13.0'
|
|
159
|
+
type: :development
|
|
160
|
+
prerelease: false
|
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - "~>"
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '13.0'
|
|
166
|
+
- !ruby/object:Gem::Dependency
|
|
167
|
+
name: standard
|
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - "~>"
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '1.0'
|
|
173
|
+
type: :development
|
|
174
|
+
prerelease: false
|
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - "~>"
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '1.0'
|
|
180
|
+
description: Superkick wraps AI coding CLIs in a PTY proxy and injects CI results,
|
|
181
|
+
PR reviews, and other external context — right when the agent is ready to hear it.
|
|
182
|
+
executables:
|
|
183
|
+
- superkick
|
|
184
|
+
extensions: []
|
|
185
|
+
extra_rdoc_files: []
|
|
186
|
+
files:
|
|
187
|
+
- CLA.md
|
|
188
|
+
- CLAUDE.md
|
|
189
|
+
- CONTRIBUTING.md
|
|
190
|
+
- LICENSE
|
|
191
|
+
- LICENSE-COMMERCIAL.md
|
|
192
|
+
- PLAN.md
|
|
193
|
+
- README.md
|
|
194
|
+
- exe/superkick
|
|
195
|
+
- lib/superkick.rb
|
|
196
|
+
- lib/superkick/agent.rb
|
|
197
|
+
- lib/superkick/agent/runtime.rb
|
|
198
|
+
- lib/superkick/agent/runtimes.rb
|
|
199
|
+
- lib/superkick/agent/runtimes/local.rb
|
|
200
|
+
- lib/superkick/agent_store.rb
|
|
201
|
+
- lib/superkick/attach/client.rb
|
|
202
|
+
- lib/superkick/attach/protocol.rb
|
|
203
|
+
- lib/superkick/attach/server.rb
|
|
204
|
+
- lib/superkick/budget_checker.rb
|
|
205
|
+
- lib/superkick/buffer/client.rb
|
|
206
|
+
- lib/superkick/buffer/server.rb
|
|
207
|
+
- lib/superkick/cli.rb
|
|
208
|
+
- lib/superkick/cli/agent.rb
|
|
209
|
+
- lib/superkick/cli/completion.rb
|
|
210
|
+
- lib/superkick/cli/goal.rb
|
|
211
|
+
- lib/superkick/cli/mcp.rb
|
|
212
|
+
- lib/superkick/cli/monitor.rb
|
|
213
|
+
- lib/superkick/cli/notifier.rb
|
|
214
|
+
- lib/superkick/cli/repository.rb
|
|
215
|
+
- lib/superkick/cli/server.rb
|
|
216
|
+
- lib/superkick/cli/setup.rb
|
|
217
|
+
- lib/superkick/cli/spawner.rb
|
|
218
|
+
- lib/superkick/cli/team.rb
|
|
219
|
+
- lib/superkick/client_registry.rb
|
|
220
|
+
- lib/superkick/configuration.rb
|
|
221
|
+
- lib/superkick/connection.rb
|
|
222
|
+
- lib/superkick/control/client.rb
|
|
223
|
+
- lib/superkick/control/reply.rb
|
|
224
|
+
- lib/superkick/control/server.rb
|
|
225
|
+
- lib/superkick/cost_accumulator.rb
|
|
226
|
+
- lib/superkick/cost_extractor.rb
|
|
227
|
+
- lib/superkick/cost_poller.rb
|
|
228
|
+
- lib/superkick/driver.rb
|
|
229
|
+
- lib/superkick/driver/profile_source.rb
|
|
230
|
+
- lib/superkick/drivers.rb
|
|
231
|
+
- lib/superkick/drivers/claude_code.rb
|
|
232
|
+
- lib/superkick/drivers/codex.rb
|
|
233
|
+
- lib/superkick/drivers/copilot.rb
|
|
234
|
+
- lib/superkick/drivers/gemini.rb
|
|
235
|
+
- lib/superkick/drivers/goose.rb
|
|
236
|
+
- lib/superkick/drop.rb
|
|
237
|
+
- lib/superkick/drops.rb
|
|
238
|
+
- lib/superkick/environment_executor.rb
|
|
239
|
+
- lib/superkick/goal.rb
|
|
240
|
+
- lib/superkick/goals/agent_exit.rb
|
|
241
|
+
- lib/superkick/goals/agent_signal.rb
|
|
242
|
+
- lib/superkick/goals/command.rb
|
|
243
|
+
- lib/superkick/history_buffer.rb
|
|
244
|
+
- lib/superkick/hosted/attach/bridge.rb
|
|
245
|
+
- lib/superkick/hosted/attach/client.rb
|
|
246
|
+
- lib/superkick/hosted/attach/relay.rb
|
|
247
|
+
- lib/superkick/hosted/attach/relay_store.rb
|
|
248
|
+
- lib/superkick/hosted/bridge.rb
|
|
249
|
+
- lib/superkick/hosted/buffer/bridge.rb
|
|
250
|
+
- lib/superkick/hosted/buffer/client.rb
|
|
251
|
+
- lib/superkick/hosted/buffer/relay.rb
|
|
252
|
+
- lib/superkick/hosted/buffer/relay_store.rb
|
|
253
|
+
- lib/superkick/hosted/control/client.rb
|
|
254
|
+
- lib/superkick/hosted/mcp_proxy.rb
|
|
255
|
+
- lib/superkick/inject_handler.rb
|
|
256
|
+
- lib/superkick/injection_guard.rb
|
|
257
|
+
- lib/superkick/injection_queue.rb
|
|
258
|
+
- lib/superkick/injector.rb
|
|
259
|
+
- lib/superkick/input_buffer.rb
|
|
260
|
+
- lib/superkick/integrations/bugsnag.rb
|
|
261
|
+
- lib/superkick/integrations/bugsnag/README.md
|
|
262
|
+
- lib/superkick/integrations/bugsnag/spawner.rb
|
|
263
|
+
- lib/superkick/integrations/bugsnag/templates/error_opened.liquid
|
|
264
|
+
- lib/superkick/integrations/circleci.rb
|
|
265
|
+
- lib/superkick/integrations/circleci/README.md
|
|
266
|
+
- lib/superkick/integrations/circleci/monitor.rb
|
|
267
|
+
- lib/superkick/integrations/circleci/probe.rb
|
|
268
|
+
- lib/superkick/integrations/circleci/templates/ci_failure.liquid
|
|
269
|
+
- lib/superkick/integrations/circleci/templates/ci_success.liquid
|
|
270
|
+
- lib/superkick/integrations/datadog.rb
|
|
271
|
+
- lib/superkick/integrations/datadog/README.md
|
|
272
|
+
- lib/superkick/integrations/datadog/alert_goal.rb
|
|
273
|
+
- lib/superkick/integrations/datadog/alert_monitor.rb
|
|
274
|
+
- lib/superkick/integrations/datadog/alert_spawner.rb
|
|
275
|
+
- lib/superkick/integrations/datadog/notification_templates/default.liquid
|
|
276
|
+
- lib/superkick/integrations/datadog/notifier.rb
|
|
277
|
+
- lib/superkick/integrations/datadog/spawner.rb
|
|
278
|
+
- lib/superkick/integrations/datadog/templates/alert_changed.liquid
|
|
279
|
+
- lib/superkick/integrations/datadog/templates/alert_escalated.liquid
|
|
280
|
+
- lib/superkick/integrations/datadog/templates/alert_recovered.liquid
|
|
281
|
+
- lib/superkick/integrations/datadog/templates/alert_triggered.liquid
|
|
282
|
+
- lib/superkick/integrations/datadog/templates/error_opened.liquid
|
|
283
|
+
- lib/superkick/integrations/docker.rb
|
|
284
|
+
- lib/superkick/integrations/docker/README.md
|
|
285
|
+
- lib/superkick/integrations/docker/client.rb
|
|
286
|
+
- lib/superkick/integrations/docker/runtime.rb
|
|
287
|
+
- lib/superkick/integrations/git.rb
|
|
288
|
+
- lib/superkick/integrations/git/repository_source.rb
|
|
289
|
+
- lib/superkick/integrations/git/version_control.rb
|
|
290
|
+
- lib/superkick/integrations/github.rb
|
|
291
|
+
- lib/superkick/integrations/github/README.md
|
|
292
|
+
- lib/superkick/integrations/github/check_failed_spawner.rb
|
|
293
|
+
- lib/superkick/integrations/github/drops.rb
|
|
294
|
+
- lib/superkick/integrations/github/goal.rb
|
|
295
|
+
- lib/superkick/integrations/github/issue_goal.rb
|
|
296
|
+
- lib/superkick/integrations/github/issue_spawner.rb
|
|
297
|
+
- lib/superkick/integrations/github/monitor.rb
|
|
298
|
+
- lib/superkick/integrations/github/probe.rb
|
|
299
|
+
- lib/superkick/integrations/github/repository_source.rb
|
|
300
|
+
- lib/superkick/integrations/github/templates/check_failed.liquid
|
|
301
|
+
- lib/superkick/integrations/github/templates/ci_failure.liquid
|
|
302
|
+
- lib/superkick/integrations/github/templates/ci_success.liquid
|
|
303
|
+
- lib/superkick/integrations/github/templates/issue_opened.liquid
|
|
304
|
+
- lib/superkick/integrations/github/templates/pr_comment.liquid
|
|
305
|
+
- lib/superkick/integrations/github/templates/pr_review.liquid
|
|
306
|
+
- lib/superkick/integrations/honeybadger.rb
|
|
307
|
+
- lib/superkick/integrations/honeybadger/README.md
|
|
308
|
+
- lib/superkick/integrations/honeybadger/notification_templates/default.liquid
|
|
309
|
+
- lib/superkick/integrations/honeybadger/notifier.rb
|
|
310
|
+
- lib/superkick/integrations/honeybadger/spawner.rb
|
|
311
|
+
- lib/superkick/integrations/honeybadger/templates/error_opened.liquid
|
|
312
|
+
- lib/superkick/integrations/shell.rb
|
|
313
|
+
- lib/superkick/integrations/shell/README.md
|
|
314
|
+
- lib/superkick/integrations/shell/monitor.rb
|
|
315
|
+
- lib/superkick/integrations/shell/templates/shell_alert.liquid
|
|
316
|
+
- lib/superkick/integrations/shell/templates/shell_success.liquid
|
|
317
|
+
- lib/superkick/integrations/shortcut.rb
|
|
318
|
+
- lib/superkick/integrations/shortcut/README.md
|
|
319
|
+
- lib/superkick/integrations/shortcut/drops.rb
|
|
320
|
+
- lib/superkick/integrations/shortcut/monitor.rb
|
|
321
|
+
- lib/superkick/integrations/shortcut/probe.rb
|
|
322
|
+
- lib/superkick/integrations/shortcut/spawner.rb
|
|
323
|
+
- lib/superkick/integrations/shortcut/templates/related_story_changed.liquid
|
|
324
|
+
- lib/superkick/integrations/shortcut/templates/story_blocker.liquid
|
|
325
|
+
- lib/superkick/integrations/shortcut/templates/story_comment.liquid
|
|
326
|
+
- lib/superkick/integrations/shortcut/templates/story_description_changed.liquid
|
|
327
|
+
- lib/superkick/integrations/shortcut/templates/story_owner_changed.liquid
|
|
328
|
+
- lib/superkick/integrations/shortcut/templates/story_ready.liquid
|
|
329
|
+
- lib/superkick/integrations/shortcut/templates/story_state_changed.liquid
|
|
330
|
+
- lib/superkick/integrations/shortcut/templates/story_unblocked.liquid
|
|
331
|
+
- lib/superkick/integrations/slack.rb
|
|
332
|
+
- lib/superkick/integrations/slack/README.md
|
|
333
|
+
- lib/superkick/integrations/slack/drops.rb
|
|
334
|
+
- lib/superkick/integrations/slack/notifier.rb
|
|
335
|
+
- lib/superkick/integrations/slack/spawner.rb
|
|
336
|
+
- lib/superkick/integrations/slack/templates/default.liquid
|
|
337
|
+
- lib/superkick/integrations/slack/templates/slack_reply.liquid
|
|
338
|
+
- lib/superkick/integrations/slack/templates/spawn/slack_message.liquid
|
|
339
|
+
- lib/superkick/integrations/slack/thread_monitor.rb
|
|
340
|
+
- lib/superkick/liquid.rb
|
|
341
|
+
- lib/superkick/local/repository_source.rb
|
|
342
|
+
- lib/superkick/mcp_server.rb
|
|
343
|
+
- lib/superkick/monitor.rb
|
|
344
|
+
- lib/superkick/notification_dispatcher.rb
|
|
345
|
+
- lib/superkick/notifier.rb
|
|
346
|
+
- lib/superkick/notifier_state_store.rb
|
|
347
|
+
- lib/superkick/notifier_template.rb
|
|
348
|
+
- lib/superkick/notifiers/command.rb
|
|
349
|
+
- lib/superkick/notifiers/terminal_bell.rb
|
|
350
|
+
- lib/superkick/output_logger.rb
|
|
351
|
+
- lib/superkick/poller.rb
|
|
352
|
+
- lib/superkick/process_runner.rb
|
|
353
|
+
- lib/superkick/pty_proxy.rb
|
|
354
|
+
- lib/superkick/registry.rb
|
|
355
|
+
- lib/superkick/repository_source.rb
|
|
356
|
+
- lib/superkick/server.rb
|
|
357
|
+
- lib/superkick/session_recorder.rb
|
|
358
|
+
- lib/superkick/setup.rb
|
|
359
|
+
- lib/superkick/spawn/agent_spawner.rb
|
|
360
|
+
- lib/superkick/spawn/approval_store.rb
|
|
361
|
+
- lib/superkick/spawn/handler.rb
|
|
362
|
+
- lib/superkick/spawn/injector.rb
|
|
363
|
+
- lib/superkick/spawn/workflow_executor.rb
|
|
364
|
+
- lib/superkick/spawn/workflow_validator.rb
|
|
365
|
+
- lib/superkick/spawner.rb
|
|
366
|
+
- lib/superkick/supervisor.rb
|
|
367
|
+
- lib/superkick/team/artifact_store.rb
|
|
368
|
+
- lib/superkick/team/log.rb
|
|
369
|
+
- lib/superkick/team/log_entry_drop.rb
|
|
370
|
+
- lib/superkick/team/log_monitor.rb
|
|
371
|
+
- lib/superkick/team/log_notifier.rb
|
|
372
|
+
- lib/superkick/team/log_store.rb
|
|
373
|
+
- lib/superkick/template_filters.rb
|
|
374
|
+
- lib/superkick/template_renderer.rb
|
|
375
|
+
- lib/superkick/templates/team_log/planning_agent.liquid
|
|
376
|
+
- lib/superkick/templates/team_log/team_digest.liquid
|
|
377
|
+
- lib/superkick/templates/team_log/teammate_message.liquid
|
|
378
|
+
- lib/superkick/templates/team_log/worker_kickoff.liquid
|
|
379
|
+
- lib/superkick/templates/workflow/workflow_triggered.liquid
|
|
380
|
+
- lib/superkick/version.rb
|
|
381
|
+
- lib/superkick/version_control.rb
|
|
382
|
+
- lib/superkick/yaml_config.rb
|
|
383
|
+
- plan.md
|
|
384
|
+
licenses:
|
|
385
|
+
- BUSL-1.1
|
|
386
|
+
metadata: {}
|
|
387
|
+
rdoc_options: []
|
|
388
|
+
require_paths:
|
|
389
|
+
- lib
|
|
390
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
391
|
+
requirements:
|
|
392
|
+
- - ">="
|
|
393
|
+
- !ruby/object:Gem::Version
|
|
394
|
+
version: 3.4.0
|
|
395
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
396
|
+
requirements:
|
|
397
|
+
- - ">="
|
|
398
|
+
- !ruby/object:Gem::Version
|
|
399
|
+
version: '0'
|
|
400
|
+
requirements: []
|
|
401
|
+
rubygems_version: 3.6.9
|
|
402
|
+
specification_version: 4
|
|
403
|
+
summary: Live context for AI coding agents
|
|
404
|
+
test_files: []
|