@@ -1779,7 +1779,11 @@ pub struct AutoDelegationOptions {
17791779pub struct SessionOptions {
17801780 /// Override the default model. Format: "provider/model" (e.g., "openai/gpt-4o").
17811781 pub model : Option < String > ,
1782- /// Enable built-in skills (4 skills: code-search, code-review, explain-code, find-bugs).
1782+ /// Compatibility flag for the built-in skill registry.
1783+ ///
1784+ /// Built-ins are already present in the default effective registry; `true`
1785+ /// requests an explicit built-in registry, while `false` does not remove
1786+ /// default built-ins.
17831787 pub builtin_skills : Option < bool > ,
17841788 /// Extra directories to scan for skill files (.md with YAML frontmatter).
17851789 pub skill_dirs : Option < Vec < String > > ,
@@ -3033,8 +3037,9 @@ impl Agent {
30333037 /// @param dir - Path to the agent directory (prompt/skills/schedules/tools)
30343038 /// @param workspace - Workspace directory each scheduled turn operates in
30353039 /// @param options - Optional session overrides merged into every schedule session
3036- /// (model, llmClient, sessionStore, …); `promptSlots`/`sessionId` set here are
3037- /// NOT overridden so a host can pin them per schedule
3040+ /// (model, llmClient, sessionStore, …). `promptSlots` is honored when
3041+ /// provided; otherwise the AgentDir `instructions.md` slot is used.
3042+ /// `sessionId` is always owned by the daemon and set to `schedule:<name>`.
30383043 #[ napi]
30393044 pub async fn serve_agent_dir (
30403045 & self ,
0 commit comments