Skip to content

Commit 9cc2edd

Browse files
meimakesclaude
andcommitted
Rename to pokeclaw
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3687d98 commit 9cc2edd

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Contributing
22

3-
Thanks for your interest in contributing to coding-agent-mcp!
3+
Thanks for your interest in contributing to pokeclaw!
44

55
## Getting started
66

77
```bash
8-
git clone https://github.com/meimakes/coding-agent-mcp.git
9-
cd coding-agent-mcp
8+
git clone https://github.com/meimakes/pokeclaw.git
9+
cd pokeclaw
1010
npm install
1111
npm run dev
1212
```
@@ -36,7 +36,7 @@ Add tests for new functionality in `src/*.test.ts` files.
3636

3737
## Reporting issues
3838

39-
Open an issue at https://github.com/meimakes/coding-agent-mcp/issues with:
39+
Open an issue at https://github.com/meimakes/pokeclaw/issues with:
4040
- Steps to reproduce
4141
- Expected vs actual behavior
4242
- Node.js version and OS

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# coding-agent-mcp
1+
# pokeclaw
22

33
An MCP server (SSE transport) that lets any MCP client spawn and control [Codex CLI](https://github.com/openai/codex) and [Claude Code](https://docs.anthropic.com/en/docs/claude-code) sessions on the host machine.
44

@@ -37,8 +37,8 @@ Only the agent(s) you plan to use need to be installed. Claude Code requires OAu
3737
## Setup
3838

3939
```bash
40-
git clone https://github.com/meimakes/coding-agent-mcp.git
41-
cd coding-agent-mcp
40+
git clone https://github.com/meimakes/pokeclaw.git
41+
cd pokeclaw
4242
npm install
4343
npm run build
4444
```
@@ -212,14 +212,14 @@ The recommended approach is a **LaunchAgent** (not a LaunchDaemon):
212212
<plist version="1.0">
213213
<dict>
214214
<key>Label</key>
215-
<string>dev.coding-agent-mcp.main</string>
215+
<string>dev.pokeclaw.main</string>
216216
<key>ProgramArguments</key>
217217
<array>
218218
<string>/opt/homebrew/bin/node</string>
219-
<string>/path/to/coding-agent-mcp/dist/index.js</string>
219+
<string>/path/to/pokeclaw/dist/index.js</string>
220220
</array>
221221
<key>WorkingDirectory</key>
222-
<string>/path/to/coding-agent-mcp</string>
222+
<string>/path/to/pokeclaw</string>
223223
<key>EnvironmentVariables</key>
224224
<dict>
225225
<key>AUTH_TOKEN</key>
@@ -238,19 +238,19 @@ The recommended approach is a **LaunchAgent** (not a LaunchDaemon):
238238
<key>KeepAlive</key>
239239
<true/>
240240
<key>StandardOutPath</key>
241-
<string>/tmp/coding-agent-mcp.log</string>
241+
<string>/tmp/pokeclaw.log</string>
242242
<key>StandardErrorPath</key>
243-
<string>/tmp/coding-agent-mcp.log</string>
243+
<string>/tmp/pokeclaw.log</string>
244244
<key>ThrottleInterval</key>
245245
<integer>15</integer>
246246
</dict>
247247
</plist>
248248
```
249249

250-
Save to `~/Library/LaunchAgents/dev.coding-agent-mcp.main.plist`, then:
250+
Save to `~/Library/LaunchAgents/dev.pokeclaw.main.plist`, then:
251251

252252
```bash
253-
launchctl load ~/Library/LaunchAgents/dev.coding-agent-mcp.main.plist
253+
launchctl load ~/Library/LaunchAgents/dev.pokeclaw.main.plist
254254
```
255255

256256
LaunchAgents run in the Aqua (GUI) session, which keeps keychain access alive across reboots. `KeepAlive` restarts the server if it crashes.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "coding-agent-mcp",
2+
"name": "pokeclaw",
33
"version": "1.0.0",
44
"description": "MCP server for spawning and controlling Codex CLI and Claude Code sessions",
55
"type": "module",
@@ -32,11 +32,11 @@
3232
"license": "MIT",
3333
"repository": {
3434
"type": "git",
35-
"url": "git+https://github.com/meimakes/coding-agent-mcp.git"
35+
"url": "git+https://github.com/meimakes/pokeclaw.git"
3636
},
37-
"homepage": "https://github.com/meimakes/coding-agent-mcp#readme",
37+
"homepage": "https://github.com/meimakes/pokeclaw#readme",
3838
"bugs": {
39-
"url": "https://github.com/meimakes/coding-agent-mcp/issues"
39+
"url": "https://github.com/meimakes/pokeclaw/issues"
4040
},
4141
"engines": {
4242
"node": ">=20"

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async function assertPathAllowed(targetPath: string): Promise<string> {
5858
// --- MCP Server ---
5959
function createServer(): McpServer {
6060
const server = new McpServer({
61-
name: "coding-agent-mcp",
61+
name: "pokeclaw",
6262
version: "1.0.0",
6363
});
6464

0 commit comments

Comments
 (0)