📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-23 16:03:00 +00:00
parent c4c6a41c21
commit 59e15f8999
557 changed files with 10501 additions and 3168 deletions
@@ -17,6 +17,27 @@ const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
function safeJoin(base, ...parts) {
const root = path.resolve(base);
const target = path.resolve(root, ...parts);
const rel = path.relative(root, target);
if (rel.startsWith('..') || path.isAbsolute(rel)) {
throw new Error(`Path escapes skill directory: ${parts.join('/')}`);
}
return target;
}
function selfTest() {
const root = path.resolve('/tmp/skill');
if (safeJoin(root, 'diagrams', 'a.svg') !== path.resolve(root, 'diagrams', 'a.svg')) {
throw new Error('safeJoin failed valid path');
}
for (const bad of ['../x', 'diagrams/../../x']) {
try { safeJoin(root, bad); } catch { continue; }
throw new Error(`safeJoin accepted ${bad}`);
}
}
function extractDotBlocks(markdown) {
const blocks = [];
const regex = /```dot\n([\s\S]*?)```/g;
@@ -83,6 +104,10 @@ function renderToSvg(dotContent) {
function main() {
const args = process.argv.slice(2);
if (args.includes('--self-test')) {
selfTest();
return;
}
const combine = args.includes('--combine');
const skillDirArg = args.find(a => !a.startsWith('--'));
@@ -99,7 +124,7 @@ function main() {
}
const skillDir = path.resolve(skillDirArg);
const skillFile = path.join(skillDir, 'SKILL.md');
const skillFile = safeJoin(skillDir, 'SKILL.md');
const skillName = path.basename(skillDir).replace(/-/g, '_');
if (!fs.existsSync(skillFile)) {
@@ -127,7 +152,7 @@ function main() {
console.log(`Found ${blocks.length} diagram(s) in ${path.basename(skillDir)}/SKILL.md`);
const outputDir = path.join(skillDir, 'diagrams');
const outputDir = safeJoin(skillDir, 'diagrams');
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir);
}
@@ -137,12 +162,12 @@ function main() {
const combined = combineGraphs(blocks, skillName);
const svg = renderToSvg(combined);
if (svg) {
const outputPath = path.join(outputDir, `${skillName}_combined.svg`);
const outputPath = safeJoin(outputDir, `${skillName}_combined.svg`);
fs.writeFileSync(outputPath, svg);
console.log(` Rendered: ${skillName}_combined.svg`);
// Also write the dot source for debugging
const dotPath = path.join(outputDir, `${skillName}_combined.dot`);
const dotPath = safeJoin(outputDir, `${skillName}_combined.dot`);
fs.writeFileSync(dotPath, combined);
console.log(` Source: ${skillName}_combined.dot`);
} else {
@@ -153,7 +178,7 @@ function main() {
for (const block of blocks) {
const svg = renderToSvg(block.content);
if (svg) {
const outputPath = path.join(outputDir, `${block.name}.svg`);
const outputPath = safeJoin(outputDir, `${block.name}.svg`);
fs.writeFileSync(outputPath, svg);
console.log(` Rendered: ${block.name}.svg`);
} else {