idea-manager 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,36 +1,120 @@
1
- This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
1
+ # IM (Idea Manager)
2
2
 
3
- ## Getting Started
3
+ > 자유롭게 아이디어를 쏟아내면, AI가 구조화해드립니다.
4
4
 
5
- First, run the development server:
5
+ 브레인스토밍 텍스트를 AI가 분석하여 실행 가능한 작업 트리로 변환하고, 각 작업에 대한 프롬프트를 생성하여 MCP Server를 통해 AI 에이전트가 자율적으로 실행할 수 있게 하는 도구입니다.
6
+
7
+ ## 핵심 워크플로우
8
+
9
+ ```
10
+ 브레인스토밍 → AI 구조화 → 프롬프트 생성 → MCP 실행
11
+ ```
12
+
13
+ ### 1. 브레인스토밍
14
+
15
+ 자유로운 형태로 아이디어를 작성합니다. 구조나 형식에 구애받지 않고 생각나는 대로 써내려갑니다.
16
+
17
+ ### 2. AI 구조화
18
+
19
+ AI가 브레인스토밍 텍스트를 분석하여 계층형 작업 트리로 변환합니다.
20
+ 모호한 부분이 있으면 AI가 질문을 던지고, 채팅을 통해 답변하면 구조가 점점 정교해집니다.
21
+
22
+ ```
23
+ 프로젝트
24
+ ├── 기능 A (feature)
25
+ │ ├── 작업 A-1 (task)
26
+ │ └── 작업 A-2 (task)
27
+ ├── 기능 B (feature)
28
+ │ └── 버그 수정 (bug)
29
+ └── 아이디어 메모 (idea)
30
+ ```
31
+
32
+ ### 3. 프롬프트 생성
33
+
34
+ 구조화된 각 항목에 대해 AI가 실행 가능한 프롬프트를 자동 생성합니다.
35
+ 수동으로 편집하거나 직접 작성할 수도 있습니다.
36
+
37
+ ### 4. MCP 실행
38
+
39
+ 내장된 MCP Server를 통해 Claude 등 AI 에이전트가 작업을 조회하고, 상태를 업데이트하며, 순차적으로 실행할 수 있습니다.
40
+
41
+ ## 설치 및 사용
6
42
 
7
43
  ```bash
44
+ npm install -g idea-manager
45
+ ```
46
+
47
+ ### 웹 UI
48
+
49
+ ```bash
50
+ # 개발 서버
8
51
  npm run dev
9
- # or
10
- yarn dev
11
- # or
12
- pnpm dev
13
- # or
14
- bun dev
52
+
53
+ # 또는 CLI로 실행
54
+ im start
55
+ ```
56
+
57
+ `http://localhost:3456` 에서 웹 UI에 접속합니다.
58
+
59
+ ### MCP Server
60
+
61
+ ```bash
62
+ im mcp
63
+ ```
64
+
65
+ Claude Desktop 등에서 MCP Server로 연결하여 사용할 수 있습니다.
66
+
67
+ #### claude_desktop_config.json 설정 예시
68
+
69
+ ```json
70
+ {
71
+ "mcpServers": {
72
+ "idea-manager": {
73
+ "command": "npx",
74
+ "args": ["-y", "idea-manager", "mcp"]
75
+ }
76
+ }
77
+ }
15
78
  ```
16
79
 
17
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
80
+ ### MCP 제공 도구
18
81
 
19
- You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
82
+ | 도구 | 설명 |
83
+ |------|------|
84
+ | `list-projects` | 프로젝트 목록 조회 |
85
+ | `get-project-context` | 프로젝트 전체 구조와 진행 상태 조회 |
86
+ | `get-next-task` | 다음 실행 가능한 작업과 프롬프트 조회 |
87
+ | `get-prompt` | 특정 항목의 프롬프트 조회 |
88
+ | `update-status` | 작업 상태 변경 (pending / in_progress / done) |
89
+ | `report-completion` | 작업 완료 보고 (자동 잠금) |
20
90
 
21
- This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
91
+ ## 주요 기능
22
92
 
