You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5.**Remove tests without asking** - Always get permission first
51
51
6.**NODE_ENV** - To check if the CLI is in test mode, use the `isTestMode()` helper function.
52
52
7.**`process.exit`** - When creating a command, use `this.exit()` for consistent test mode handling.
53
+
8.**Truncate or clip fetched markdown documents** - When fetching external **markdown** documentation (`.md` URLs), always retrieve the **full content**. Do NOT use `head`, `tail`, line limits, or any truncation. Markdown docs are typically concise and the complete document is needed for accurate analysis. HTML and other formats may be truncated if necessary.
0 commit comments