@sentry/junior 0.18.1 → 0.20.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.
|
@@ -51,6 +51,7 @@ function readBotConfig(env) {
|
|
|
51
51
|
userName: env.JUNIOR_BOT_NAME ?? "junior",
|
|
52
52
|
modelId: env.AI_MODEL ?? "anthropic/claude-sonnet-4.6",
|
|
53
53
|
fastModelId: env.AI_FAST_MODEL ?? env.AI_MODEL ?? "anthropic/claude-haiku-4.5",
|
|
54
|
+
visionModelId: toOptionalTrimmed(env.AI_VISION_MODEL),
|
|
54
55
|
turnTimeoutMs: parseAgentTurnTimeoutMs(
|
|
55
56
|
env.AGENT_TURN_TIMEOUT_MS,
|
|
56
57
|
maxTurnTimeoutMs
|
|
@@ -256,6 +257,9 @@ var SANDBOX_SKILLS_ROOT = `${SANDBOX_WORKSPACE_ROOT}/skills`;
|
|
|
256
257
|
function sandboxSkillDir(skillName) {
|
|
257
258
|
return `${SANDBOX_SKILLS_ROOT}/${skillName}`;
|
|
258
259
|
}
|
|
260
|
+
function sandboxSkillFile(skillName) {
|
|
261
|
+
return `${sandboxSkillDir(skillName)}/SKILL.md`;
|
|
262
|
+
}
|
|
259
263
|
|
|
260
264
|
// src/chat/sandbox/runtime-dependency-snapshots.ts
|
|
261
265
|
var SNAPSHOT_CACHE_PREFIX = "junior:sandbox_snapshot_profile";
|
|
@@ -811,6 +815,7 @@ export {
|
|
|
811
815
|
SANDBOX_WORKSPACE_ROOT,
|
|
812
816
|
SANDBOX_SKILLS_ROOT,
|
|
813
817
|
sandboxSkillDir,
|
|
818
|
+
sandboxSkillFile,
|
|
814
819
|
buildNonInteractiveShellScript,
|
|
815
820
|
runNonInteractiveCommand,
|
|
816
821
|
getVercelSandboxCredentials,
|
package/dist/cli/check.js
CHANGED
package/dist/cli/init.js
CHANGED