feat(worker): resolve and seed session skills before each run
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user