From 8d849d76c991e116dbd4d4fa4ee2f074d8949995 Mon Sep 17 00:00:00 2001 From: "Michael J. Jabbour" Date: Mon, 30 Mar 2026 03:18:10 -0400 Subject: [PATCH] docs: update role-definitions reference to use load_skill instead of bundle context file Update AGENT_AUTHORING.md line 262 to point to the role-definitions skill via load_skill() instead of the routing-matrix bundle's context/role-definitions.md. The new reference includes additional benefits available through the skill: decision flowchart, model tier grid, and fallback chain best practices. --- docs/AGENT_AUTHORING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/AGENT_AUTHORING.md b/docs/AGENT_AUTHORING.md index 76743943..89c31782 100644 --- a/docs/AGENT_AUTHORING.md +++ b/docs/AGENT_AUTHORING.md @@ -259,7 +259,7 @@ With the list form, the system tries `vision` first. If no installed provider ma | `fast` | Quick utility tasks — parsing, classification, file ops, bulk work | | `general` | Versatile catch-all, no specialization needed | -> **Choosing the right role?** See the routing-matrix bundle's `context/role-definitions.md` for detailed guidance on each role, including "when to use / when NOT to use" recommendations. +> **Choosing the right role?** Use `load_skill(skill_name='role-definitions')` for detailed guidance on each role, including decision flowchart, "when to use / when NOT to use" recommendations, model tier grid, and fallback chain best practices. Every routing matrix must define `general` and `fast`. Other roles are optional — if a role isn't defined in the active matrix, the fallback chain skips it.