Problem
PR #37 added the plugin logging convention to AGENTS.md but used the wrong variable name _client?.app?.log(). The actual plugin code destructures { client, directory } = ctx and calls client.app.log().
Both CodeRabbit and cubic flagged this mismatch in the review but it was not fixed before merge.
Fix
Update AGENTS.md line 16-17 to use client.app.log() instead of _client?.app?.log().
Reference
Problem
PR #37 added the plugin logging convention to AGENTS.md but used the wrong variable name
_client?.app?.log(). The actual plugin code destructures{ client, directory } = ctxand callsclient.app.log().Both CodeRabbit and cubic flagged this mismatch in the review but it was not fixed before merge.
Fix
Update AGENTS.md line 16-17 to use
client.app.log()instead of_client?.app?.log().Reference