terok-executor 0.1.0__tar.gz
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.
- terok_executor-0.1.0/LICENSE +177 -0
- terok_executor-0.1.0/LICENSES/Apache-2.0.txt +202 -0
- terok_executor-0.1.0/PKG-INFO +160 -0
- terok_executor-0.1.0/README.md +117 -0
- terok_executor-0.1.0/pyproject.toml +159 -0
- terok_executor-0.1.0/src/terok_executor/__init__.py +179 -0
- terok_executor-0.1.0/src/terok_executor/_tree.py +39 -0
- terok_executor-0.1.0/src/terok_executor/_util/__init__.py +18 -0
- terok_executor-0.1.0/src/terok_executor/_util/_timezone.py +49 -0
- terok_executor-0.1.0/src/terok_executor/_util/_yaml.py +24 -0
- terok_executor-0.1.0/src/terok_executor/acp/__init__.py +69 -0
- terok_executor-0.1.0/src/terok_executor/acp/cache.py +81 -0
- terok_executor-0.1.0/src/terok_executor/acp/daemon.py +250 -0
- terok_executor-0.1.0/src/terok_executor/acp/endpoint.py +35 -0
- terok_executor-0.1.0/src/terok_executor/acp/model_options.py +159 -0
- terok_executor-0.1.0/src/terok_executor/acp/probe.py +156 -0
- terok_executor-0.1.0/src/terok_executor/acp/proxy.py +640 -0
- terok_executor-0.1.0/src/terok_executor/acp/roster.py +271 -0
- terok_executor-0.1.0/src/terok_executor/cli.py +91 -0
- terok_executor-0.1.0/src/terok_executor/commands.py +955 -0
- terok_executor-0.1.0/src/terok_executor/config.py +31 -0
- terok_executor-0.1.0/src/terok_executor/config_schema.py +150 -0
- terok_executor-0.1.0/src/terok_executor/container/__init__.py +9 -0
- terok_executor-0.1.0/src/terok_executor/container/build.py +1133 -0
- terok_executor-0.1.0/src/terok_executor/container/cache.py +127 -0
- terok_executor-0.1.0/src/terok_executor/container/env.py +599 -0
- terok_executor-0.1.0/src/terok_executor/container/inject.py +41 -0
- terok_executor-0.1.0/src/terok_executor/container/runner.py +1230 -0
- terok_executor-0.1.0/src/terok_executor/container/sidecar.py +166 -0
- terok_executor-0.1.0/src/terok_executor/credentials/__init__.py +10 -0
- terok_executor-0.1.0/src/terok_executor/credentials/auth.py +1027 -0
- terok_executor-0.1.0/src/terok_executor/credentials/extractors.py +217 -0
- terok_executor-0.1.0/src/terok_executor/credentials/vault_commands.py +202 -0
- terok_executor-0.1.0/src/terok_executor/credentials/vault_config.py +612 -0
- terok_executor-0.1.0/src/terok_executor/credentials/vendor_files.py +257 -0
- terok_executor-0.1.0/src/terok_executor/doctor.py +325 -0
- terok_executor-0.1.0/src/terok_executor/integrations/__init__.py +17 -0
- terok_executor-0.1.0/src/terok_executor/integrations/sandbox.py +125 -0
- terok_executor-0.1.0/src/terok_executor/krun.py +369 -0
- terok_executor-0.1.0/src/terok_executor/paths.py +40 -0
- terok_executor-0.1.0/src/terok_executor/preflight.py +447 -0
- terok_executor-0.1.0/src/terok_executor/provider/__init__.py +12 -0
- terok_executor-0.1.0/src/terok_executor/provider/agents.py +562 -0
- terok_executor-0.1.0/src/terok_executor/provider/instructions.py +126 -0
- terok_executor-0.1.0/src/terok_executor/provider/providers.py +496 -0
- terok_executor-0.1.0/src/terok_executor/provider/wrappers.py +541 -0
- terok_executor-0.1.0/src/terok_executor/py.typed +0 -0
- terok_executor-0.1.0/src/terok_executor/resources/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/blablador.yaml +68 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/caddy.yaml +29 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/claude.yaml +115 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/coderabbit.yaml +33 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/codex.yaml +89 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/copilot.yaml +39 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/gh.yaml +58 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/glab.yaml +65 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/kisski.yaml +62 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/opencode.yaml +65 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/openrouter.yaml +68 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/pi.yaml +63 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/sonar.yaml +55 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/toad.yaml +40 -0
- terok_executor-0.1.0/src/terok_executor/resources/agents/vibe.yaml +82 -0
- terok_executor-0.1.0/src/terok_executor/resources/instructions/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/instructions/default.md +54 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/Caddyfile +39 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/allthethings.sh +40 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/hilfe +72 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/init-ssh-and-repo.sh +445 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/mistral-model-sync.py +292 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/opencode-provider +390 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/opencode-provider-acp +34 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/opencode-session-plugin.mjs +26 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/opencode-toad +63 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/pi-env.sh +34 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/pi-vault-routes.mjs +46 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/setup-codex-auth.sh +54 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-acp-env.sh +23 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-bash-banner.sh +14 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-claude-acp +30 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-codex-acp +34 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-copilot-acp +37 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-env-git-identity.sh +61 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-env.sh +96 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-opencode-acp +24 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-toad-entry +79 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-trust-workspace.py +104 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/terok-vibe-acp +91 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/toad +128 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/update-all-the-things +94 -0
- terok_executor-0.1.0/src/terok_executor/resources/scripts/vibe-model-sync.sh +37 -0
- terok_executor-0.1.0/src/terok_executor/resources/templates/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/templates/l0.dev.Dockerfile.template +142 -0
- terok_executor-0.1.0/src/terok_executor/resources/templates/l1.agent-cli.Dockerfile.template +129 -0
- terok_executor-0.1.0/src/terok_executor/resources/templates/l1.sidecar.Dockerfile.template +38 -0
- terok_executor-0.1.0/src/terok_executor/resources/tmux/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/tmux/container-tmux.conf +21 -0
- terok_executor-0.1.0/src/terok_executor/resources/toad-agents/__init__.py +4 -0
- terok_executor-0.1.0/src/terok_executor/resources/toad-agents/blablador.helmholtz.de.toml +31 -0
- terok_executor-0.1.0/src/terok_executor/resources/toad-agents/kisski.academiccloud.de.toml +31 -0
- terok_executor-0.1.0/src/terok_executor/roster/__init__.py +18 -0
- terok_executor-0.1.0/src/terok_executor/roster/loader.py +643 -0
- terok_executor-0.1.0/src/terok_executor/roster/schema.py +490 -0
- terok_executor-0.1.0/src/terok_executor/roster/types.py +181 -0
- terok_executor-0.1.0/src/terok_executor/sandbox.py +53 -0
- terok_executor-0.1.0/src/terok_executor/storage.py +110 -0
- terok_executor-0.1.0/src/terok_executor/vault_addr.py +41 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: terok-executor
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Single-agent task runner for hardened Podman containers
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
License-File: LICENSES/Apache-2.0.txt
|
|
8
|
+
Keywords: podman,containers,agent,ai,coding-agent
|
|
9
|
+
Author: Jiri Vyskocil
|
|
10
|
+
Author-email: jiri@vyskocil.com
|
|
11
|
+
Maintainer: Jiri Vyskocil
|
|
12
|
+
Maintainer-email: jiri@vyskocil.com
|
|
13
|
+
Requires-Python: >=3.12,<3.15
|
|
14
|
+
Classifier: Development Status :: 3 - Alpha
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Intended Audience :: System Administrators
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Dist: Jinja2 (>=3.1)
|
|
27
|
+
Requires-Dist: agent-client-protocol (>=0.10.1)
|
|
28
|
+
Requires-Dist: prompt-toolkit (>=3.0)
|
|
29
|
+
Requires-Dist: pydantic (>=2.9)
|
|
30
|
+
Requires-Dist: rich (>=13.0)
|
|
31
|
+
Requires-Dist: ruamel.yaml (>=0.18)
|
|
32
|
+
Requires-Dist: terok-sandbox (>=0.1.0,<0.2.0)
|
|
33
|
+
Requires-Dist: terok-util (>=0.1.0,<0.2.0)
|
|
34
|
+
Requires-Dist: tomli-w (>=1.0)
|
|
35
|
+
Project-URL: Changelog, https://github.com/terok-ai/terok-executor/blob/master/CHANGELOG.md
|
|
36
|
+
Project-URL: Documentation, https://terok-ai.github.io/terok-executor/
|
|
37
|
+
Project-URL: Homepage, https://terok.ai/
|
|
38
|
+
Project-URL: Issues, https://github.com/terok-ai/terok-executor/issues
|
|
39
|
+
Project-URL: Repository, https://github.com/terok-ai/terok-executor
|
|
40
|
+
Project-URL: Security, https://github.com/terok-ai/terok-executor/security/policy
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
|
|
43
|
+
# terok-executor
|
|
44
|
+
|
|
45
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
46
|
+
[](https://api.reuse.software/info/github.com/terok-ai/terok-executor)
|
|
47
|
+
[](https://sonarcloud.io/summary/new_code?id=terok-ai_terok-executor)
|
|
48
|
+
|
|
49
|
+
One command to run an AI coding agent inside a hardened, rootless
|
|
50
|
+
Podman container.
|
|
51
|
+
|
|
52
|
+
`terok-executor` builds the container, launches the agent against
|
|
53
|
+
the directory you point it at, and keeps real credentials on the
|
|
54
|
+
host. Use it on its own as a CLI, or import its `AgentRunner` from
|
|
55
|
+
Python when you want library-grade control.
|
|
56
|
+
|
|
57
|
+
<p align="center">
|
|
58
|
+
<img src="docs/img/architecture.svg" alt="terok ecosystem — terok-executor sits between project orchestration and the hardened runtime">
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
## Quick start
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install terok-executor
|
|
65
|
+
terok-executor run claude ~/my-workspace
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
The first `run` interactively offers any missing prerequisites — sandbox
|
|
69
|
+
services, container images, agent credentials.
|
|
70
|
+
Mandatory items (services, images) block the launch if
|
|
71
|
+
declined; optional ones (SSH key, auth) print the consequence and
|
|
72
|
+
proceed.
|
|
73
|
+
|
|
74
|
+
Individual steps would be:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
terok-executor setup # install sandbox services + build base images
|
|
78
|
+
terok-executor auth claude # authenticate (OAuth or API key)
|
|
79
|
+
terok-executor run claude <dir> -p "Fix the bug" # run the agent with an initial prompt
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Use as a library
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
from terok_executor import AgentRunner
|
|
86
|
+
|
|
87
|
+
runner = AgentRunner()
|
|
88
|
+
runner.run_headless(
|
|
89
|
+
agent="claude",
|
|
90
|
+
repo=".",
|
|
91
|
+
prompt="Fix the failing test in test_auth.py",
|
|
92
|
+
max_turns=25,
|
|
93
|
+
)
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
`AgentRunner` exposes four launch methods — `run_headless`,
|
|
97
|
+
`run_interactive`, `run_web`, `run_tool` — all with the same
|
|
98
|
+
hardening guarantees.
|
|
99
|
+
|
|
100
|
+
## Supported agents
|
|
101
|
+
|
|
102
|
+
| Agent | Auth | Description |
|
|
103
|
+
|-------|------|-------------|
|
|
104
|
+
| Claude Code | OAuth*, API key | Anthropic Claude Code |
|
|
105
|
+
| Codex | OAuth*, API key | OpenAI Codex CLI |
|
|
106
|
+
| Vibe | API key | Mistral Vibe |
|
|
107
|
+
| OpenCode | API key | Generic LLM endpoint driver — bundled defaults for Helmholtz Blablador, KISSKI AcademicCloud, and your own endpoint |
|
|
108
|
+
| gh | OAuth, API key | GitHub CLI |
|
|
109
|
+
| glab | API key | GitLab CLI |
|
|
110
|
+
| CodeRabbit | API key | CodeRabbit (sidecar tool) |
|
|
111
|
+
| SonarCloud | API key | SonarCloud scanner (sidecar tool) |
|
|
112
|
+
|
|
113
|
+
\* Claude and Codex OAuth are experimental, and support must be explicitly allowed in the config file.
|
|
114
|
+
|
|
115
|
+
`terok-executor agents` lists the live roster (add `--all` to
|
|
116
|
+
include the tool entries).
|
|
117
|
+
|
|
118
|
+
## Where it sits in the stack
|
|
119
|
+
|
|
120
|
+
terok-executor is the per-task layer. Above it,
|
|
121
|
+
[terok](https://github.com/terok-ai/terok) composes many concurrent
|
|
122
|
+
runs across many projects. Below it, terok-executor delegates the
|
|
123
|
+
host-side security boundary
|
|
124
|
+
([terok-sandbox](https://github.com/terok-ai/terok-sandbox)): the
|
|
125
|
+
credential vault, the git gate, the egress firewall hooks, the
|
|
126
|
+
systemd service lifecycle.
|
|
127
|
+
|
|
128
|
+
## Commands
|
|
129
|
+
|
|
130
|
+
| Command | Description |
|
|
131
|
+
|---------|-------------|
|
|
132
|
+
| `run` | Launch an agent (headless, interactive, or web) |
|
|
133
|
+
| `setup` | Bootstrap sandbox services + container images |
|
|
134
|
+
| `uninstall` | Remove sandbox services + container images |
|
|
135
|
+
| `auth` | Authenticate a provider |
|
|
136
|
+
| `agents` | List the agent roster |
|
|
137
|
+
| `build` | Build base + agent images explicitly |
|
|
138
|
+
| `run-tool` | Run a sidecar tool (CodeRabbit, SonarCloud) |
|
|
139
|
+
| `list` | List running containers |
|
|
140
|
+
| `stop` | Stop a running container |
|
|
141
|
+
| `show-config` | Print the effective `SandboxConfig` as YAML (diffable across orchestrators) |
|
|
142
|
+
| `vault` | Vault management (start, stop, status, install, routes) |
|
|
143
|
+
|
|
144
|
+
### Config override
|
|
145
|
+
|
|
146
|
+
Two top-level flags (precede the subcommand, like `docker --config`):
|
|
147
|
+
|
|
148
|
+
- `--config PATH` — read this `config.yml` instead of the layered system/user paths (sets `TEROK_CONFIG_FILE` for the invocation).
|
|
149
|
+
- `--raw` — ignore any `config.yml`; use sandbox/executor dataclass defaults only.
|
|
150
|
+
|
|
151
|
+
Higher-layer orchestrators (such as `terok`) typically construct a `SandboxConfig` from their own resolution chain and pass it into the executor as a library; the public expectation is that, for the fields they own in `config.yml`, the resulting sub-environment matches what standalone `terok-executor` would produce against the same file. Use `show-config` on both sides to verify.
|
|
152
|
+
|
|
153
|
+
## Development
|
|
154
|
+
|
|
155
|
+
See the [Developer Guide](https://terok-ai.github.io/terok-executor/developer/).
|
|
156
|
+
|
|
157
|
+
## License
|
|
158
|
+
|
|
159
|
+
[Apache-2.0](LICENSES/Apache-2.0.txt)
|
|
160
|
+
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# terok-executor
|
|
2
|
+
|
|
3
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
4
|
+
[](https://api.reuse.software/info/github.com/terok-ai/terok-executor)
|
|
5
|
+
[](https://sonarcloud.io/summary/new_code?id=terok-ai_terok-executor)
|
|
6
|
+
|
|
7
|
+
One command to run an AI coding agent inside a hardened, rootless
|
|
8
|
+
Podman container.
|
|
9
|
+
|
|
10
|
+
`terok-executor` builds the container, launches the agent against
|
|
11
|
+
the directory you point it at, and keeps real credentials on the
|
|
12
|
+
host. Use it on its own as a CLI, or import its `AgentRunner` from
|
|
13
|
+
Python when you want library-grade control.
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<img src="docs/img/architecture.svg" alt="terok ecosystem — terok-executor sits between project orchestration and the hardened runtime">
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
## Quick start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install terok-executor
|
|
23
|
+
terok-executor run claude ~/my-workspace
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The first `run` interactively offers any missing prerequisites — sandbox
|
|
27
|
+
services, container images, agent credentials.
|
|
28
|
+
Mandatory items (services, images) block the launch if
|
|
29
|
+
declined; optional ones (SSH key, auth) print the consequence and
|
|
30
|
+
proceed.
|
|
31
|
+
|
|
32
|
+
Individual steps would be:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
terok-executor setup # install sandbox services + build base images
|
|
36
|
+
terok-executor auth claude # authenticate (OAuth or API key)
|
|
37
|
+
terok-executor run claude <dir> -p "Fix the bug" # run the agent with an initial prompt
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Use as a library
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from terok_executor import AgentRunner
|
|
44
|
+
|
|
45
|
+
runner = AgentRunner()
|
|
46
|
+
runner.run_headless(
|
|
47
|
+
agent="claude",
|
|
48
|
+
repo=".",
|
|
49
|
+
prompt="Fix the failing test in test_auth.py",
|
|
50
|
+
max_turns=25,
|
|
51
|
+
)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
`AgentRunner` exposes four launch methods — `run_headless`,
|
|
55
|
+
`run_interactive`, `run_web`, `run_tool` — all with the same
|
|
56
|
+
hardening guarantees.
|
|
57
|
+
|
|
58
|
+
## Supported agents
|
|
59
|
+
|
|
60
|
+
| Agent | Auth | Description |
|
|
61
|
+
|-------|------|-------------|
|
|
62
|
+
| Claude Code | OAuth*, API key | Anthropic Claude Code |
|
|
63
|
+
| Codex | OAuth*, API key | OpenAI Codex CLI |
|
|
64
|
+
| Vibe | API key | Mistral Vibe |
|
|
65
|
+
| OpenCode | API key | Generic LLM endpoint driver — bundled defaults for Helmholtz Blablador, KISSKI AcademicCloud, and your own endpoint |
|
|
66
|
+
| gh | OAuth, API key | GitHub CLI |
|
|
67
|
+
| glab | API key | GitLab CLI |
|
|
68
|
+
| CodeRabbit | API key | CodeRabbit (sidecar tool) |
|
|
69
|
+
| SonarCloud | API key | SonarCloud scanner (sidecar tool) |
|
|
70
|
+
|
|
71
|
+
\* Claude and Codex OAuth are experimental, and support must be explicitly allowed in the config file.
|
|
72
|
+
|
|
73
|
+
`terok-executor agents` lists the live roster (add `--all` to
|
|
74
|
+
include the tool entries).
|
|
75
|
+
|
|
76
|
+
## Where it sits in the stack
|
|
77
|
+
|
|
78
|
+
terok-executor is the per-task layer. Above it,
|
|
79
|
+
[terok](https://github.com/terok-ai/terok) composes many concurrent
|
|
80
|
+
runs across many projects. Below it, terok-executor delegates the
|
|
81
|
+
host-side security boundary
|
|
82
|
+
([terok-sandbox](https://github.com/terok-ai/terok-sandbox)): the
|
|
83
|
+
credential vault, the git gate, the egress firewall hooks, the
|
|
84
|
+
systemd service lifecycle.
|
|
85
|
+
|
|
86
|
+
## Commands
|
|
87
|
+
|
|
88
|
+
| Command | Description |
|
|
89
|
+
|---------|-------------|
|
|
90
|
+
| `run` | Launch an agent (headless, interactive, or web) |
|
|
91
|
+
| `setup` | Bootstrap sandbox services + container images |
|
|
92
|
+
| `uninstall` | Remove sandbox services + container images |
|
|
93
|
+
| `auth` | Authenticate a provider |
|
|
94
|
+
| `agents` | List the agent roster |
|
|
95
|
+
| `build` | Build base + agent images explicitly |
|
|
96
|
+
| `run-tool` | Run a sidecar tool (CodeRabbit, SonarCloud) |
|
|
97
|
+
| `list` | List running containers |
|
|
98
|
+
| `stop` | Stop a running container |
|
|
99
|
+
| `show-config` | Print the effective `SandboxConfig` as YAML (diffable across orchestrators) |
|
|
100
|
+
| `vault` | Vault management (start, stop, status, install, routes) |
|
|
101
|
+
|
|
102
|
+
### Config override
|
|
103
|
+
|
|
104
|
+
Two top-level flags (precede the subcommand, like `docker --config`):
|
|
105
|
+
|
|
106
|
+
- `--config PATH` — read this `config.yml` instead of the layered system/user paths (sets `TEROK_CONFIG_FILE` for the invocation).
|
|
107
|
+
- `--raw` — ignore any `config.yml`; use sandbox/executor dataclass defaults only.
|
|
108
|
+
|
|
109
|
+
Higher-layer orchestrators (such as `terok`) typically construct a `SandboxConfig` from their own resolution chain and pass it into the executor as a library; the public expectation is that, for the fields they own in `config.yml`, the resulting sub-environment matches what standalone `terok-executor` would produce against the same file. Use `show-config` on both sides to verify.
|
|
110
|
+
|
|
111
|
+
## Development
|
|
112
|
+
|
|
113
|
+
See the [Developer Guide](https://terok-ai.github.io/terok-executor/developer/).
|
|
114
|
+
|
|
115
|
+
## License
|
|
116
|
+
|
|
117
|
+
[Apache-2.0](LICENSES/Apache-2.0.txt)
|