quickclaude 1.0.1 → 1.0.8

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.
@@ -0,0 +1,22 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 22
19
+ - run: npm install -g npm@latest
20
+ - run: npm --version
21
+ - run: npm ci
22
+ - run: npm publish --provenance --access public
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Seunghyun Hong
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,16 +1,19 @@
1
1
  # quickclaude
2
2
 
3
+ CLI launcher for Claude Code.
3
4
  Quickly launch Claude Code in your project directories.
5
+ <img width="762" height="383" alt="Screenshot 2026-03-28 at 6 25 10 PM" src="https://github.com/user-attachments/assets/4f368300-9748-4190-87c1-f2a1fcfd8a63" />
6
+
4
7
 
5
8
  ```
6
9
  $ quickclaude
7
10
 
8
11
  ┌ quickclaude
9
12
 
10
- 프로젝트를 선택하세요
11
- │ ● ~/Documents/projects/autogeek
12
- │ ○ ~/Documents/projects/my-app
13
- │ ○ ~/Documents/projects/website
13
+ Select a project
14
+ │ ● ~/Documents/projects/my-app1
15
+ │ ○ ~/Documents/projects/my-app2
16
+ │ ○ ~/Documents/projects/my-app3
14
17
 
15
18
  ```
16
19
 
@@ -15,8 +15,16 @@ const CLAUDE_PROJECTS_DIR = join(homedir(), ".claude", "projects");
15
15
  function resolvePath(encoded) {
16
16
  const parts = encoded.replace(/^-/, "").split("-");
17
17
  let current = sep;
18
-
19
18
  let i = 0;
19
+
20
+ // Windows: "C--Users-..." → drive letter "C:" 처리
21
+ if (parts.length >= 1 && /^[A-Za-z]$/.test(parts[0])) {
22
+ const drive = parts[0].toUpperCase() + ":\\";
23
+ if (existsSync(drive)) {
24
+ current = drive;
25
+ i = 1;
26
+ }
27
+ }
20
28
  while (i < parts.length) {
21
29
  let matched = false;
22
30
  // 긴 조합부터 시도 (mcp-overwatch, Unreal Projects 등)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickclaude",
3
- "version": "1.0.1",
3
+ "version": "1.0.8",
4
4
  "description": "Quickly launch Claude Code in your project directories",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,6 +14,10 @@
14
14
  "cli",
15
15
  "launcher"
16
16
  ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/strurao/quickclaude.git"
20
+ },
17
21
  "author": "",
18
22
  "license": "MIT",
19
23
  "dependencies": {