feat: OpenMesh 基础平台与 MD/PDF 转换技能
Some checks failed
CI / pytest (push) Has been cancelled
CI / gui-unit (push) Has been cancelled
CI / gui-e2e (push) Has been cancelled

- 后端: coworker 智能体框架, WS API, 文件上传, 附件处理
- 前端: Open WebUI, 文件全量走 upload API (含 MD/TXT/JSON 等文本类)
- 技能: md-to-office (pandoc + wkhtmltopdf)
- 修复: 上传文件路径丢失, Agent 搜索浪费, 输出文件跑到 uploads/
- 打包: PyInstaller one-dir, 预打包 pandoc/wkhtmltopdf/chromium
This commit is contained in:
2026-09-13 23:41:04 +08:00
commit 6f402ffcee
638 changed files with 154534 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
---
name: safe-upgrade-pr
description: Ship minimal, test-verified dependency upgrades as focused PRs
---
Turn triaged advisories into upgrade PRs a reviewer can merge without fear.
1. One branch per ecosystem (`security/deps-npm`, `security/deps-python`), smallest
viable bumps: the fixed-in patch/minor, not "latest". Majors get their own branch
and a migration note.
2. Regenerate lockfiles with the repo's OWN toolchain (`npm install pkg@ver`,
`uv lock`, `poetry update pkg` …) — never hand-edit a lockfile.
3. Verify before proposing: clean install, build, and the project's test suite. Red
suite → investigate; if the bump itself breaks the build, document what's entangled
and propose the next-smallest path instead of forcing it.
4. PR body per upgrade: advisory id(s) closed, package old→new version, reachability
verdict from the audit (one line), and the verification commands run. Skip CVE
boilerplate walls — link the advisory instead.
5. Leave `accept-with-note` advisories OUT of the PR; record them in the PR body's
"consciously not fixed" list with their justification, so the decision is visible
and revisitable.
6. Never merge your own upgrade PR — deliver it with what a reviewer should check
(typically: lockfile diff sanity and the test run).