@readystack/immowertv-gutachten-lint 1.0.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/LICENSE.txt ADDED
@@ -0,0 +1,15 @@
1
+ Gutachten-Lint: ImmoWertV 2021 und BewG — Licence
2
+
3
+ Free scope
4
+ Prüft das offene Gutachten mit allen 13 Regeln und zeigt zu jeder veralteten Zeile die Korrektur. is free for any use, personal or commercial, for as long as you keep the
5
+ extension installed, and the online check at the product page is free without registration.
6
+
7
+ Paid scope
8
+ Prüft alle Gutachten eines Ordners in einem Lauf und speichert das Prüfprotokoll als Datei für die Akte. is the paid part. It asks for a licence key issued at purchase (one seat, one key). The key is checked against the payment provider and
9
+ cached locally for 30 days so it keeps working offline.
10
+
11
+ Redistribution
12
+ You may not resell, re-host or bundle this extension or its rule set. The rule set and the
13
+ engine are provided as-is; check results are advisory and do not constitute legal advice.
14
+
15
+ (c) ReadyStack — https://getreadystack.com
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # Gutachten-Lint: ImmoWertV 2021 und BewG
2
+
3
+ ![Gutachten-Lint: ImmoWertV 2021 und BewG](https://getreadystack.com/img/promo/sku273315_result_card.jpg)
4
+
5
+ Findet veraltete Normen und Modellwerte in Verkehrswertgutachten — 13 Regeln
6
+
7
+ ## Install
8
+
9
+ ```
10
+ npx @readystack/immowertv-gutachten-lint file
11
+ ```
12
+
13
+ Node 18+. The same 13 rules as the VS Code extension, from a terminal or CI.
14
+
15
+ ## Free
16
+
17
+ - Prüft das offene Gutachten mit allen 13 Regeln und zeigt zu jeder veralteten Zeile die Korrektur.
18
+ - `--rules` lists every rule
19
+
20
+ ## With a licence ($29 once)
21
+
22
+ - Prüft alle Gutachten eines Ordners in einem Lauf und speichert das Prüfprotokoll als Datei für die Akte.
23
+
24
+ ```
25
+ @readystack/immowertv-gutachten-lint --dir ./templates --report html --out report.html
26
+ ```
27
+
28
+ Sachverständige rechnen 2026 meist 120–180 € pro Stunde ab; ein Verkehrswertgutachten für ein Einfamilienhaus kostet rund 1.800–2.800 €.
29
+
30
+ ## Use from an AI agent (MCP)
31
+
32
+ Claude Code · Cursor · Windsurf · any MCP client - add to your MCP config:
33
+
34
+ ```json
35
+ { "mcpServers": { "immowertv-gutachten-lint": { "command": "npx", "args": ["-y", "@readystack/immowertv-gutachten-lint", "--mcp"] } } }
36
+ ```
37
+
38
+ Tools: `check_text` and `check_file` (free) · `check_dir` (licence). The agent gets every finding with the line number.
39
+
40
+ ## Use in CI
41
+
42
+ ```yaml
43
+ - name: Gutachten-Lint: ImmoWertV 2021 und BewG
44
+ run: npx -y @readystack/immowertv-gutachten-lint --dir . --ci
45
+ ```
46
+
47
+ (container: `docker run --rm -v "$PWD:/work" getreadystack/immowertv-gutachten-lint --dir /work --ci`)
48
+
49
+ The folder sweep, reports and CI mode need one licence — one payment, no subscription. Set `READYSTACK_LICENSE=<key>` or run `--license <key>` once.
50
+
51
+ [Get a licence](https://buy.polar.sh/polar_cl_Unfkx52xTXn9Oa6364ORdkEPTW4ww5DtVFTKo3eeqSb)
52
+
53
+
54
+ <!-- verkehrswertgutachten immowertv -->
package/cli.js ADDED
@@ -0,0 +1,161 @@
1
+ #!/usr/bin/env node
2
+ // cli.js — the same rules as the VS Code extension, run from a terminal or a container. Generated by adapters.py.
3
+ 'use strict';
4
+ const fs = require('fs'), path = require('path');
5
+ const RULES = require('./rules.json');
6
+ const S = require('./strings.json');
7
+ const lic = require('./license.js');
8
+ const ENGINE = require('./engine.js'); // s144 — scaffold products: the same engine the VS Code extension runs
9
+ const RULE_LIST = Array.isArray(ENGINE.RULES) ? ENGINE.RULES : (Array.isArray(RULES) ? RULES : []);
10
+ const RULE_N = ENGINE.RULE_COUNT || RULE_LIST.length;
11
+ function scan(text, file) {
12
+ const r = ENGINE.engine.check(String(text), { today: new Date().toISOString().slice(0, 10), path: file || '' });
13
+ return (r && r.findings || []).map((f) => ({ line: parseInt(f.line, 10) || 1, msg: String(f.msg || f.message || f.check || ''), fix: f.fix || null, sev: (String(f.sev || 'error').toLowerCase().startsWith('err') ? 'error' : 'warn') }));
14
+ }
15
+ function isText(p) { try { const b = fs.readFileSync(p); if (b.length > 2 * 1024 * 1024) return false; const s = b.subarray(0, 4096); for (const x of s) if (x === 0) return false; return true; } catch (e) { return false; } }
16
+ function walk(dir, exts, out) {
17
+ let ents = []; try { ents = fs.readdirSync(dir, { withFileTypes: true }); } catch (e) { return out; }
18
+ for (const e of ents) {
19
+ if (['node_modules', '.git', '.hg', '.svn', '.venv', 'venv', '.tox', '.cache', '.next', '.nuxt', '.terraform', '__pycache__'].includes(e.name)) continue; // s158 — .github · .gitlab-ci.yml · .env · .well-known 은 본다 (옛 줄은 점으로 시작하는 것을 전부 건너뛰어 워크플로 검사기가 .github/workflows 를 못 봤다)
20
+ const p = path.join(dir, e.name);
21
+ if (e.isDirectory()) walk(p, exts, out);
22
+ else if ((!exts.length || exts.includes(path.extname(e.name).toLowerCase())) && isText(p)) out.push(p);
23
+ }
24
+ return out;
25
+ }
26
+ function esc(s) { return String(s).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;'); }
27
+ function csvq(s) { return '"' + String(s == null ? '' : s).replace(/"/g, '""') + '"'; }
28
+ function render(rows, fmt) {
29
+ if (fmt === 'json') return JSON.stringify({ tool: S.name, rules: RULE_N, files: rows }, null, 1);
30
+ if (fmt === 'csv') { const o = ['file,line,severity,message,fix']; for (const r of rows) for (const h of r.hits) o.push([csvq(r.file), h.line, h.sev, csvq(h.msg), csvq(h.fix)].join(',')); return o.join('\n') + '\n'; }
31
+ if (fmt === 'html') {
32
+ const n = rows.reduce((a, r) => a + r.hits.length, 0);
33
+ let o = '<!doctype html><meta charset="utf-8"><title>' + esc(S.name) + ' report</title><style>body{font:14px system-ui;margin:24px}table{border-collapse:collapse}td,th{border:1px solid #ddd;padding:4px 8px;font-size:13px}code{font-family:ui-monospace,monospace}</style>';
34
+ o += '<h1>' + esc(S.name) + '</h1><p>' + rows.length + ' files · ' + n + ' findings · ' + RULE_N + ' rules</p><table><tr><th>file</th><th>line</th><th>sev</th><th>message</th><th>fix</th></tr>';
35
+ for (const r of rows) for (const h of r.hits) o += '<tr><td><code>' + esc(r.file) + '</code></td><td>' + h.line + '</td><td>' + esc(h.sev) + '</td><td>' + esc(h.msg) + '</td><td>' + esc(h.fix || '') + '</td></tr>';
36
+ return o + '</table>';
37
+ }
38
+ let o = ''; for (const r of rows) { o += r.file + '\n'; for (const h of r.hits) o += ' ' + String(h.line).padStart(5) + ' ' + h.sev.padEnd(5) + ' ' + h.msg + (h.fix ? '\n -> ' + h.fix : '') + '\n'; if (!r.hits.length) o += ' (no findings)\n'; }
39
+ return o;
40
+ }
41
+ function trialState() {
42
+ // s158 — ⚑7일 무료 없음: 새 체험은 ⛔열지 않는다 · 이미 시작된 체험(trial.json)만 끝까지 지킨다 (읽기 전용)
43
+ if (process.env.READYSTACK_NO_TRIAL) return { active: false };
44
+ try {
45
+ const p = path.join(path.dirname(lic.storePath()), S.bin + '.trial.json');
46
+ const t = JSON.parse(fs.readFileSync(p, 'utf8'));
47
+ return { active: !!(t && t.until) && new Date(t.until + 'T23:59:59Z').getTime() > Date.now(), until: t && t.until };
48
+ } catch (e) { return { active: false }; }
49
+ }
50
+ // ★s158 2026-09-23 — the free run SPEAKS about the rest of the folder (vsix: auto.js · crx: welcome tab).
51
+ // The answer for the named files is complete and free; the next step is shown with the user's OWN numbers:
52
+ // "this folder has N more matching files - M issues in K of them" + the one command that sweeps them.
53
+ // Never blocks, never starts a trial (s158: no free trial - the free answer on the named files is the "try it"), human seat only, 400 files / 1.5 s cap.
54
+ function folderHint(done) {
55
+ if (!process.stderr.isTTY || process.env.CI || process.env.READYSTACK_NO_HINT || !done.length) return;
56
+ const base = path.dirname(path.resolve(done[0]));
57
+ const seen = new Set(done.map((f) => path.resolve(f)));
58
+ const all = walk(base, S.exts || [], []).filter((f) => !seen.has(path.resolve(f)));
59
+ if (!all.length) return;
60
+ const t0 = Date.now(); let issues = 0, hitFiles = 0, scanned = 0;
61
+ for (const f of all.slice(0, 400)) { if (Date.now() - t0 > 1500) break; let t = ''; try { t = fs.readFileSync(f, 'utf8'); } catch (e) { continue; } scanned++; const h = scan(t, f); if (h.length) { issues += h.length; hitFiles++; } }
62
+ const rel = path.relative(process.cwd(), base) || '.';
63
+ const tail = trialState().active ? 'free during your trial' : '$' + S.price + ' once';
64
+ const more = all.length + ' more matching file' + (all.length > 1 ? 's' : '');
65
+ const found = issues ? ' - ' + (scanned < all.length ? 'at least ' : '') + issues + ' issue' + (issues > 1 ? 's' : '') + ' in ' + hitFiles + ' of them' : ' - no issues found in them';
66
+ process.stderr.write('\n' + (rel === '.' ? 'This folder' : rel) + ' has ' + more + found + '.\n' + (issues ? 'Sweep them all: ' + S.bin + ' --dir ' + (/\s/.test(rel) ? JSON.stringify(rel) : rel) + ' (' + tail + ')\n' : ''));
67
+ }
68
+ let _usePinged = false;
69
+ function pingUse() {
70
+ try {
71
+ if (_usePinged) return; _usePinged = true;
72
+ if (process.env.DO_NOT_TRACK === '1' || process.env.READYSTACK_NO_TELEMETRY || process.env.CI) return;
73
+ if (!(process.stdout.isTTY || process.stdin.isTTY)) return; // human seat only (s152)
74
+ const https = require('https');
75
+ const body = JSON.stringify({ t: 'use', slug: S.bin, src: 'cli', why: 'free' });
76
+ const req = https.request({ hostname: 'getreadystack.com', path: '/api/ev', method: 'POST', timeout: 3000,
77
+ headers: { 'content-type': 'application/json', 'content-length': Buffer.byteLength(body), 'user-agent': 'readystack-cli/' + S.bin } }, function (res) { res.resume(); });
78
+ req.on('timeout', function () { req.destroy(); }); req.on('error', function () {});
79
+ req.write(body); req.end();
80
+ } catch (e) {}
81
+ }
82
+ function mcpServe() {
83
+ process.env.READYSTACK_MCP = '1'; // s152 - 에이전트(Claude Code·Cursor)가 부른 세션은 사람 자리다 · 키 판 핑 src=mcp
84
+ // s144 — MCP server over stdio (newline-delimited JSON-RPC · no dependencies). Free: check_text · check_file. Licence (s158: no free trial): check_dir.
85
+ const rl = require('readline').createInterface({ input: process.stdin });
86
+ const send = (o) => process.stdout.write(JSON.stringify(o) + '\n');
87
+ const tools = [
88
+ { name: 'check_text', description: S.name + ' - run all ' + RULE_N + ' checks on a text (free)', inputSchema: { type: 'object', properties: { text: { type: 'string', description: 'file contents' }, path: { type: 'string', description: 'optional file name for context' } }, required: ['text'] } },
89
+ { name: 'check_file', description: S.name + ' - run all checks on one file by path (free)', inputSchema: { type: 'object', properties: { path: { type: 'string' } }, required: ['path'] } },
90
+ { name: 'check_dir', description: S.name + ' - sweep a folder and return every finding (licence; $' + S.price + ' once)', inputSchema: { type: 'object', properties: { dir: { type: 'string' }, ext: { type: 'string', description: 'optional extension filter, e.g. .html' } }, required: ['dir'] } }
91
+ ];
92
+ const result = (id, rows) => send({ jsonrpc: '2.0', id, result: { content: [{ type: 'text', text: render(rows, 'text') }], structuredContent: { tool: S.name, rules: RULE_N, files: rows } } });
93
+ const fail = (id, text) => send({ jsonrpc: '2.0', id, result: { content: [{ type: 'text', text }], isError: true } });
94
+ rl.on('line', async (line) => {
95
+ let m; try { m = JSON.parse(line); } catch (e) { return; }
96
+ const id = m.id, method = m.method;
97
+ if (method === 'initialize') return send({ jsonrpc: '2.0', id, result: { protocolVersion: '2025-06-18', capabilities: { tools: {} }, serverInfo: { name: '@readystack/' + S.bin, version: '1.0.0' } } });
98
+ if (method === 'notifications/initialized' || method === 'ping') { if (id !== undefined) send({ jsonrpc: '2.0', id, result: {} }); return; }
99
+ if (method === 'tools/list') return send({ jsonrpc: '2.0', id, result: { tools } });
100
+ if (method === 'tools/call') {
101
+ const name = (m.params || {}).name, args = (m.params || {}).arguments || {};
102
+ try {
103
+ if (name === 'check_text') return result(id, [{ file: args.path || '(text)', hits: scan(String(args.text || ''), args.path || '') }]);
104
+ if (name === 'check_file') return result(id, [{ file: args.path, hits: scan(fs.readFileSync(args.path, 'utf8'), args.path) }]);
105
+ if (name === 'check_dir') {
106
+ const r = await lic.ensure();
107
+ if (!r.ok && !trialState().active) return fail(id, S.need_key + ' Get a licence ($' + S.price + ', once): ' + lic.BUY_URL);
108
+ const files = walk(args.dir, args.ext ? [args.ext] : (S.exts || []), []);
109
+ return result(id, files.map((f) => { let t = ''; try { t = fs.readFileSync(f, 'utf8'); } catch (e) { return { file: f, hits: [], error: String(e.message) }; } return { file: f, hits: scan(t, f) }; }));
110
+ }
111
+ return send({ jsonrpc: '2.0', id, error: { code: -32601, message: 'unknown tool ' + name } });
112
+ } catch (e) { return fail(id, String(e && e.message || e)); }
113
+ }
114
+ if (id !== undefined) send({ jsonrpc: '2.0', id, error: { code: -32601, message: 'method not found: ' + method } });
115
+ });
116
+ }
117
+ function help() {
118
+ return [S.name + ' - ' + S.subtitle, '', 'Usage: ' + S.bin + ' <file> [more files] check the files you name (free, every rule)',
119
+ ' ' + S.bin + ' --dir <folder> [--ext .html] scan a whole folder (licence)',
120
+ ' ' + S.bin + ' ... --report csv|json|html [--out file] export a report (licence)',
121
+ ' ' + S.bin + ' ... --ci exit 1 when an error-level finding exists (licence)',
122
+ ' ' + S.bin + ' --license <key> store your licence key (or set READYSTACK_LICENSE)',
123
+ ' ' + S.bin + ' --rules list the ' + RULE_N + ' rules',
124
+ ' ' + S.bin + ' --mcp run as an MCP server (stdio) for Claude Code / Cursor / Windsurf - free checks, folder sweep needs a licence', '',
125
+ 'Free: ' + S.free, 'Licence ($' + S.price + ', once): ' + S.paid, 'Get a licence: ' + lic.BUY_URL, ''].join('\n');
126
+ }
127
+ (async function main() {
128
+ try { const _feed = await lic.pullFeed(); if (_feed && Array.isArray(_feed.rules)) { if (Array.isArray(ENGINE.RULES)) for (const r of _feed.rules) ENGINE.RULES.push(r); } } catch (e) {} // ★s134 구독 피드 병합 (키 있는 손님만)
129
+ const a = process.argv.slice(2);
130
+ const get = (k) => { const i = a.indexOf(k); return i >= 0 ? a[i + 1] : null; };
131
+ if (a.includes('--mcp')) { mcpServe(); return; }
132
+ if (!a.length || a.includes('--help') || a.includes('-h')) { process.stdout.write(help()); return; }
133
+ if (a.includes('--rules')) { process.stdout.write((RULE_LIST.length ? RULE_LIST.map((r, i) => String(i + 1).padStart(3) + ' [' + (r.sev || 'warn') + '] ' + (r.message || r.msg || r.id || '')) : Array.from({ length: RULE_N }, (_, i) => String(i + 1).padStart(3) + ' [engine] check ' + (i + 1))).join('\n') + '\n'); return; }
134
+ if (a.includes('--license')) { const r = await lic.ensure(get('--license')); process.stdout.write(r.ok ? 'Licence stored: ' + lic.storePath() + '\n' : 'Licence not accepted (' + r.why + '). Get one: ' + lic.BUY_URL + '\n'); process.exit(r.ok ? 0 : 2); }
135
+ const dir = get('--dir'), fmt = get('--report'), out = get('--out'), ci = a.includes('--ci');
136
+ const exts = a.includes('--ext') ? [get('--ext')] : (S.exts || []);
137
+ const paid = !!(dir || fmt || ci);
138
+ if (paid) {
139
+ const r = await lic.ensure();
140
+ if (!r.ok) {
141
+ const t = trialState(); // s158 — ⚑7일 무료 없음 · 이미 시작된 체험만 지킨다
142
+ if (t.active) process.stderr.write('Trial: the full run is free until ' + t.until + ' — after that $' + S.price + ' once. Get a licence: ' + lic.BUY_URL + '\n');
143
+ else {
144
+ // s158 — the key is asked WITH the customer's own count (endowment · open loop): how many issues this folder holds.
145
+ let own = '';
146
+ if (dir) { try { const all = walk(dir, exts, []); let n = 0, k = 0, sc = 0; const t0 = Date.now();
147
+ for (const f of all.slice(0, 2000)) { if (Date.now() - t0 > 4000) break; let tx = ''; try { tx = fs.readFileSync(f, 'utf8'); } catch (e) { continue; } sc++; const h = scan(tx, f); if (h.length) { n += h.length; k++; } }
148
+ if (n) own = dir + ': ' + (sc < all.length ? 'at least ' : '') + n + ' issue' + (n > 1 ? 's' : '') + ' in ' + k + ' of ' + all.length + ' files.\n'; } catch (e) {} }
149
+ process.stderr.write(own + S.need_key + '\n set READYSTACK_LICENSE=<key> or ' + S.bin + ' --license <key>\n Get a licence ($' + S.price + ' once): ' + lic.BUY_URL + '\n'); process.exit(2);
150
+ }
151
+ }
152
+ }
153
+ const files = dir ? walk(dir, exts, []) : a.filter((x, i) => !x.startsWith('--') && !['--dir', '--report', '--out', '--ext', '--license'].includes(a[i - 1]));
154
+ if (!files.length) { process.stderr.write('No files. ' + S.bin + ' --help\n'); process.exit(2); }
155
+ const rows = files.map((f) => { let t = ''; try { t = fs.readFileSync(f, 'utf8'); } catch (e) { return { file: f, hits: [], error: String(e.message) }; } return { file: f, hits: scan(t) }; });
156
+ const text = render(rows, fmt || 'text');
157
+ if (out) fs.writeFileSync(out, text); else process.stdout.write(text.endsWith('\n') ? text : text + '\n');
158
+ if (!paid) { try { folderHint(files); } catch (e) {} pingUse(); } // s158 — a free run ends with the user's own folder count + one anonymous 'used' count (human seat only)
159
+ const errors = rows.reduce((n, r) => n + r.hits.filter((h) => h.sev === 'error').length, 0);
160
+ if (ci && errors) process.exit(1);
161
+ })().catch((e) => { process.stderr.write(String(e && e.stack || e) + '\n'); process.exit(3); });
package/engine.js ADDED
@@ -0,0 +1,83 @@
1
+ /* ImmoWertV / BewG Gutachten-Lint — gleiche Datei für VS Code (node) und Browser */
2
+ (function () {
3
+ var isNode = (typeof module !== 'undefined' && module.exports);
4
+ var RULES = isNode ? require('./rules.json') : window.IWV_RULES;
5
+ var IWV_START = Date.UTC(2022, 0, 1);
6
+
7
+ // Absätze bilden und Zeilenumbrüche flachklopfen (hart umbrochene Entwürfe)
8
+ function paragraphs(text) {
9
+ var lines = String(text || '').split(/\r?\n/), out = [], cur = null;
10
+ for (var i = 0; i < lines.length; i++) {
11
+ if (/^\s*$/.test(lines[i])) { cur = null; continue; }
12
+ if (!cur) { cur = { line: i + 1, raw: [], text: '' }; out.push(cur); }
13
+ cur.raw.push({ n: i + 1, s: lines[i] });
14
+ cur.text = (cur.text + ' ' + lines[i]).replace(/\s+/g, ' ').trim();
15
+ }
16
+ return out;
17
+ }
18
+ function lineOf(p, re) {
19
+ for (var i = 0; i < p.raw.length; i++) { re.lastIndex = 0; if (re.test(p.raw[i].s)) return p.raw[i].n; }
20
+ return p.line;
21
+ }
22
+ function parseDate(s) {
23
+ var m = /(\d{1,2})\.(\d{1,2})\.(\d{4})/.exec(s || '');
24
+ if (m) return Date.UTC(+m[3], +m[2] - 1, +m[1]);
25
+ m = /(\d{4})-(\d{2})-(\d{2})/.exec(s || '');
26
+ if (m) return Date.UTC(+m[1], +m[2] - 1, +m[3]);
27
+ return null;
28
+ }
29
+ function days(a, b) { return Math.round((b - a) / 864e5); }
30
+ function msg(r, extra) { return r.title + (extra ? ' (' + extra + ')' : '') + ' → ' + r.fix + ' [' + r.ref + ']'; }
31
+
32
+ function check(text, opts) {
33
+ opts = opts || {};
34
+ var today = parseDate(String(opts.today || ''));
35
+ if (today === null) { var d = new Date(); today = Date.UTC(d.getFullYear(), d.getMonth(), d.getDate()); }
36
+ var ps = paragraphs(text), all = ps.map(function (p) { return p.text; }).join(' '), findings = [];
37
+ RULES.forEach(function (r) {
38
+ if (r.kind === 'pattern') {
39
+ var re = new RegExp(r.pattern, r.flags || '');
40
+ ps.forEach(function (p) {
41
+ if (!re.test(p.text)) return;
42
+ if (r.require && !new RegExp(r.require, 'i').test(p.text)) return;
43
+ if (r.exclude && new RegExp(r.exclude, 'i').test(p.text)) return;
44
+ findings.push({ check: r.id, sev: r.sev, msg: msg(r), line: lineOf(p, new RegExp(r.pattern, r.flags || '')) });
45
+ });
46
+ } else if (r.kind === 'gnd_rnd') {
47
+ if (!/BewG|Bewertungsgesetz/.test(all)) return;
48
+ var g = /(?:Gesamtnutzungsdauer|\bGND\b)\D{0,40}?(\d{2,3})\s*Jahre/i.exec(all);
49
+ if (!g) return;
50
+ var gnd = +g[1], min = Math.ceil(gnd * 0.3);
51
+ ps.forEach(function (p) {
52
+ var m = /(?:Restnutzungsdauer|\bRND\b)\D{0,40}?(\d{1,3})\s*Jahre/i.exec(p.text);
53
+ if (m && +m[1] < min) findings.push({ check: r.id, sev: r.sev, msg: msg(r, 'RND ' + m[1] + ' Jahre, Minimum bei GND ' + gnd + ' = ' + min + ' Jahre'), line: lineOf(p, /Restnutzungsdauer|\bRND\b/i) });
54
+ });
55
+ } else if (r.kind === 'brw_age') {
56
+ var ref = null, refLabel = 'heute';
57
+ ps.some(function (p) {
58
+ if (/Wertermittlungsstichtag|Bewertungsstichtag/i.test(p.text)) { ref = parseDate(p.text); return ref !== null; }
59
+ return false;
60
+ });
61
+ if (ref === null) ref = today; else refLabel = 'Wertermittlungsstichtag';
62
+ ps.forEach(function (p) {
63
+ if (!/Bodenrichtwert/i.test(p.text)) return;
64
+ var b = parseDate(p.text);
65
+ if (b === null) return;
66
+ var age = days(b, ref);
67
+ if (age > r.maxDays) findings.push({ check: r.id, sev: r.sev, msg: msg(r, age + ' Tage vor ' + refLabel), line: lineOf(p, /Bodenrichtwert/i) });
68
+ });
69
+ } else if (r.kind === 'absent') {
70
+ if (!new RegExp(r.trigger, 'i').test(all) || new RegExp(r.need, 'i').test(all)) return;
71
+ var tp = null;
72
+ ps.some(function (p) { if (new RegExp(r.trigger, 'i').test(p.text)) { tp = p; return true; } return false; });
73
+ findings.push({ check: r.id, sev: r.sev, msg: msg(r, 'ImmoWertV 2021 gilt seit ' + days(IWV_START, today) + ' Tagen'), line: tp ? lineOf(tp, new RegExp(r.trigger, 'i')) : 1 });
74
+ }
75
+ });
76
+ findings.sort(function (a, b) { return a.line - b.line; });
77
+ return { findings: findings };
78
+ }
79
+
80
+ var api = { engine: { check: check }, RULES: RULES, RULE_COUNT: RULES.length };
81
+ if (isNode) module.exports = api;
82
+ if (typeof window !== 'undefined') window.IWVENGINE = api;
83
+ })();
package/license.js ADDED
@@ -0,0 +1,83 @@
1
+ // license.js — Polar licence check for the CLI / container. Generated by adapters.py; do not edit by hand.
2
+ 'use strict';
3
+ const https = require('https'), fs = require('fs'), path = require('path'), os = require('os');
4
+ const ORG_ID = 'a5cdf664-d8e7-4f87-8895-056717aaba17';
5
+ const BENEFIT_ID = '2de7425b-b5d1-4749-af40-16c4b88e8a01'; // s142 — this product's Polar benefit (s140 law: ask with benefit_id, or one key opens every product)
6
+ const BUY_URL = 'https://buy.polar.sh/polar_cl_Unfkx52xTXn9Oa6364ORdkEPTW4ww5DtVFTKo3eeqSb';
7
+ const SLUG = 'immowertv-gutachten-lint';
8
+ const GRACE_MS = 30 * 24 * 3600 * 1000; // after a successful check, 30 days work offline
9
+ const RECHECK_MS = 7 * 24 * 3600 * 1000; // re-ask Polar every 7 days (refunds / cancellations)
10
+ function storePath() { return path.join(process.env.READYSTACK_HOME || path.join(os.homedir(), '.config', 'readystack'), SLUG + '.json'); }
11
+ function load() { try { return JSON.parse(fs.readFileSync(storePath(), 'utf8')); } catch (e) { return {}; } }
12
+ function save(o) { try { fs.mkdirSync(path.dirname(storePath()), { recursive: true }); fs.writeFileSync(storePath(), JSON.stringify(o)); } catch (e) { /* read-only home: still works for this run */ } }
13
+ const ALL_BENEFIT_ID = '22692551-5203-4467-b1a3-e33cdba6589d'; // s149 2026-09-17 — 팀 키(전 린터 한 키 · Polar benefit) · 상품 benefit 다음에 한 번 더 묻는다
14
+ function validate(key) {
15
+ return validate1(key, BENEFIT_ID).then(function (r) { return (r.ok || r.offline || !/^[0-9a-f-]{36}$/.test(ALL_BENEFIT_ID)) ? r : validate1(key, ALL_BENEFIT_ID); });
16
+ }
17
+ function validate1(key, ben) {
18
+ return new Promise(function (resolve) {
19
+ if (!ORG_ID) return resolve({ ok: false, offline: false });
20
+ const body = JSON.stringify(/^[0-9a-f-]{36}$/.test(ben) ? { key: key, organization_id: ORG_ID, benefit_id: ben } : { key: key, organization_id: ORG_ID });
21
+ const req = https.request({ hostname: 'api.polar.sh', path: '/v1/customer-portal/license-keys/validate', method: 'POST', timeout: 8000,
22
+ headers: { 'content-type': 'application/json', 'polar-version': '2026-04', 'content-length': Buffer.byteLength(body) } }, function (res) {
23
+ let buf = ''; res.on('data', function (d) { buf += d; });
24
+ res.on('end', function () {
25
+ if (res.statusCode !== 200) return resolve({ ok: false, offline: false });
26
+ try { const j = JSON.parse(buf); resolve({ ok: j && (j.status === 'granted' || j.valid === true || !!j.id), offline: false }); }
27
+ catch (e) { resolve({ ok: false, offline: false }); }
28
+ });
29
+ });
30
+ req.on('timeout', function () { req.destroy(); resolve({ ok: false, offline: true }); });
31
+ req.on('error', function () { resolve({ ok: false, offline: true }); });
32
+ req.write(body); req.end();
33
+ });
34
+ }
35
+ // ★s151 2026-09-19 — 키 판(키가 없거나 거절된 순간)을 익명으로 센다 (슬러그·출처·이유만) · DO_NOT_TRACK=1 · READYSTACK_NO_TELEMETRY 면 안 보낸다 · 실패는 조용히 · 프로세스당 한 번.
36
+ let _pinged = false;
37
+ function pingPaywall(why) {
38
+ try {
39
+ if (_pinged) return; _pinged = true;
40
+ if (process.env.DO_NOT_TRACK === '1' || process.env.READYSTACK_NO_TELEMETRY || process.env.CI) return; // s151: CI(깃허브 액션 등)와 우리 빌드는 손님이 아니다
41
+ if (!(process.stdout.isTTY || process.stdin.isTTY || process.env.READYSTACK_MCP === '1')) return; // s152: 사람 자리(터미널·MCP 세션)에서만 센다 - 발행 1분 뒤 남의 실행기(JP · 우리 3대는 US)가 돌린 no_key 13건은 손님이 아니다
42
+ const body = JSON.stringify({ t: 'paywall', slug: SLUG, src: process.env.READYSTACK_MCP === '1' ? 'mcp' : 'cli', why: why || 'no_key' });
43
+ const req = https.request({ hostname: 'getreadystack.com', path: '/api/ev', method: 'POST', timeout: 3000,
44
+ headers: { 'content-type': 'application/json', 'content-length': Buffer.byteLength(body), 'user-agent': 'readystack-cli/' + SLUG } }, function (res) { res.resume(); });
45
+ req.on('timeout', function () { req.destroy(); }); req.on('error', function () {});
46
+ req.write(body); req.end();
47
+ } catch (e) { /* 세는 것이 실패해도 상품은 돈다 */ }
48
+ }
49
+ async function ensure(explicitKey) {
50
+ const st = load();
51
+ const key = explicitKey || process.env.READYSTACK_LICENSE || st.key;
52
+ if (!key) { pingPaywall('no_key'); return { ok: false, why: 'no_key' }; } // s151
53
+ const age = Date.now() - (st.okAt || 0);
54
+ if (!explicitKey && st.key === key && age < RECHECK_MS) return { ok: true, cached: true };
55
+ const r = await validate(String(key).trim());
56
+ if (r.ok) { save({ key: String(key).trim(), okAt: Date.now() }); return { ok: true }; }
57
+ if (r.offline && st.key === key && age < GRACE_MS) return { ok: true, offline: true };
58
+ if (!r.offline) pingPaywall('invalid'); // s151
59
+ return { ok: false, why: r.offline ? 'offline' : 'invalid' };
60
+ }
61
+ // ★s134 — 구독 규칙 피드(층3 "바뀌면 업데이트"): 키 있는 손님만 · 7일마다 · 오프라인은 캐시. 워커 GET /api/rules/<slug>?key=
62
+ const FEED_URL = 'https://getreadystack.com/api/rules/';
63
+ function pullFeed() {
64
+ const st = load(); const key = process.env.READYSTACK_LICENSE || st.key; const cached = st.feed || null;
65
+ if (!key) return Promise.resolve(cached);
66
+ if (cached && (Date.now() - (st.feedAt || 0)) < RECHECK_MS) return Promise.resolve(cached);
67
+ return new Promise(function (resolve) {
68
+ let req;
69
+ try {
70
+ req = https.get(FEED_URL + encodeURIComponent(SLUG) + '?key=' + encodeURIComponent(key), { timeout: 8000, headers: { 'user-agent': 'readystack-cli' } }, function (res) {
71
+ let buf = ''; res.on('data', function (d) { buf += d; });
72
+ res.on('end', function () {
73
+ if (res.statusCode !== 200) return resolve(cached);
74
+ try { const j = JSON.parse(buf); if (!j || !Array.isArray(j.rules)) return resolve(cached); save(Object.assign(load(), { feed: j, feedAt: Date.now() })); resolve(j); }
75
+ catch (e) { resolve(cached); }
76
+ });
77
+ });
78
+ } catch (e) { return resolve(cached); }
79
+ req.on('timeout', function () { req.destroy(); resolve(cached); });
80
+ req.on('error', function () { resolve(cached); });
81
+ });
82
+ }
83
+ module.exports = { ensure, BUY_URL, storePath, pullFeed };
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@readystack/immowertv-gutachten-lint",
3
+ "version": "1.0.0",
4
+ "description": "Findet veraltete Normen und Modellwerte in Verkehrswertgutachten — 13 Regeln",
5
+ "license": "SEE LICENSE IN LICENSE.txt",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "keywords": [
10
+ "immowertv",
11
+ "verkehrswertgutachten",
12
+ "bewertungsgesetz",
13
+ "immobilienbewertung",
14
+ "sachverstaendige",
15
+ "grundstueck",
16
+ "bewg"
17
+ ],
18
+ "homepage": "https://getreadystack.com",
19
+ "funding": "https://buy.polar.sh/polar_cl_Unfkx52xTXn9Oa6364ORdkEPTW4ww5DtVFTKo3eeqSb",
20
+ "bin": {
21
+ "immowertv-gutachten-lint": "cli.js"
22
+ },
23
+ "engines": {
24
+ "node": ">=18"
25
+ },
26
+ "mcpName": "io.github.jmshinhwa/immowertv-gutachten-lint",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/jmshinhwa/readystack-themes.git",
30
+ "directory": "immowertv-gutachten-lint"
31
+ },
32
+ "files": [
33
+ "cli.js",
34
+ "license.js",
35
+ "rules.json",
36
+ "strings.json",
37
+ "README.md",
38
+ "LICENSE.txt",
39
+ "engine.js"
40
+ ]
41
+ }
package/rules.json ADDED
@@ -0,0 +1,131 @@
1
+ [
2
+ {
3
+ "id": "WERTV_1988",
4
+ "kind": "pattern",
5
+ "sev": "error",
6
+ "pattern": "(^|[^A-Za-zÄÖÜäöü])WertV\\b",
7
+ "flags": "",
8
+ "title": "WertV (1988) zitiert",
9
+ "fix": "WertV gilt seit 1.7.2010 nicht mehr; heute ImmoWertV 2021 zitieren",
10
+ "ref": "ImmoWertV 2021"
11
+ },
12
+ {
13
+ "id": "IMMOWERTV_2010",
14
+ "kind": "pattern",
15
+ "sev": "error",
16
+ "pattern": "ImmoWertV\\s*(2010|vom\\s+19\\.?\\s*Mai\\s+2010)",
17
+ "flags": "i",
18
+ "title": "ImmoWertV 2010 zitiert",
19
+ "fix": "seit 1.1.2022 gilt die ImmoWertV 2021",
20
+ "ref": "ImmoWertV 2021"
21
+ },
22
+ {
23
+ "id": "SW_RL",
24
+ "kind": "pattern",
25
+ "sev": "error",
26
+ "pattern": "Sachwertrichtlinie|\\bSW-RL\\b",
27
+ "flags": "i",
28
+ "title": "Sachwertrichtlinie (SW-RL) als Grundlage",
29
+ "fix": "Inhalte stehen jetzt in ImmoWertV 2021 und ImmoWertA; diese zitieren",
30
+ "ref": "ImmoWertV 2021, ImmoWertA"
31
+ },
32
+ {
33
+ "id": "EW_RL",
34
+ "kind": "pattern",
35
+ "sev": "error",
36
+ "pattern": "Ertragswertrichtlinie|\\bEW-RL\\b",
37
+ "flags": "i",
38
+ "title": "Ertragswertrichtlinie (EW-RL) als Grundlage",
39
+ "fix": "Inhalte stehen jetzt in ImmoWertV 2021 und ImmoWertA; diese zitieren",
40
+ "ref": "ImmoWertV 2021, ImmoWertA"
41
+ },
42
+ {
43
+ "id": "VW_RL",
44
+ "kind": "pattern",
45
+ "sev": "error",
46
+ "pattern": "Vergleichswertrichtlinie|\\bVW-RL\\b",
47
+ "flags": "i",
48
+ "title": "Vergleichswertrichtlinie (VW-RL) als Grundlage",
49
+ "fix": "Inhalte stehen jetzt in ImmoWertV 2021 und ImmoWertA; diese zitieren",
50
+ "ref": "ImmoWertV 2021, ImmoWertA"
51
+ },
52
+ {
53
+ "id": "WERTR",
54
+ "kind": "pattern",
55
+ "sev": "error",
56
+ "pattern": "\\bWertR\\b|Wertermittlungsrichtlinien",
57
+ "flags": "",
58
+ "title": "WertR (Wertermittlungsrichtlinien) zitiert",
59
+ "fix": "WertR ist abgelöst; ImmoWertV 2021 und ImmoWertA zitieren",
60
+ "ref": "ImmoWertV 2021, ImmoWertA"
61
+ },
62
+ {
63
+ "id": "NHK_2000",
64
+ "kind": "pattern",
65
+ "sev": "error",
66
+ "pattern": "NHK\\s*2000|Normalherstellungskosten\\s*2000",
67
+ "flags": "i",
68
+ "title": "NHK 2000 verwendet",
69
+ "fix": "NHK 2010 nach Anlage 4 ImmoWertV 2021 verwenden",
70
+ "ref": "Anlage 4 ImmoWertV"
71
+ },
72
+ {
73
+ "id": "GND_70",
74
+ "kind": "pattern",
75
+ "sev": "error",
76
+ "pattern": "(Gesamtnutzungsdauer|\\bGND\\b)[^.;]{0,60}?\\b70\\s*Jahre",
77
+ "flags": "i",
78
+ "exclude": "Geschäft|Gesch\\.|Büro|Buero",
79
+ "title": "Gesamtnutzungsdauer 70 Jahre für Wohngebäude",
80
+ "fix": "Wohngebäude: GND 80 Jahre (Anlage 1 ImmoWertV; Anlage 22 BewG für Stichtage nach 31.12.2022)",
81
+ "ref": "Anlage 1 ImmoWertV, Anlage 22 BewG"
82
+ },
83
+ {
84
+ "id": "RND_MIN_30",
85
+ "kind": "gnd_rnd",
86
+ "sev": "error",
87
+ "title": "Restnutzungsdauer unter 30 % der Gesamtnutzungsdauer",
88
+ "fix": "im BewG-Verfahren beträgt die RND regelmäßig mindestens 30 % der GND",
89
+ "ref": "§ 185 Abs. 3 BewG"
90
+ },
91
+ {
92
+ "id": "LZS_188_ALT",
93
+ "kind": "pattern",
94
+ "sev": "error",
95
+ "pattern": "Liegenschaftszins[^.;]{0,60}?(?<![\\d,.])5(,0+)?\\s*%",
96
+ "flags": "i",
97
+ "require": "Mietwohngrundst",
98
+ "title": "Liegenschaftszins 5,0 % für Mietwohngrundstück",
99
+ "fix": "für Stichtage nach 31.12.2022 gilt hilfsweise 3,5 % (§ 188 Abs. 2 BewG), wenn der Gutachterausschuss keinen Zins bereitstellt",
100
+ "ref": "§ 188 Abs. 2 BewG"
101
+ },
102
+ {
103
+ "id": "BRW_ALT",
104
+ "kind": "brw_age",
105
+ "sev": "warn",
106
+ "maxDays": 730,
107
+ "title": "Bodenrichtwert-Stichtag älter als 2 Jahre",
108
+ "fix": "Gutachterausschüsse ermitteln Bodenrichtwerte mindestens zum Ende jedes zweiten Kalenderjahres; den aktuellen Wert einsetzen",
109
+ "ref": "§ 196 BauGB"
110
+ },
111
+ {
112
+ "id": "REGIONALFAKTOR_FEHLT",
113
+ "kind": "absent",
114
+ "sev": "warn",
115
+ "trigger": "Sachwertverfahren",
116
+ "need": "Regionalfaktor",
117
+ "title": "Sachwertverfahren ohne Regionalfaktor",
118
+ "fix": "Regionalfaktor des Gutachterausschusses angeben",
119
+ "ref": "§ 36 Abs. 3 ImmoWertV"
120
+ },
121
+ {
122
+ "id": "BAUPREISINDEX_FEHLT",
123
+ "kind": "absent",
124
+ "sev": "warn",
125
+ "trigger": "Sachwertverfahren",
126
+ "need": "Baupreisindex",
127
+ "title": "Sachwertverfahren ohne Baupreisindex",
128
+ "fix": "NHK 2010 mit dem Baupreisindex auf den Wertermittlungsstichtag anpassen",
129
+ "ref": "§ 36 Abs. 2 ImmoWertV"
130
+ }
131
+ ]
package/strings.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "Gutachten-Lint: ImmoWertV 2021 und BewG",
3
+ "subtitle": "Findet veraltete Normen und Modellwerte in Verkehrswertgutachten — 13 Regeln",
4
+ "bin": "immowertv-gutachten-lint",
5
+ "price": 29,
6
+ "free": "Prüft das offene Gutachten mit allen 13 Regeln und zeigt zu jeder veralteten Zeile die Korrektur.",
7
+ "paid": "Prüft alle Gutachten eines Ordners in einem Lauf und speichert das Prüfprotokoll als Datei für die Akte.",
8
+ "need_key": "This option needs a licence (Gutachten-Lint: ImmoWertV 2021 und BewG).",
9
+ "exts": []
10
+ }