📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-20 00:03:02 +00:00
parent 47ce7f78dc
commit 2c00adccd5
1216 changed files with 10376 additions and 90058 deletions
@@ -6,8 +6,15 @@ const { spawnSync } = require("child_process");
const projectRoot = path.resolve(__dirname, "..", "..", "..");
const helper = path.join(projectRoot, "skills", "git-pushing", "scripts", "smart_commit.sh");
const skillInstructions = fs.readFileSync(
path.join(projectRoot, "skills", "git-pushing", "SKILL.md"),
"utf8",
);
const tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), "git-pushing-helper-"));
assert.doesNotMatch(skillInstructions, /bash skills\/git-pushing\//);
assert.match(skillInstructions, /<skill-directory>\/scripts\/smart_commit\.sh/);
function run(command, args, cwd, expectedStatus = 0, extraEnv = {}) {
const result = spawnSync(command, args, {
cwd,