23
- ## Learn More
93
+ - **자유 형식 브레인스토밍** - 구조 없이 아이디어를 쏟아내는 에디터
94
+ - **AI 대화형 구조화** - AI가 질문하고 유저가 답변하며 구조를 정교화
95
+ - **계층형 작업 트리** - feature / task / bug / idea / note 유형 분류
96
+ - **잠금/해제 시스템** - 작업 실행 순서를 제어하는 Lock 메커니즘
97
+ - **프롬프트 자동 생성** - 각 작업에 대한 실행 프롬프트 생성
98
+ - **MCP Server 내장** - AI 에이전트 자율 실행 지원
99
+ - **로컬 우선** - SQLite 기반, 데이터는 `~/.idea-manager/`에 저장
24
100
 
25
- To learn more about Next.js, take a look at the following resources:
101
+ ## 기술 스택
26
102
 
27
- - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28
- - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
103
+ | 영역 | 기술 |
104
+ |------|------|
105
+ | Frontend | Next.js, React 19, TypeScript, Tailwind CSS 4 |
106
+ | Backend | Next.js API Routes |
107
+ | Database | SQLite (better-sqlite3) |
108
+ | AI | Anthropic Claude (Agent SDK) |
109
+ | MCP | Model Context Protocol (stdio) |
110
+ | CLI | Commander.js |
29
111
 
30
- You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
112
+ ## 환경 변수
31
113
 
32
- ## Deploy on Vercel
114
+ ```bash
115
+ ANTHROPIC_API_KEY=sk-ant-... # Claude API 키 (AI 기능에 필요)
116
+ ```
33
117
 
34
- The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
118
+ ## 라이선스
35
119
 
36
- Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
120
+ MIT
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "idea-manager",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "AI 기반 브레인스토밍 → 구조화 → 프롬프트 생성 도구. MCP Server 내장.",
5
- "keywords": ["brainstorm", "ai", "mcp", "idea", "structuring", "prompt"],
5
+ "keywords": [
6
+ "brainstorm",
7
+ "ai",
8
+ "mcp",
9
+ "idea",
10
+ "structuring",
11
+ "prompt"
12
+ ],
6
13
  "author": "navskh",
7
14
  "license": "MIT",
8
15
  "repository": {
@@ -0,0 +1,19 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" stop-color="#6366f1"/>
5
+ <stop offset="100%" stop-color="#8b5cf6"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <rect width="512" height="512" rx="96" fill="url(#bg)"/>
9
+ <text x="256" y="310" font-family="system-ui, -apple-system, sans-serif" font-size="260" font-weight="800" fill="white" text-anchor="middle" letter-spacing="-12">IM</text>
10
+ <circle cx="390" cy="130" r="28" fill="#fbbf24"/>
11
+ <line x1="390" y1="90" x2="390" y2="70" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
12
+ <line x1="390" y1="170" x2="390" y2="190" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
13
+ <line x1="350" y1="130" x2="330" y2="130" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
14
+ <line x1="430" y1="130" x2="450" y2="130" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
15
+ <line x1="362" y1="102" x2="348" y2="88" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
16
+ <line x1="418" y1="158" x2="432" y2="172" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
17
+ <line x1="418" y1="102" x2="432" y2="88" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
18
+ <line x1="362" y1="158" x2="348" y2="172" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
19
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <defs>
3
+ <linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" stop-color="#6366f1"/>
5
+ <stop offset="100%" stop-color="#8b5cf6"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <rect width="512" height="512" rx="96" fill="url(#bg)"/>
9
+ <text x="256" y="310" font-family="system-ui, -apple-system, sans-serif" font-size="260" font-weight="800" fill="white" text-anchor="middle" letter-spacing="-12">IM</text>
10
+ <circle cx="390" cy="130" r="28" fill="#fbbf24"/>
11
+ <line x1="390" y1="90" x2="390" y2="70" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
12
+ <line x1="390" y1="170" x2="390" y2="190" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
13
+ <line x1="350" y1="130" x2="330" y2="130" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
14
+ <line x1="430" y1="130" x2="450" y2="130" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
15
+ <line x1="362" y1="102" x2="348" y2="88" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
16
+ <line x1="418" y1="158" x2="432" y2="172" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
17
+ <line x1="418" y1="102" x2="432" y2="88" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
18
+ <line x1="362" y1="158" x2="348" y2="172" stroke="#fbbf24" stroke-width="8" stroke-linecap="round"/>
19
+ </svg>
Binary file