leerness 1.9.140 → 1.9.142
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 +3706 -3641
- package/LICENSE +21 -21
- package/README.md +558 -558
- package/bin/harness.js +10149 -9711
- package/docs/PUBLISH_PRECHECK.md +93 -93
- package/package.json +55 -55
- package/scripts/e2e.js +2707 -2706
package/docs/PUBLISH_PRECHECK.md
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
# Publish Pre-check (leerness 1.9.0)
|
|
2
|
-
|
|
3
|
-
> ⚠ **Owner 권한 필수**: npm `leerness`의 메인테이너는 `gytlrgpfl <gytlrgpfl96@gmail.com>` 입니다. 이 계정으로 로그인되어 있거나 collaborator로 등록되어 있어야 publish가 통과합니다. 권한이 없으면 `E403 Forbidden`이 떨어집니다.
|
|
4
|
-
|
|
5
|
-
## 1. 메타데이터 보강 (선택)
|
|
6
|
-
|
|
7
|
-
`package.json`의 다음 필드는 비어 있거나 일반적입니다. 사용자 정보로 채우는 것을 권장합니다.
|
|
8
|
-
|
|
9
|
-
```json
|
|
10
|
-
{
|
|
11
|
-
"author": "leerness contributors",
|
|
12
|
-
"repository": { /* 비어있음 */ },
|
|
13
|
-
"bugs": { /* 비어있음 */ },
|
|
14
|
-
"homepage": ""
|
|
15
|
-
}
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
예:
|
|
19
|
-
|
|
20
|
-
```json
|
|
21
|
-
"author": "Your Name <you@example.com>",
|
|
22
|
-
"repository": { "type": "git", "url": "git+https://github.com/<user>/leerness.git" },
|
|
23
|
-
"bugs": { "url": "https://github.com/<user>/leerness/issues" },
|
|
24
|
-
"homepage": "https://github.com/<user>/leerness#readme"
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
publish 필수는 아니지만, npm 페이지 신뢰도와 사용자 경험을 위해 채워두면 좋습니다.
|
|
28
|
-
|
|
29
|
-
## 2. 권한 확인
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
npm whoami
|
|
33
|
-
# → 응답이 leerness의 owner인지 확인
|
|
34
|
-
npm owner ls leerness
|
|
35
|
-
# → 자신의 계정이 목록에 있는지 확인
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
권한이 없으면 collaborator 추가를 owner에게 요청해야 합니다.
|
|
39
|
-
|
|
40
|
-
## 3. 로컬 검증
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
node ./bin/harness.js --version # → 1.9.0
|
|
44
|
-
npm pack --dry-run # 패키지 내용 미리보기
|
|
45
|
-
node ./scripts/e2e.js # 30+개 시나리오 통과
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## 4. 1.8.0 → 1.9.0 자동 업그레이드 시연 (선택)
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
mkdir /tmp/lr-old; cd /tmp/lr-old
|
|
52
|
-
npx -y leerness@1.8.0 init . --language ko --skills recommended
|
|
53
|
-
LEERNESS_OFFLINE=1 npx -y -p /path/to/leerness-1.9.0.tgz leerness update . --yes
|
|
54
|
-
cat .harness/HARNESS_VERSION # → 1.9.0
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## 5. publish dry-run
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
npm publish --dry-run
|
|
61
|
-
# 또는
|
|
62
|
-
npm publish leerness-1.9.0.tgz --dry-run
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
확인:
|
|
66
|
-
- `package.json#files`와 실제 tarball 내용 일치
|
|
67
|
-
- 총 크기 (≈30~40 kB)
|
|
68
|
-
- bin → harness.js 매핑
|
|
69
|
-
|
|
70
|
-
## 6. 실 publish
|
|
71
|
-
|
|
72
|
-
```bash
|
|
73
|
-
npm login # 권한 있는 계정으로
|
|
74
|
-
npm publish --access public
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
## 7. publish 후 검증
|
|
78
|
-
|
|
79
|
-
```bash
|
|
80
|
-
npm view leerness version # → 1.9.0
|
|
81
|
-
npx -y leerness@latest --version # → 1.9.0
|
|
82
|
-
mkdir test-install && cd test-install
|
|
83
|
-
npx -y leerness@latest init . --yes --language ko --skills recommended
|
|
84
|
-
npx -y leerness@latest verify .
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
## 8. 롤백
|
|
88
|
-
|
|
89
|
-
24시간 이내라면 `npm unpublish leerness@1.9.0` 가능. 이후엔 1.9.1 패치 또는 deprecate.
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
npm deprecate leerness@1.9.0 "Use 1.9.1+"
|
|
93
|
-
```
|
|
1
|
+
# Publish Pre-check (leerness 1.9.0)
|
|
2
|
+
|
|
3
|
+
> ⚠ **Owner 권한 필수**: npm `leerness`의 메인테이너는 `gytlrgpfl <gytlrgpfl96@gmail.com>` 입니다. 이 계정으로 로그인되어 있거나 collaborator로 등록되어 있어야 publish가 통과합니다. 권한이 없으면 `E403 Forbidden`이 떨어집니다.
|
|
4
|
+
|
|
5
|
+
## 1. 메타데이터 보강 (선택)
|
|
6
|
+
|
|
7
|
+
`package.json`의 다음 필드는 비어 있거나 일반적입니다. 사용자 정보로 채우는 것을 권장합니다.
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"author": "leerness contributors",
|
|
12
|
+
"repository": { /* 비어있음 */ },
|
|
13
|
+
"bugs": { /* 비어있음 */ },
|
|
14
|
+
"homepage": ""
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
예:
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
"author": "Your Name <you@example.com>",
|
|
22
|
+
"repository": { "type": "git", "url": "git+https://github.com/<user>/leerness.git" },
|
|
23
|
+
"bugs": { "url": "https://github.com/<user>/leerness/issues" },
|
|
24
|
+
"homepage": "https://github.com/<user>/leerness#readme"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
publish 필수는 아니지만, npm 페이지 신뢰도와 사용자 경험을 위해 채워두면 좋습니다.
|
|
28
|
+
|
|
29
|
+
## 2. 권한 확인
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm whoami
|
|
33
|
+
# → 응답이 leerness의 owner인지 확인
|
|
34
|
+
npm owner ls leerness
|
|
35
|
+
# → 자신의 계정이 목록에 있는지 확인
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
권한이 없으면 collaborator 추가를 owner에게 요청해야 합니다.
|
|
39
|
+
|
|
40
|
+
## 3. 로컬 검증
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
node ./bin/harness.js --version # → 1.9.0
|
|
44
|
+
npm pack --dry-run # 패키지 내용 미리보기
|
|
45
|
+
node ./scripts/e2e.js # 30+개 시나리오 통과
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## 4. 1.8.0 → 1.9.0 자동 업그레이드 시연 (선택)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
mkdir /tmp/lr-old; cd /tmp/lr-old
|
|
52
|
+
npx -y leerness@1.8.0 init . --language ko --skills recommended
|
|
53
|
+
LEERNESS_OFFLINE=1 npx -y -p /path/to/leerness-1.9.0.tgz leerness update . --yes
|
|
54
|
+
cat .harness/HARNESS_VERSION # → 1.9.0
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## 5. publish dry-run
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npm publish --dry-run
|
|
61
|
+
# 또는
|
|
62
|
+
npm publish leerness-1.9.0.tgz --dry-run
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
확인:
|
|
66
|
+
- `package.json#files`와 실제 tarball 내용 일치
|
|
67
|
+
- 총 크기 (≈30~40 kB)
|
|
68
|
+
- bin → harness.js 매핑
|
|
69
|
+
|
|
70
|
+
## 6. 실 publish
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
npm login # 권한 있는 계정으로
|
|
74
|
+
npm publish --access public
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## 7. publish 후 검증
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
npm view leerness version # → 1.9.0
|
|
81
|
+
npx -y leerness@latest --version # → 1.9.0
|
|
82
|
+
mkdir test-install && cd test-install
|
|
83
|
+
npx -y leerness@latest init . --yes --language ko --skills recommended
|
|
84
|
+
npx -y leerness@latest verify .
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## 8. 롤백
|
|
88
|
+
|
|
89
|
+
24시간 이내라면 `npm unpublish leerness@1.9.0` 가능. 이후엔 1.9.1 패치 또는 deprecate.
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
npm deprecate leerness@1.9.0 "Use 1.9.1+"
|
|
93
|
+
```
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "leerness",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"description": "Leerness: 비파괴 마이그레이션, 자동 버전 감지·업데이트, 계획/진행/핸드오프 자동화, 게으름·시크릿·인코딩 자동 가드, Claude Code 슬래시 통합을 갖춘 한국어 우선 AI 개발 하네스.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"leerness",
|
|
7
|
-
"ai",
|
|
8
|
-
"agent",
|
|
9
|
-
"harness",
|
|
10
|
-
"context-engineering",
|
|
11
|
-
"claude",
|
|
12
|
-
"claude-code",
|
|
13
|
-
"cursor",
|
|
14
|
-
"copilot",
|
|
15
|
-
"skill-library",
|
|
16
|
-
"project-memory",
|
|
17
|
-
"task-tracking",
|
|
18
|
-
"planning",
|
|
19
|
-
"handoff",
|
|
20
|
-
"anti-laziness",
|
|
21
|
-
"encoding",
|
|
22
|
-
"secret-scan",
|
|
23
|
-
"auto-update",
|
|
24
|
-
"design-system",
|
|
25
|
-
"developer-tools",
|
|
26
|
-
"korean"
|
|
27
|
-
],
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"author": "leerness contributors",
|
|
30
|
-
"type": "commonjs",
|
|
31
|
-
"main": "bin/harness.js",
|
|
32
|
-
"preferGlobal": true,
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=18"
|
|
35
|
-
},
|
|
36
|
-
"bin": {
|
|
37
|
-
"leerness": "bin/harness.js"
|
|
38
|
-
},
|
|
39
|
-
"files": [
|
|
40
|
-
"bin",
|
|
41
|
-
"scripts",
|
|
42
|
-
"docs",
|
|
43
|
-
"README.md",
|
|
44
|
-
"CHANGELOG.md",
|
|
45
|
-
"LICENSE"
|
|
46
|
-
],
|
|
47
|
-
"scripts": {
|
|
48
|
-
"test": "node ./bin/harness.js --version && node ./scripts/e2e.js",
|
|
49
|
-
"test:smoke": "node ./scripts/e2e.js",
|
|
50
|
-
"prepack": "node ./bin/harness.js --version"
|
|
51
|
-
},
|
|
52
|
-
"publishConfig": {
|
|
53
|
-
"access": "public"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "leerness",
|
|
3
|
+
"version": "1.9.142",
|
|
4
|
+
"description": "Leerness: 비파괴 마이그레이션, 자동 버전 감지·업데이트, 계획/진행/핸드오프 자동화, 게으름·시크릿·인코딩 자동 가드, Claude Code 슬래시 통합을 갖춘 한국어 우선 AI 개발 하네스.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"leerness",
|
|
7
|
+
"ai",
|
|
8
|
+
"agent",
|
|
9
|
+
"harness",
|
|
10
|
+
"context-engineering",
|
|
11
|
+
"claude",
|
|
12
|
+
"claude-code",
|
|
13
|
+
"cursor",
|
|
14
|
+
"copilot",
|
|
15
|
+
"skill-library",
|
|
16
|
+
"project-memory",
|
|
17
|
+
"task-tracking",
|
|
18
|
+
"planning",
|
|
19
|
+
"handoff",
|
|
20
|
+
"anti-laziness",
|
|
21
|
+
"encoding",
|
|
22
|
+
"secret-scan",
|
|
23
|
+
"auto-update",
|
|
24
|
+
"design-system",
|
|
25
|
+
"developer-tools",
|
|
26
|
+
"korean"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": "leerness contributors",
|
|
30
|
+
"type": "commonjs",
|
|
31
|
+
"main": "bin/harness.js",
|
|
32
|
+
"preferGlobal": true,
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=18"
|
|
35
|
+
},
|
|
36
|
+
"bin": {
|
|
37
|
+
"leerness": "bin/harness.js"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"bin",
|
|
41
|
+
"scripts",
|
|
42
|
+
"docs",
|
|
43
|
+
"README.md",
|
|
44
|
+
"CHANGELOG.md",
|
|
45
|
+
"LICENSE"
|
|
46
|
+
],
|
|
47
|
+
"scripts": {
|
|
48
|
+
"test": "node ./bin/harness.js --version && node ./scripts/e2e.js",
|
|
49
|
+
"test:smoke": "node ./scripts/e2e.js",
|
|
50
|
+
"prepack": "node ./bin/harness.js --version"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
}
|
|
55
|
+
}
|