fix: rebranding, see [docs/name-change.md](docs/name-change.md) for details

This commit is contained in:
Fahad
2025-12-04 18:11:55 +04:00
parent bcfaccecd4
commit b2dc84992d
122 changed files with 1423 additions and 1056 deletions

View File

@@ -1,6 +1,6 @@
# Advanced Usage Guide
This guide covers advanced features, configuration options, and workflows for power users of the Zen MCP server.
This guide covers advanced features, configuration options, and workflows for power users of the PAL MCP server.
## Table of Contents
@@ -153,7 +153,7 @@ These only apply to models that support customizing token usage for extended thi
"Get o3 to do a security review of auth/ with thinking mode high"
# Complex debugging, letting claude pick the best model
"Use zen to debug this race condition with max thinking mode"
"Use pal to debug this race condition with max thinking mode"
# Architecture analysis with Gemini 3.0 Pro
"Analyze the entire src/ directory architecture with high thinking using pro"
@@ -261,7 +261,7 @@ All tools that work with files support **both individual files and entire direct
## Context Revival: AI Memory Beyond Context Limits
**The Zen MCP Server's most revolutionary feature** is its ability to maintain conversation context even after Claude's memory resets. This enables truly persistent AI collaboration across multiple sessions and context boundaries.
**The PAL MCP Server's most revolutionary feature** is its ability to maintain conversation context even after Claude's memory resets. This enables truly persistent AI collaboration across multiple sessions and context boundaries.
### **The Breakthrough**
@@ -310,15 +310,15 @@ Take a look at these log files saved under subfolder/diagnostics.log there's a b
crashes at launch. Think hard and go over each line, tallying it with corresponding code within the project. After
you've performed initial investigation, ask gemini pro to analyze the log files and the related code where you
suspect lies the bug and then formulate and implement a bare minimal fix. Must not regress. Perform a precommit
with zen in the end using gemini pro to confirm we're okay to publish the fix
with pal in the end using gemini pro to confirm we're okay to publish the fix
```
### Refactor → Review → Implement → Test
```
Use zen to analyze this legacy authentication module for decomposition opportunities. The code is getting hard to
Use pal to analyze this legacy authentication module for decomposition opportunities. The code is getting hard to
maintain and we need to break it down. Use gemini pro with high thinking mode to identify code smells and suggest
a modernization strategy. After reviewing the refactoring plan, implement the changes step by step and then
generate comprehensive tests with zen to ensure nothing breaks.
generate comprehensive tests with pal to ensure nothing breaks.
```
### Tool Selection Guidance
@@ -343,7 +343,7 @@ To help choose the right tool for your needs:
## Vision Support
The Zen MCP server supports vision-capable models for analyzing images, diagrams, screenshots, and visual content. Vision support works seamlessly with all tools and conversation threading.
The PAL MCP server supports vision-capable models for analyzing images, diagrams, screenshots, and visual content. Vision support works seamlessly with all tools and conversation threading.
**Supported Models:**
- **Gemini 3.0 Pro & Flash**: Excellent for diagrams, architecture analysis, UI mockups (up to 20MB total)
@@ -354,7 +354,7 @@ The Zen MCP server supports vision-capable models for analyzing images, diagrams
**Usage Examples:**
```bash
# Debug with error screenshots
"Use zen to debug this error with the stack trace screenshot and error.py"
"Use pal to debug this error with the stack trace screenshot and error.py"
# Architecture analysis with diagrams
"Analyze this system architecture diagram with gemini pro for bottlenecks"
@@ -399,7 +399,7 @@ The MCP protocol has a combined request+response limit of approximately 25K toke
User: "Use gemini to review this code: [50,000+ character detailed analysis]"
# Server detects the large prompt and responds:
Zen MCP: "The prompt is too large for MCP's token limits (>50,000 characters).
PAL MCP: "The prompt is too large for MCP's token limits (>50,000 characters).
Please save the prompt text to a temporary file named 'prompt.txt' and resend
the request with an empty prompt string and the absolute file path included
in the absolute_file_paths parameter, along with any other files you wish to share as context."