MCPcopy Create free account
hub / github.com/DerekYRC/mini-claude-code / HookEvent

Class HookEvent

src/main/java/org/miniclaudecode/hook/HookEvent.java:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package org.miniclaudecode.hook;
2
3public class HookEvent {
4
5 public static final String USER_PROMPT_SUBMIT = "UserPromptSubmit"; // 用户输入提交后
6
7 public static final String PRE_TOOL_USE = "PreToolUse"; // 工具执行前
8
9 public static final String POST_TOOL_USE = "PostToolUse"; // 工具执行后
10
11 public static final String STOP = "Stop"; // Agent 循环停止时
12
13 private HookEvent() {
14 }
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected