leerness 1.32.0 → 1.34.0
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 +14152 -14012
- package/README.ko.md +195 -187
- package/README.md +116 -106
- package/bin/leerness.js +20747 -20637
- package/lib/mcp-tools.js +1 -0
- package/package.json +58 -58
- package/scripts/e2e.js +6782 -6612
package/lib/mcp-tools.js
CHANGED
|
@@ -8,6 +8,7 @@ module.exports = [
|
|
|
8
8
|
{ name: 'leerness_drift_check', requiredTier: 'read-only', description: '1.9.136 — AI 에이전트 leerness 미사용 drift 자동 감지 JSON ({ root, score, level, signals[], healthy }). 5+ 신호 + 4단계 레벨 (🟢 healthy / 🟡 warning / 🟠 caution / 🔴 critical). 보안 신호 통합 (1.9.78)', inputSchema: { type: 'object', properties: { path: { type: 'string' } } } },
|
|
9
9
|
{ name: 'leerness_audit', requiredTier: 'read-only', description: '1.9.102 — 워크스페이스 일관성 감사 JSON (warnings/failures/fixed/healthy + findings[]. kind 11종: design_dup/design_system_default/reuse_map_empty/milestone_unlinked/handoff_not_generated/current_state_stale/readme_version_mismatch/npm_cve/gitignore_missing_secrets/env_keys_missing/strict_promoted)', inputSchema: { type: 'object', properties: { path: { type: 'string' }, fix: { type: 'boolean' }, strict: { type: 'boolean' } } } },
|
|
10
10
|
{ name: 'leerness_verify_claim', requiredTier: 'read-only', description: 'AI 거짓 완료 자동 검증 (evidence 파일 + 실 테스트 실행). 1.9.309(UR-0048): done/완료 주장은 evidence(수정파일+테스트) 기본 강제 — 증거 없는 done 은 FAIL(exit 1). lenient=true 로 완화, runTests/strictClaims 추가 가능. 응답 verdict.evidenceComplete 포함.', inputSchema: { type: 'object', properties: { taskId: { type: 'string' }, path: { type: 'string' }, runTests: { type: 'boolean' }, strictClaims: { type: 'boolean' }, lenient: { type: 'boolean' } }, required: ['taskId'] } },
|
|
11
|
+
{ name: 'leerness_verify_claim_all', requiredTier: 'read-only', description: '1.33.3 — 모든 done/완료 주장을 한 번에 검증(CI·스케일). progress-tracker 의 done 항목 전부를 verify-claim 정밀 검사(파일 존재·스텁·부풀린 카운트·증거 완전성)로 일괄 점검. 응답 { ok, total, failed, results:[{id,ok,reasons}] }. 세션 마감 전 "내 완료 주장 전부 증거와 맞는가?" 자가 점검용. runTests/strictClaims/lenient 추가 가능.', inputSchema: { type: 'object', properties: { path: { type: 'string' }, runTests: { type: 'boolean' }, strictClaims: { type: 'boolean' }, lenient: { type: 'boolean' } } } },
|
|
11
12
|
{ name: 'leerness_contract_verify', requiredTier: 'read-only', description: '명세 ↔ 구현 함수/필드 일치 자동 검사', inputSchema: { type: 'object', properties: { spec: { type: 'string' }, impl: { type: 'string' } }, required: ['spec', 'impl'] } },
|
|
12
13
|
{ name: 'leerness_agents_list', requiredTier: 'read-only', description: '외부 AI CLI 가용성 표 (claude/codex/agy/copilot 상태 + 환경변수 활성화 여부)', inputSchema: { type: 'object', properties: {} } },
|
|
13
14
|
{ name: 'leerness_reuse_map', requiredTier: 'read-only', description: '워크스페이스 중복 함수/capability 자동 감지 (--all-apps + fuzzy 매칭)', inputSchema: { type: 'object', properties: { path: { type: 'string' }, allApps: { type: 'boolean' }, strictElements: { type: 'boolean' } } } },
|
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "leerness",
|
|
3
|
-
"version": "1.
|
|
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/leerness.js",
|
|
32
|
-
"preferGlobal": true,
|
|
33
|
-
"engines": {
|
|
34
|
-
"node": ">=18"
|
|
35
|
-
},
|
|
36
|
-
"bin": {
|
|
37
|
-
"leerness": "bin/leerness.js"
|
|
38
|
-
},
|
|
39
|
-
"files": [
|
|
40
|
-
"bin",
|
|
41
|
-
"lib",
|
|
42
|
-
"scripts",
|
|
43
|
-
"docs",
|
|
44
|
-
"README.md",
|
|
45
|
-
"CHANGELOG.md",
|
|
46
|
-
"SECURITY.md",
|
|
47
|
-
"LICENSE"
|
|
48
|
-
],
|
|
49
|
-
"scripts": {
|
|
50
|
-
"test": "node ./bin/leerness.js --version && node ./bin/leerness.js selftest && node ./scripts/e2e.js",
|
|
51
|
-
"test:fast": "node ./bin/leerness.js selftest && node ./scripts/smoke.js",
|
|
52
|
-
"test:smoke": "node ./scripts/e2e.js",
|
|
53
|
-
"prepack": "node ./bin/leerness.js readme sync . && node ./bin/leerness.js --version"
|
|
54
|
-
},
|
|
55
|
-
"publishConfig": {
|
|
56
|
-
"access": "public"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "leerness",
|
|
3
|
+
"version": "1.34.0",
|
|
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/leerness.js",
|
|
32
|
+
"preferGlobal": true,
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=18"
|
|
35
|
+
},
|
|
36
|
+
"bin": {
|
|
37
|
+
"leerness": "bin/leerness.js"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"bin",
|
|
41
|
+
"lib",
|
|
42
|
+
"scripts",
|
|
43
|
+
"docs",
|
|
44
|
+
"README.md",
|
|
45
|
+
"CHANGELOG.md",
|
|
46
|
+
"SECURITY.md",
|
|
47
|
+
"LICENSE"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"test": "node ./bin/leerness.js --version && node ./bin/leerness.js selftest && node ./scripts/e2e.js",
|
|
51
|
+
"test:fast": "node ./bin/leerness.js selftest && node ./scripts/smoke.js",
|
|
52
|
+
"test:smoke": "node ./scripts/e2e.js",
|
|
53
|
+
"prepack": "node ./bin/leerness.js readme sync . && node ./bin/leerness.js --version"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
}
|
|
58
|
+
}
|