sisyphi 1.1.23 → 1.1.25
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.
- package/deploy/shared/cloud-init.yaml.tpl +6 -3
- package/dist/cli.js +306 -56
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +4 -0
- package/dist/daemon.js.map +1 -1
- package/dist/deploy/shared/cloud-init.yaml.tpl +6 -3
- package/dist/templates/agent-plugin/skills/humanloop/SKILL.md +2 -1
- package/dist/templates/orchestrator-plugin/skills/humanloop/SKILL.md +2 -1
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
- package/templates/agent-plugin/skills/humanloop/SKILL.md +2 -1
- package/templates/orchestrator-plugin/skills/humanloop/SKILL.md +2 -1
package/dist/daemon.js
CHANGED
|
@@ -31,6 +31,7 @@ __export(paths_exports, {
|
|
|
31
31
|
deployCredsPath: () => deployCredsPath,
|
|
32
32
|
deployDir: () => deployDir,
|
|
33
33
|
deployProviderDir: () => deployProviderDir,
|
|
34
|
+
deployRuntimePath: () => deployRuntimePath,
|
|
34
35
|
deployStateBackupPath: () => deployStateBackupPath,
|
|
35
36
|
deployStatePath: () => deployStatePath,
|
|
36
37
|
deployTailscaleEnvPath: () => deployTailscaleEnvPath,
|
|
@@ -219,6 +220,9 @@ function deployStatePath(provider) {
|
|
|
219
220
|
function deployStateBackupPath(provider) {
|
|
220
221
|
return join(deployProviderDir(provider), "terraform.tfstate.bak");
|
|
221
222
|
}
|
|
223
|
+
function deployRuntimePath(provider) {
|
|
224
|
+
return join(deployProviderDir(provider), "runtime.json");
|
|
225
|
+
}
|
|
222
226
|
function deployCredsPath(provider) {
|
|
223
227
|
return join(deployDir(), `${provider}.env`);
|
|
224
228
|
}
|