feat(worker): resolve and seed session skills before each run

This commit is contained in:
Mika Kuns
2026-07-23 16:47:14 +02:00
committed by mika kuns
parent dea2b7db8b
commit 4626481359
17 changed files with 546 additions and 13 deletions
@@ -10,8 +10,12 @@ public sealed record ClaudeRunConfig(
int? MaxTurns = null,
string? PermissionMode = null,
string? McpConfigPath = null,
string? AllowedTools = null
);
string? AllowedTools = null,
IReadOnlyList<string>? SkillNames = null
)
{
public IReadOnlyList<string> SkillNames { get; init; } = SkillNames ?? Array.Empty<string>();
}
public sealed class ClaudeArgsBuilder
{