Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ Reinstall the CLI and make sure the npm global bin directory is on your PATH:
npm install -g @anthropic-ai/claude-code
```

## Claude Desktop, kurduğum eklenti için "bu paket bu platform için değil" diyor

Her `.mcpb` paketi **tek bir işletim sistemi** içindir; içinde yalnızca o
sistemin ikili dosyası vardır. Yanlış paketi kurarsan Claude Desktop uyarı
verir ve eklenti çalışmaz.

Son sürümden işletim sistemine uyanı indir:

| İşletim sistemi | Dosya |
|---|---|
| Windows (32 ve 64 bit fark etmez) | `claude-code-setup-windows.mcpb` |
| macOS | `claude-code-setup-macos.mcpb` |
| Linux | `claude-code-setup-linux.mcpb` |

Eski sürümlerde Windows paketinin adında `win32` geçiyordu. Bu "32 bit"
demek değil — `win32`, Windows'un platform kimliğidir ve 64 bit makineler
için de doğru dosyadır. Kafa karışıklığını önlemek için adlandırma
`windows` olarak değiştirildi.

Yanlış paketi kurduysan: Claude Desktop → Settings → Extensions'tan kaldır,
doğru dosyayı sürükle.

## `memory-search` says "Memory database not found"

Run `memory-index` first. The database lives at `~/.claude/memory_index.db`. If your notes are not in the default `~/claude_global_memory/knowledge` directory, pass `--source`:
Expand Down
7 changes: 6 additions & 1 deletion package-extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ def main() -> int:
manifest["server"]["mcp_config"]["command"] = "${__dirname}/" + entry
manifest.setdefault("compatibility", {})["platforms"] = [platform]

default_name = f"{manifest['name']}-{manifest['version']}-{platform}.mcpb"
# Dosya adinda platform KIMLIGINI kullanma: "win32" insan gozune
# "32 bit Windows" gibi gorunuyor ve kullanicilar 64 bit makinede
# yanlislikla baska platformun paketini seciyor. Adlar CI'in urettigi
# release dosya adlariyla da ayni olsun.
friendly = {"win32": "windows", "darwin": "macos", "linux": "linux"}
default_name = f"{manifest['name']}-{friendly.get(platform, platform)}.mcpb"
out = pathlib.Path(sys.argv[2]) if len(sys.argv) > 2 else ROOT / default_name

with zipfile.ZipFile(out, "w", zipfile.ZIP_DEFLATED) as z:
Expand Down
Loading