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: CLAUDE.md
+78-9Lines changed: 78 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ When operating to complete a task, adhere strictly to the following constraints
8
8
9
9
### Must-Do (Defaults & Assumptions)
10
10
-**Zero Interruption Policy**: If a decision is needed and no explicit instruction exists, you MUST make an informed, safe assumption based on idiomatic Go best practices and document it in the PR/commit. Do NOT ask for human clarification mid-task.
11
-
-**Test-Driven Progress**: You must write a failing Go test (`_test.go`) for every sub-task before implementing the feature.
11
+
-**Test-Driven Progress**: You must write a failing Go test (`_test.go`) for every sub-task before implementing the feature.
12
12
-**Graceful Fallbacks**: If an API or dependency lacks documentation, use mock interfaces or a simplified implementation rather than blocking the task.
13
13
-**Continuous Logging**: Document every step completed in an `execution_log.md` within the current working directory to maintain state.
14
14
@@ -28,23 +28,30 @@ Only halt execution and ask a human IF:
28
28
29
29
MCPProxy is a Go-based desktop application that acts as a smart proxy for AI agents using the Model Context Protocol (MCP). It provides intelligent tool discovery, massive token savings, and built-in security quarantine against malicious MCP servers.
30
30
31
-
## Editions (Personal & Teams)
31
+
## Editions (Personal & Server)
32
32
33
33
MCPProxy is built in two editions from the same codebase using Go build tags:
34
34
35
35
| Edition | Build Command | Binary | Distribution |
36
36
|---------|--------------|--------|-------------|
37
37
|**Personal** (default) |`go build ./cmd/mcpproxy`|`mcpproxy`| macOS DMG, Windows installer, Linux tar.gz |
38
-
|**Teams**|`go build -tags teams ./cmd/mcpproxy`|`mcpproxy-teams`| Docker image, .deb package, Linux tar.gz |
38
+
|**Server**|`go build -tags server ./cmd/mcpproxy`|`mcpproxy-server`| Docker image, .deb package, Linux tar.gz |
39
+
40
+
> Every feature decision should ask: "Does this make the personal edition so good that developers tell their teammates about it?"
0 commit comments