初始提交:ai-review 项目当前版本(含赛道一/二提交规范修订与时间节点文档)

This commit is contained in:
hangshuo652
2026-08-23 11:52:45 +08:00
commit 4da7044c4b
152 changed files with 33490 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
const db = require('./dist/db').default || require('./dist/db');
const { parseDimensions } = require('./dist/routes/standards');
const crypto = require('crypto');
const projectId = 'b1b5884e-ba85-4d8f-9a92-e524603587a0';
const categoryTag = '赛道一';
const standard = db.prepare('SELECT * FROM standards WHERE project_id = ? AND category_tag = ?').get(projectId, categoryTag);
console.log('STANDARD:', standard ? { id: standard.id, name: standard.name } : null);
if (standard) {
const dims = parseDimensions(standard.content);
console.log('DIMS:', dims.length, 'TOTAL:', dims.reduce((s, d) => s + d.maxScore, 0));
const passLine = Math.round(dims.reduce((s, d) => s + d.maxScore, 0) * 0.6);
console.log('PASS_LINE:', passLine);
const id = crypto.randomUUID();
try {
db.prepare(`INSERT INTO entries (id, project_id, standard_id, title, repo_url, category_tag, participant, pass_line, standard_snapshot, branch) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`).run(
id, projectId, standard.id, 'test-direct', 'https://example.com/repo.git',
categoryTag, 'test', passLine, JSON.stringify(dims), ''
);
console.log('INSERT OK, ID:', id);
} catch (e) {
console.log('INSERT ERROR:', e.message);
}
}