leerness 1.9.167 โ 1.9.169
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/CHANGELOG.md +95 -0
- package/README.md +3 -3
- package/bin/harness.js +34 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,100 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.169 โ 2026-05-20
|
|
4
|
+
|
|
5
|
+
**๐ง Hotfix โ `_collectWorkspacePaths()` --include ๋ช
์ ์ cwd ์๋ ์ถ๊ฐ ์ ํจ.**
|
|
6
|
+
|
|
7
|
+
์์จ ๋ชจ๋ 99 ๋ผ์ด๋. 1.9.168 release ํ ๋ฐ๊ฒฌ๋ e2e flake (209/217) ์ ์๊ตฌ ํด๊ฒฐ.
|
|
8
|
+
|
|
9
|
+
### ๋ฌธ์ ์ง๋จ
|
|
10
|
+
- `cwd: os.tmpdir()` ๋ช
๋ น ์คํ ์ leerness๊ฐ cwd์ `.harness` ์๋ ๋ฐ๊ฒฌ โ ์นด์ดํธ +1
|
|
11
|
+
- `os.tmpdir()` ์ ์์กด `.harness` ๋๋ ํ ๋ฆฌ ์กด์ฌ ์ `--include` ๋ช
์ํ์ด๋ cwd ์ถ๊ฐ๋จ
|
|
12
|
+
- ๊ฒฐ๊ณผ: `brainstorm --include p1,p2` ํธ์ถ ์ "3๊ฐ ํ๋ก์ ํธ" (cwd + p1 + p2) ์๋ชป ์นด์ดํธ
|
|
13
|
+
- 1.9.168 ํ๊ท ์๋ โ 1.9.15 ์ด๋ ๋์ ๋ ์ ์ฌ ๋ฒ๊ทธ (ํ๊ฒฝ ์์กด flake)
|
|
14
|
+
- 24,877๊ฐ ๋์ leerness-* ์์ ๋๋ ํ ๋ฆฌ + ์์กด `Temp/.harness` ๊ฐ ํธ๋ฆฌ๊ฑฐ
|
|
15
|
+
|
|
16
|
+
### Fix โ _collectWorkspacePaths() (harness.js, 1.9.15 ๋์
ํจ์)
|
|
17
|
+
```javascript
|
|
18
|
+
function _collectWorkspacePaths(rootBase) {
|
|
19
|
+
const set = new Set();
|
|
20
|
+
const include = arg('--include', null);
|
|
21
|
+
// 1.9.169 fix: --include ๋ช
์ ์ cwd ์๋ ์ถ๊ฐ ์คํต (explicit-only)
|
|
22
|
+
if (!include) {
|
|
23
|
+
if (exists(path.join(rootBase, '.harness'))) set.add(rootBase);
|
|
24
|
+
}
|
|
25
|
+
// ... --all-apps ๋์ ์ ์ง
|
|
26
|
+
if (include) { /* explicit paths only */ }
|
|
27
|
+
return Array.from(set);
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
**์์น**: `--include` ๊ฐ ๋ช
์๋๋ฉด ์ฌ์ฉ์๊ฐ ์๋ํ explicit ๊ฒฝ๋ก๋ง ์ฌ์ฉ. `--all-apps` ๋จ๋
๋๋ ์ธ์ ์๋ ๊ฒฝ์ฐ ๊ธฐ์กด ๋์ (cwd ์๋ ์ถ๊ฐ) ์ ์ง.
|
|
32
|
+
|
|
33
|
+
### ์ํฅ ๋ฒ์
|
|
34
|
+
- `brainstorm --include`, `insights --include`, `handoff --include`, `reuse-map --include`, `retro --include`
|
|
35
|
+
- ๋ชจ๋ `--include` / ๋ค์ค ํ๋ก์ ํธ ๋ช
๋ น ์ ํํ ์นด์ดํธ
|
|
36
|
+
|
|
37
|
+
### Verified
|
|
38
|
+
- e2e **217/217 โ** (1.9.168 ์์ 209/217 โ 1.9.169 217/217 ํ๋ณต)
|
|
39
|
+
- stress-v114: 14/14 (hotfix 4 + e2e ํ๋ณต 3 + ๋์ ํ๊ท 7)
|
|
40
|
+
- ์ง๋จ ๊ฒ์ฆ: `os.tmpdir()/.harness` ์๋ฎฌ ํ๊ฒฝ์์๋ ์ ํ ์นด์ดํธ
|
|
41
|
+
- VERSION = 1.9.169 / autonomous-rounds = 99 / main ์๋ push 30 ๋ผ์ด๋ ์ฐ์
|
|
42
|
+
|
|
43
|
+
### ๋ค์ ๋ผ์ด๋ (1.9.170) โ ๐ 100 ๋ผ์ด๋ ๋ง์ผ์คํค ๋๋ฌ
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 1.9.168 โ 2026-05-20
|
|
48
|
+
|
|
49
|
+
**MCP bridge 3์ข
๋
ธ์ถ (web/pc/lsp) โ 50 โ 53 ๋๊ตฌ + ์ธ๋ถ AI ์๋ํ ๋ฅ๋ ฅ ์ง๊ฒฐ.**
|
|
50
|
+
|
|
51
|
+
์์จ ๋ชจ๋ 98 ๋ผ์ด๋. 1.9.165~167 ์์ leerness CLI ์ ์ถ๊ฐํ web/pc/lsp bridge 3์ข
์ MCP ๋๊ตฌ๋ก ๋
ธ์ถ โ ์ธ๋ถ AI (Claude, Codex, Gemini, Copilot)๊ฐ leerness ์ ์น/PC/LSP ์๋ํ ๋ฅ๋ ฅ์ **์ง์ ํธ์ถ** ๊ฐ๋ฅ.
|
|
52
|
+
|
|
53
|
+
### Added โ MCP ๋๊ตฌ 3์ข
|
|
54
|
+
| ๋๊ตฌ | ๋ผ์ฐํ
| ์ค๋ช
|
|
|
55
|
+
|---|---|---|
|
|
56
|
+
| `leerness_web` | `web check\|screenshot\|extract` | 1.9.165 playwright bridge MCP ๋
ธ์ถ |
|
|
57
|
+
| `leerness_pc` | `pc check\|click\|type\|screenshot` | 1.9.166 robotjs/nut-tree bridge MCP ๋
ธ์ถ |
|
|
58
|
+
| `leerness_lsp` | `lsp check\|symbols\|references` | 1.9.167 LSP ์ด๋ํฐ MCP ๋
ธ์ถ (typescript opt-in + regex fallback) |
|
|
59
|
+
|
|
60
|
+
### ๋ฉํฐ ์์ด์ ํธ ์ค์ผ์คํธ๋ ์ด์
๊ฐํ
|
|
61
|
+
1.9.156 `agents multi --execute` (์ค์ spawn + multi-signal consensus) ์ ๊ฒฐํฉํ๋ฉด:
|
|
62
|
+
- ์ธ๋ถ AI 1 (Claude) โ `leerness_web screenshot` (๊ฒ์ ์๋ฃ ์บก์ฒ)
|
|
63
|
+
- ์ธ๋ถ AI 2 (Codex) โ `leerness_lsp symbols` (์ฝ๋ ์ธํ
๋ฆฌ์ ์ค)
|
|
64
|
+
- ์ธ๋ถ AI 3 (Gemini) โ `leerness_pc screenshot` (UI ํ
์คํธ ์๋ํ)
|
|
65
|
+
|
|
66
|
+
โ **leerness ๊ฐ ๋ชจ๋ ์ธ๋ถ AI์ ๋๊ตฌ ๊ณต๊ธ๋ง ์ญํ ** (= ์ง์ ํ ๋ฒ์ฉ AI ํ๋ค์ค).
|
|
67
|
+
|
|
68
|
+
### MCP 53 ๋๊ตฌ ๋ง์ผ์คํค
|
|
69
|
+
| ๋ผ์ด๋ | ๋๊ตฌ ์ | ๋ง์ผ์คํค |
|
|
70
|
+
|---|---|---|
|
|
71
|
+
| 1.9.110 | 30 | Memory CRUD 5์ข
์์ฑ |
|
|
72
|
+
| 1.9.159 | 50 | Provider Registry CRUD ์์ฑ |
|
|
73
|
+
| **1.9.168** | **53** | **Bridge 3์ข
์ธ๋ถ ๋
ธ์ถ (web/pc/lsp)** |
|
|
74
|
+
|
|
75
|
+
### ์ฌ์ฉ ์์ (MCP tools/call)
|
|
76
|
+
```json
|
|
77
|
+
{ "name": "leerness_lsp", "arguments": { "sub": "symbols", "file": "src/api.ts" } }
|
|
78
|
+
{ "name": "leerness_web", "arguments": { "sub": "screenshot", "url": "https://example.com", "out": "shot.png" } }
|
|
79
|
+
{ "name": "leerness_pc", "arguments": { "sub": "click", "x": 800, "y": 400 } }
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### Verified
|
|
83
|
+
- e2e 217/217 baseline (1.9.167 ์ ์ง)
|
|
84
|
+
- stress-v113: 17/17 (MCP ๋ฑ๋ก 4 + tools/call ์ค ๋์ 4 + 6๋ฅ๋ ฅ ๋งคํธ๋ฆญ์ค 2 + ๋์ ํ๊ท 7)
|
|
85
|
+
- ์ค์ธก: `leerness_lsp symbols harness.js` (MCP) โ 472 symbols
|
|
86
|
+
- VERSION = 1.9.168 / autonomous-rounds = 98 / main ์๋ push 29 ๋ผ์ด๋ ์ฐ์
|
|
87
|
+
|
|
88
|
+
### 6๋ฅ๋ ฅ ๋งคํธ๋ฆญ์ค (์ํฅ ์์, 100 ๋ผ์ด๋ ๋ง์ผ์คํค ์๋ฐ)
|
|
89
|
+
| ์์ญ | 1.9.167 | **1.9.168** |
|
|
90
|
+
|---|---|---|
|
|
91
|
+
| (5) MCP ๋๊ตฌ | 100% (50+ 50 ๋๊ตฌ) | **100% (53 ๋๊ตฌ)** |
|
|
92
|
+
| ์ข
ํฉ | 72% | **72%** (production-ready ์ ์ง) |
|
|
93
|
+
|
|
94
|
+
๋ค์ ๋ผ์ด๋ (1.9.169~170): 100 ๋ผ์ด๋ ๋ง์ผ์คํค ์๋ฐ (2 ๋ผ์ด๋ ๋จ์).
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
3
98
|
## 1.9.167 โ 2026-05-20
|
|
4
99
|
|
|
5
100
|
**LSP ์ด๋ํฐ MVP โ codeIntel 6๋ฒ์งธ ์์ญ ์ ์ค (typescript opt-in + regex fallback).**
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **AI ์ฝ๋ฉ ์์ด์ ํธ์ ๊ฑฐ์ง ์๋ฃยท์ค๋ณตยท๋ง๊ฐยท์ถฉ๋์ ๋ง์์ฃผ๋ ๊ฒ์ยท๊ธฐ์ตยทํ์
CLI ํ๋ค์ค.**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/leerness) [](https://www.npmjs.com/package/leerness) []() []() []() []() []() []() []() []() []() []() []() []() []() []()
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
โ โโโ โโโโโโ โโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโ โ
|
|
13
13
|
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโ โโโโโโโโโโโโโโโโโโโโโโ โ
|
|
14
14
|
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโ โโโโโโโโโโโโโโโโโโโโโ โ
|
|
15
|
-
โ v1.9.
|
|
15
|
+
โ v1.9.169 AI Agent Reliability Harness + Sandbox โ
|
|
16
16
|
โ verify ยท remember ยท orchestrate ยท audit ยท sandbox ยท drift โ
|
|
17
|
-
โ
|
|
17
|
+
โ hotfix --include explicit-only ยท 30 ๋ผ์ด๋ main ์๋ push โ
|
|
18
18
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
19
19
|
```
|
|
20
20
|
|
package/bin/harness.js
CHANGED
|
@@ -6,7 +6,7 @@ const path = require('path');
|
|
|
6
6
|
const cp = require('child_process');
|
|
7
7
|
const readline = require('readline');
|
|
8
8
|
|
|
9
|
-
const VERSION = '1.9.
|
|
9
|
+
const VERSION = '1.9.169';
|
|
10
10
|
const MARK = '<!-- leerness:managed -->';
|
|
11
11
|
const README_START = '<!-- leerness:project-readme:start -->';
|
|
12
12
|
const README_END = '<!-- leerness:project-readme:end -->';
|
|
@@ -6343,9 +6343,16 @@ function _retroOneLine(agg) {
|
|
|
6343
6343
|
}
|
|
6344
6344
|
|
|
6345
6345
|
// 1.9.15: --all-apps / --include ๊ฒฝ๋ก ๋ชจ์
|
|
6346
|
+
// 1.9.169 fix: --include ๋ช
์๋๋ฉด cwd ์๋ ์ถ๊ฐ ์ ํจ (explicit-only).
|
|
6347
|
+
// ๊ธฐ์กด: cwd/.harness ์๋ ์ถ๊ฐ โ ์์กด .harness ์ ์๋์น ์์ ์นด์ดํธ ์ฆ๊ฐ (e2e flake ์์ธ)
|
|
6348
|
+
// ๋ณ๊ฒฝ: --include ์ ์ฌ์ฉ์๊ฐ ๋ช
์ํ ๊ฒฝ๋ก๋ง ์ฌ์ฉ. --all-apps ๋จ๋
์ ๊ธฐ์กด ๋์ ์ ์ง.
|
|
6346
6349
|
function _collectWorkspacePaths(rootBase) {
|
|
6347
6350
|
const set = new Set();
|
|
6348
|
-
|
|
6351
|
+
const include = arg('--include', null);
|
|
6352
|
+
// --include ๋ช
์ ์ cwd ์๋ ์ถ๊ฐ ์คํต (explicit-only ๋ณด์ฅ)
|
|
6353
|
+
if (!include) {
|
|
6354
|
+
if (exists(path.join(rootBase, '.harness'))) set.add(rootBase);
|
|
6355
|
+
}
|
|
6349
6356
|
if (has('--all-apps')) {
|
|
6350
6357
|
const baseCandidates = [path.resolve(rootBase, '_apps'), path.resolve(rootBase, '..', '_apps')];
|
|
6351
6358
|
for (const base of baseCandidates) {
|
|
@@ -6360,7 +6367,6 @@ function _collectWorkspacePaths(rootBase) {
|
|
|
6360
6367
|
}
|
|
6361
6368
|
}
|
|
6362
6369
|
}
|
|
6363
|
-
const include = arg('--include', null);
|
|
6364
6370
|
if (include) {
|
|
6365
6371
|
for (const p of String(include).split(',')) {
|
|
6366
6372
|
const abs = path.resolve(p.trim());
|
|
@@ -9850,7 +9856,10 @@ function mcpServeCmd(root) {
|
|
|
9850
9856
|
{ name: 'leerness_env_detect', description: '1.9.145 โ ์คํ ํ๊ฒฝ ์๋ ๊ฐ์ง + ๋ณ๋ ์ถ์ JSON ({ snapshot: { os, hardware, locale, shell, node, tools, scriptDependencies }, diff: { firstCapture, changes, missing }, persisted }). "X์(๋) ๋ด๋ถ ๋๋ ์ธ๋ถ ๋ช
๋ น... ์๋๋๋ค" ์ฌ์ ๋ฐฉ์ง: package.json scripts ์์กด ๋๊ตฌ๊ฐ PATH์ ์๋์ง ๊ฒ์ฆ + ๋จธ์ /Node/๋๊ตฌ ๋ณ๊ฒฝ ๊ฐ์ง. ์ ๋๊ฒฝ๋ก ๋ง์คํน (๋ณด์). ์ธ์: { path? }', inputSchema: { type: 'object', properties: { path: { type: 'string' } } } },
|
|
9851
9857
|
{ name: 'leerness_provider_list', description: '1.9.157/158 โ Provider Registry ์กฐํ JSON ({ total, builtin, user, providers: [{ id, bin, envFlag, source, desc }] }). ๋นํธ์ธ 5์ข
(claude/codex/gemini/copilot/ollama) + .harness/providers.json ์ฌ์ฉ์ ์ ์ ํตํฉ. ์ธ๋ถ AI๊ฐ sub-agent ๋ถ๋ฐฐ ๊ฐ๋ฅํ provider ์ ์ฒด ํ์ (OpenRouter/Bedrock ๋ฑ ๋ฑ๋ก๋์ด ์์ผ๋ฉด ๊ฐ์ด ๋
ธ์ถ). ๐ MCP 48 ๋๊ตฌ ๋ง์ผ์คํค', inputSchema: { type: 'object', properties: { path: { type: 'string' } } } },
|
|
9852
9858
|
{ name: 'leerness_provider_add', description: '1.9.159 โ Provider Registry ์ ์ provider ๋์ ์ถ๊ฐ. ์ธ์: { id (required), bin?, envFlag?, versionArgs?, desc?, path? }. ์ธ๋ถ AI๊ฐ ์ CLI ๋ฐ๊ฒฌ ์ ์๊ฐ ํ์ฅ (OpenRouter / Bedrock / Groq / Hugging Face ๋ฑ ๋ฑ๋ก). ๊ฐ์ id ๋ ๋ฒ ํธ์ถ โ ๊ฐฑ์ . ๋นํธ์ธ id ํธ์ถ โ user override. id ๋ ์๋ฌธ์/์ซ์/_- ๋ง ํ์ฉ.', inputSchema: { type: 'object', properties: { id: { type: 'string' }, bin: { type: 'string' }, envFlag: { type: 'string' }, versionArgs: { type: 'string' }, desc: { type: 'string' }, installHint: { type: 'string' }, path: { type: 'string' } }, required: ['id'] } },
|
|
9853
|
-
{ name: 'leerness_provider_remove', description: '1.9.159 โ Provider Registry ์์ ์ฌ์ฉ์ ์ ์ provider ์ ๊ฑฐ. ์ธ์: { id (required), path? }. ๋นํธ์ธ 5์ข
id ๋ ์ ๊ฑฐ ๋ถ๊ฐ (override ๋ง ์ ๊ฑฐ ๊ฐ๋ฅ). ๐ MCP 50 ๋๊ตฌ ๋ง์ผ์คํค โ Provider Registry CRUD MCP ์์ฑ (list/add/remove)', inputSchema: { type: 'object', properties: { id: { type: 'string' }, path: { type: 'string' } }, required: ['id'] } }
|
|
9859
|
+
{ name: 'leerness_provider_remove', description: '1.9.159 โ Provider Registry ์์ ์ฌ์ฉ์ ์ ์ provider ์ ๊ฑฐ. ์ธ์: { id (required), path? }. ๋นํธ์ธ 5์ข
id ๋ ์ ๊ฑฐ ๋ถ๊ฐ (override ๋ง ์ ๊ฑฐ ๊ฐ๋ฅ). ๐ MCP 50 ๋๊ตฌ ๋ง์ผ์คํค โ Provider Registry CRUD MCP ์์ฑ (list/add/remove)', inputSchema: { type: 'object', properties: { id: { type: 'string' }, path: { type: 'string' } }, required: ['id'] } },
|
|
9860
|
+
{ name: 'leerness_web', description: '1.9.168 โ Web Bridge (1.9.165 playwright opt-in). sub: check (์ค์น + permissions.browser ํ์ธ) | screenshot (URL โ PNG) | extract (URL + CSS selector โ DOM ํ
์คํธ). ์ธ๋ถ AI๊ฐ leerness ์ ์น ์๋ํ ๋ฅ๋ ฅ์ ์ง์ ํธ์ถ. playwright ๋ฏธ์ค์น ์ ์น์ ์๋ด (graceful). ์ธ์: { sub (required), url?, out?, selector?, path? }', inputSchema: { type: 'object', properties: { sub: { type: 'string', enum: ['check', 'screenshot', 'extract'] }, url: { type: 'string' }, out: { type: 'string' }, selector: { type: 'string' }, path: { type: 'string' } }, required: ['sub'] } },
|
|
9861
|
+
{ name: 'leerness_pc', description: '1.9.168 โ PC Bridge (1.9.166 robotjs/nut-tree opt-in). sub: check (์ค์น + permissions.mouse/keyboard) | click (x,y) | type (text) | screenshot (out). โ full permissions ๊ถ์ฅ (mouse/keyboard ์ ๊ทผ). ์ธ๋ถ AI๊ฐ ๋ฐ์คํฌํ ์๋ํ ๋ฅ๋ ฅ์ ์ง์ ํธ์ถ. ์ธ์: { sub (required), x?, y?, text?, out?, path? }', inputSchema: { type: 'object', properties: { sub: { type: 'string', enum: ['check', 'click', 'type', 'screenshot'] }, x: { type: 'number' }, y: { type: 'number' }, text: { type: 'string' }, out: { type: 'string' }, path: { type: 'string' } }, required: ['sub'] } },
|
|
9862
|
+
{ name: 'leerness_lsp', description: '1.9.168 โ LSP Bridge (1.9.167 typescript opt-in + regex fallback). sub: check (์ค์น ์ฌ๋ถ) | symbols (file โ function/class/interface/type/enum ๋ชฉ๋ก) | references (name + in ๋๋ ํ ๋ฆฌ โ ํธ์ถ ์์น). ์ธ๋ถ AI๊ฐ ์ฝ๋ ์ธํ
๋ฆฌ์ ์ค๋ฅผ ์ง์ ํธ์ถ (์์กด์ฑ 0 fallback ๋์). ๐ MCP 53 ๋๊ตฌ ๋ง์ผ์คํค. ์ธ์: { sub (required), file?, name?, in?, path? }', inputSchema: { type: 'object', properties: { sub: { type: 'string', enum: ['check', 'symbols', 'references'] }, file: { type: 'string' }, name: { type: 'string' }, in: { type: 'string' }, path: { type: 'string' } }, required: ['sub'] } }
|
|
9854
9863
|
];
|
|
9855
9864
|
|
|
9856
9865
|
function send(obj) {
|
|
@@ -9957,6 +9966,27 @@ function mcpServeCmd(root) {
|
|
|
9957
9966
|
case 'leerness_provider_remove':
|
|
9958
9967
|
cliArgs = ['provider', 'remove', String(args.id || ''), '--path', targetPath];
|
|
9959
9968
|
break;
|
|
9969
|
+
// 1.9.168: Bridge 3์ข
MCP ๋
ธ์ถ (web/pc/lsp) โ ์ธ๋ถ AI ๊ฐ ์ง์ ํธ์ถ
|
|
9970
|
+
case 'leerness_web':
|
|
9971
|
+
cliArgs = ['web', String(args.sub || 'check'), '--path', targetPath, '--json'];
|
|
9972
|
+
if (args.url) cliArgs.splice(2, 0, String(args.url));
|
|
9973
|
+
if (args.out) cliArgs.push('--out', String(args.out));
|
|
9974
|
+
if (args.selector) cliArgs.push('--selector', String(args.selector));
|
|
9975
|
+
break;
|
|
9976
|
+
case 'leerness_pc':
|
|
9977
|
+
cliArgs = ['pc', String(args.sub || 'check'), '--path', targetPath, '--json'];
|
|
9978
|
+
if (typeof args.x === 'number' && typeof args.y === 'number') {
|
|
9979
|
+
cliArgs.splice(2, 0, String(args.x), String(args.y));
|
|
9980
|
+
}
|
|
9981
|
+
if (args.text) cliArgs.splice(2, 0, String(args.text));
|
|
9982
|
+
if (args.out) cliArgs.push('--out', String(args.out));
|
|
9983
|
+
break;
|
|
9984
|
+
case 'leerness_lsp':
|
|
9985
|
+
cliArgs = ['lsp', String(args.sub || 'check'), '--path', targetPath, '--json'];
|
|
9986
|
+
if (args.file) cliArgs.splice(2, 0, String(args.file));
|
|
9987
|
+
if (args.name) cliArgs.splice(2, 0, String(args.name));
|
|
9988
|
+
if (args.in) cliArgs.push('--in', String(args.in));
|
|
9989
|
+
break;
|
|
9960
9990
|
default:
|
|
9961
9991
|
return send({ jsonrpc: '2.0', id, error: { code: -32601, message: `Unknown tool: ${name}` } });
|
|
9962
9992
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leerness",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.169",
|
|
4
4
|
"description": "Leerness: ๋นํ๊ดด ๋ง์ด๊ทธ๋ ์ด์
, ์๋ ๋ฒ์ ๊ฐ์งยท์
๋ฐ์ดํธ, ๊ณํ/์งํ/ํธ๋์คํ ์๋ํ, ๊ฒ์ผ๋ฆยท์ํฌ๋ฆฟยท์ธ์ฝ๋ฉ ์๋ ๊ฐ๋, Claude Code ์ฌ๋์ ํตํฉ์ ๊ฐ์ถ ํ๊ตญ์ด ์ฐ์ AI ๊ฐ๋ฐ ํ๋ค์ค.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"leerness",
|