leerness 1.36.66 → 1.36.67
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 +6 -0
- package/README.md +4 -4
- package/bin/leerness.js +3 -2
- package/lib/session-close.js +647 -647
- package/lib/tech-profile.js +3 -0
- package/package.json +1 -1
package/lib/tech-profile.js
CHANGED
|
@@ -166,6 +166,9 @@ function techCmd(root, sub, deps = {}) {
|
|
|
166
166
|
const json = !!(has && has('--json'));
|
|
167
167
|
if (!exists(path.join(root, '.harness'))) { failJson(json, 'harness_missing', `leerness 미설치: ${root} — 먼저 leerness init`); return; }
|
|
168
168
|
const r = refreshTechProfile(root); // show 도 항상 최신화(감지는 저비용·로컬)
|
|
169
|
+
// 1.36.67 (8차 헌트 F15): 프로필이 실제로 바뀌었고 그래프 산출물이 이미 있으면 함께 갱신 —
|
|
170
|
+
// 종전엔 tech 만 최신, leerness.html 🛠 탭은 옛 서비스를 계속 보여줬다(handoff 전까지 불일치).
|
|
171
|
+
if (r && r.changed && typeof deps.regenGraph === 'function') { try { deps.regenGraph(root); } catch {} }
|
|
169
172
|
const p = r.profile;
|
|
170
173
|
if (json) { log(JSON.stringify({ ok: true, ...p, changedNow: r.changed, diffNow: r.diff }, null, 2)); return; }
|
|
171
174
|
log(`# leerness tech — 프로젝트 기술 프로필 (${p.updatedAt.slice(0, 10)})`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leerness",
|
|
3
|
-
"version": "1.36.
|
|
3
|
+
"version": "1.36.67",
|
|
4
4
|
"description": "The AI-coding operations layer that makes \"done\" require evidence — persistent memory, evidence-gated completion checks, and clean handoffs for any AI agent (Claude Code, Codex, Cursor). State lives as plain files in your repo. CLI + MCP, 0 runtime dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"leerness",
|