Skip to content

Commit 2b7be74

Browse files
bricefclaude
andcommitted
Document actor deactivation in actor_update description
Actors are deactivated (not deleted) to preserve audit trail integrity. Use `actor update <name> --active false` to revoke access. The richer description surfaces this in the MCP tool guidance. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d19d66f commit 2b7be74

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

internal/model/operations.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ func Operations() []Operation {
237237
Create("/actors", "Create an actor").Name("actor_create").Role(RoleAdmin).
238238
Input(CreateActorParams{}).Output(Actor{}).Build(),
239239
Update("/actors/{name}", "Update an actor").Name("actor_update").Role(RoleAdmin).
240+
Desc("Update actor details. Set --active false to deactivate (revokes API key access, preserves audit history). Set --active true to reactivate.").
240241
Input(UpdateActorParams{}).Output(Actor{}).Build(),
241242

242243
// Boards

0 commit comments

Comments
 (0)