leerness 1.9.168 โ 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 +44 -0
- package/README.md +3 -3
- package/bin/harness.js +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
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
|
+
|
|
3
47
|
## 1.9.168 โ 2026-05-20
|
|
4
48
|
|
|
5
49
|
**MCP bridge 3์ข
๋
ธ์ถ (web/pc/lsp) โ 50 โ 53 ๋๊ตฌ + ์ธ๋ถ AI ์๋ํ ๋ฅ๋ ฅ ์ง๊ฒฐ.**
|
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());
|
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",
|