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
8 changes: 4 additions & 4 deletions README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ scoop install ripgrep
```bash
claude mcp add duul \
-e OPENAI_API_KEY=sk-... \
-- npx -y duul
-- npx -y @planningo/duul
```

또는 프로젝트 레벨 `.mcp.json` 파일에 수동으로 추가합니다:
Expand All @@ -55,7 +55,7 @@ claude mcp add duul \
"mcpServers": {
"duul": {
"command": "npx",
"args": ["-y", "duul"],
"args": ["-y", "@planningo/duul"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
Expand All @@ -73,7 +73,7 @@ claude mcp add duul \
"mcpServers": {
"duul": {
"command": "npx",
"args": ["-y", "duul"],
"args": ["-y", "@planningo/duul"],
"env": {
"OPENAI_API_KEY": "sk-...",
"REVIEW_PROVIDER": "openai"
Expand All @@ -92,7 +92,7 @@ npm install
npm run build
```

그런 다음 MCP 설정에서 `npx -y duul` 대신 `node /absolute/path/to/duul/build/index.js`를 사용하세요.
그런 다음 MCP 설정에서 `npx -y @planningo/duul` 대신 `node /absolute/path/to/duul/build/index.js`를 사용하세요.

설치 후, 자연어로 요청하면 됩니다: **"DUUL로 개발 진행해줘"** 또는 **"run DUUL"**.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ scoop install ripgrep
```bash
claude mcp add duul \
-e OPENAI_API_KEY=sk-... \
-- npx -y duul
-- npx -y @planningo/duul
```

Or add manually to your project-level `.mcp.json`:
Expand All @@ -55,7 +55,7 @@ Or add manually to your project-level `.mcp.json`:
"mcpServers": {
"duul": {
"command": "npx",
"args": ["-y", "duul"],
"args": ["-y", "@planningo/duul"],
"env": {
"OPENAI_API_KEY": "sk-..."
}
Expand All @@ -73,7 +73,7 @@ Add the following to your `claude_desktop_config.json`:
"mcpServers": {
"duul": {
"command": "npx",
"args": ["-y", "duul"],
"args": ["-y", "@planningo/duul"],
"env": {
"OPENAI_API_KEY": "sk-...",
"REVIEW_PROVIDER": "openai"
Expand All @@ -92,7 +92,7 @@ npm install
npm run build
```

Then point the MCP config at `node /absolute/path/to/duul/build/index.js` instead of `npx -y duul`.
Then point the MCP config at `node /absolute/path/to/duul/build/index.js` instead of `npx -y @planningo/duul`.

Once installed, just ask in natural language: **"run DUUL"** or **"use DUUL for this"**.

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "duul",
"name": "@planningo/duul",
"version": "1.0.0",
"description": "DUUL — Dual-phase Upfront-plan & Unit-verify Loop. MCP server for LLM peer review of plans and code.",
"type": "module",
Expand Down Expand Up @@ -49,6 +49,9 @@
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"openai": "^6.1.0",
Expand Down
Loading