@@ -39,7 +39,7 @@ export class Agents extends ClientSDK {
3939 * limit: Pagination limit (default 20, max 100)
4040 * name: Optional name filter (case-insensitive partial match)
4141 * db: Database session (injected)
42- * namespace_key: Resolved namespace for the request
42+ * principal: Authorized request principal
4343 *
4444 * Returns:
4545 * ListAgentsResponse with agent summaries and pagination info
@@ -80,6 +80,7 @@ export class Agents extends ClientSDK {
8080 * Args:
8181 * request: Agent metadata and step schemas
8282 * db: Database session (injected)
83+ * principal: Authorized request principal
8384 *
8485 * Returns:
8586 * InitAgentResponse with created flag and the effective controls
@@ -106,8 +107,7 @@ export class Agents extends ClientSDK {
106107 * Args:
107108 * agent_name: Agent identifier
108109 * db: Database session (injected)
109- * namespace_key: Resolved namespace; agents in another namespace
110- * return 404 (non-disclosing).
110+ * principal: Authorized request principal
111111 *
112112 * Returns:
113113 * GetAgentResponse with agent metadata and step list
@@ -140,6 +140,7 @@ export class Agents extends ClientSDK {
140140 * agent_name: Agent identifier
141141 * request: Lists of step/evaluator identifiers to remove
142142 * db: Database session (injected)
143+ * principal: Authorized request principal
143144 *
144145 * Returns:
145146 * PatchAgentResponse with lists of actually removed items
@@ -185,7 +186,7 @@ export class Agents extends ClientSDK {
185186 * target_type: Optional opaque target kind (paired with target_id)
186187 * target_id: Optional opaque target identifier (paired with target_type)
187188 * db: Database session (injected)
188- * namespace_key: Namespace scoping for the resolution (injected)
189+ * principal: Authorized request principal
189190 *
190191 * Returns:
191192 * AgentControlsResponse with controls matching the requested state filters
@@ -256,8 +257,7 @@ export class Agents extends ClientSDK {
256257 * cursor: Optional cursor for pagination (name of last evaluator from previous page)
257258 * limit: Pagination limit (default 20, max 100)
258259 * db: Database session (injected)
259- * namespace_key: Resolved namespace; agents in another namespace
260- * return 404 (non-disclosing).
260+ * principal: Authorized request principal
261261 *
262262 * Returns:
263263 * ListEvaluatorsResponse with evaluator schemas and pagination
@@ -287,8 +287,7 @@ export class Agents extends ClientSDK {
287287 * agent_name: Agent identifier
288288 * evaluator_name: Name of the evaluator
289289 * db: Database session (injected)
290- * namespace_key: Resolved namespace; agents in another namespace
291- * return 404 (non-disclosing).
290+ * principal: Authorized request principal
292291 *
293292 * Returns:
294293 * EvaluatorSchemaItem with schema details
0 commit comments