ticket115: snapshot runtime skills assignés + durcissement idea_skill_read

This commit is contained in:
2026-07-31 13:56:18 +02:00
parent fe5fe7cb70
commit fbe3c51fd4
8 changed files with 611 additions and 215 deletions

View File

@ -1353,7 +1353,7 @@ impl OrchestratorService {
&self,
project: &Project,
name: String,
_requester: ConversationParty,
requester: ConversationParty,
) -> Result<OrchestratorOutcome, AppError> {
let read_skill = self.read_skill.as_deref().ok_or_else(|| {
AppError::Invalid("the idea_skill_read tool is not configured".to_owned())
@ -1361,7 +1361,8 @@ impl OrchestratorService {
let md = read_skill
.execute(ReadSkillInput {
name: name.clone(),
project_root: project.root.clone(),
project: project.clone(),
requester,
})
.await?;
Ok(OrchestratorOutcome {