apply method
Defines whether to apply this code based on the contents of context.
Return true if applicable.
contextの内容を元にこのコードを適用するかどうかを決定する。
適用する場合trueを返す。
Implementation
@override
bool apply(ExecContext context) {
final claudeCode =
context.yaml.getAsMap("generative_ai").getAsMap("claude_code");
final mcp = claudeCode.getAsMap("mcp");
final notion = mcp.getAsMap("notion");
return notion.get("enable", false);
}