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
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ body:
12
12
attributes:
13
13
label: Project Version
14
14
description: "Which version are you using? (To see version: ./run-server.sh -v)"
15
-
placeholder: "e.g., 5.1.0"
15
+
placeholder: "e.g., 9.4.1"
16
16
validations:
17
17
required: true
18
18
@@ -29,7 +29,7 @@ body:
29
29
id: logs
30
30
attributes:
31
31
label: Relevant Log Output
32
-
description: "Please copy and paste any relevant log output. Logs are stored under the `logs` folder in the zen folder. You an also use `./run-server.sh -f` to see logs"
32
+
description: "Please copy and paste any relevant log output. Logs are stored under the `logs` folder in the pal folder. You an also use `./run-server.sh -f` to see logs"
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/tool_addition.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
name: 🛠️ New Gemini Tool Proposal
2
-
description: Propose a new Zen MCP tool (e.g., `summarize`, `fixer`, `refactor`)
2
+
description: Propose a new PAL MCP tool (e.g., `summarize`, `fixer`, `refactor`)
3
3
labels: ["enhancement", "new-tool"]
4
4
body:
5
5
- type: input
@@ -15,7 +15,7 @@ body:
15
15
id: purpose
16
16
attributes:
17
17
label: What is the primary purpose of this tool?
18
-
description: "Explain the tool's core function and the value it provides to developers using Claude + Zen."
18
+
description: "Explain the tool's core function and the value it provides to developers using Claude + PAL."
19
19
placeholder: "This tool will automatically generate comprehensive documentation from code, extracting class and function signatures, docstrings, and creating usage examples."
20
20
validations:
21
21
required: true
@@ -27,7 +27,7 @@ body:
27
27
description: "Show how a user would invoke this tool through Claude and what the expected output would look like."
28
28
placeholder: |
29
29
**User prompt to Claude:**
30
-
"Use zen to generate documentation for my entire src/ directory"
30
+
"Use pal to generate documentation for my entire src/ directory"
31
31
32
32
**Expected behavior:**
33
33
- Analyze all Python files in src/
@@ -61,7 +61,7 @@ body:
61
61
id: system-prompt
62
62
attributes:
63
63
label: Proposed System Prompt (Optional)
64
-
description: "If you have ideas for how zen should be prompted for this tool, share them here."
64
+
description: "If you have ideas for how pal should be prompted for this tool, share them here."
65
65
placeholder: |
66
66
You are an expert technical documentation generator. Your task is to create comprehensive, user-friendly documentation from source code...
Copy file name to clipboardExpand all lines: AGENTS.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,29 +5,29 @@ See `requirements.txt` and `requirements-dev.txt`
5
5
Also read CLAUDE.md and CLAUDE.local.md if available.
6
6
7
7
## Project Structure & Module Organization
8
-
Zen MCP Server centers on `server.py`, which exposes MCP entrypoints and coordinates multi-model workflows.
8
+
PAL MCP Server centers on `server.py`, which exposes MCP entrypoints and coordinates multi-model workflows.
9
9
Feature-specific tools live in `tools/`, provider integrations in `providers/`, and shared helpers in `utils/`.
10
10
Prompt and system context assets stay in `systemprompts/`, while configuration templates and automation scripts live under `conf/`, `scripts/`, and `docker/`.
11
11
Unit tests sit in `tests/`; simulator-driven scenarios and log utilities are in `simulator_tests/` with the `communication_simulator_test.py` harness.
12
12
Authoritative documentation and samples live in `docs/`, and runtime diagnostics are rotated in `logs/`.
13
13
14
14
## Build, Test, and Development Commands
15
-
-`source .zen_venv/bin/activate` – activate the managed Python environment.
15
+
-`source .pal_venv/bin/activate` – activate the managed Python environment.
16
16
-`./run-server.sh` – install dependencies, refresh `.env`, and launch the MCP server locally.
17
17
-`./code_quality_checks.sh` – run Ruff autofix, Black, isort, and the default pytest suite.
18
18
-`python communication_simulator_test.py --quick` – smoke-test orchestration across tools and providers.
19
19
-`./run_integration_tests.sh [--with-simulator]` – exercise provider-dependent flows against remote or Ollama models.
0 commit comments