文件最后提交记录最后更新时间
chore: relicense to Apache 2.0 and align PilotDeck naming Switch project license and README badges from AGPL-3.0 to Apache 2.0, recognize ~/.pilotdeck as the general-chat cwd for skills, and use messageTypes.pilotdeck for assistant labels instead of the legacy claude key. Co-authored-by: Cursor <cursoragent@cursor.com> 6 天前
feat(skills): add CLI migration from Claude Code, OpenClaw, and Hermes Introduce pilotdeck skills migrate with dry-run/execute modes, a bundled migration skill, and remove the yeysai catalog preset from the UI picker. Co-authored-by: Cursor <cursoragent@cursor.com> 14 天前
feat(skills): add CLI migration from Claude Code, OpenClaw, and Hermes Introduce pilotdeck skills migrate with dry-run/execute modes, a bundled migration skill, and remove the yeysai catalog preset from the UI picker. Co-authored-by: Cursor <cursoragent@cursor.com> 14 天前
feat(skills): centralize skill management in the gateway Previously the UI server's ui/server/routes/skills.js managed skills as a parallel system anchored to ~/.claude/skills/, while the gateway only saw skills under ~/.pilotdeck/skills/ via PluginRuntime discovery. The two views silently diverged and any fix needed to be applied twice. This change makes the gateway the single source of truth: - New src/extension/skills/{SkillManager,types,index}.ts — list/read/ write/create/delete/import/validate/scan operating on both user-scoped (~/.pilotdeck/skills/) and project-scoped (<projectRoot>/.pilotdeck/ skills/) directories. Uses the yaml package for proper frontmatter parsing instead of the previous line-based heuristics. - Eight new skill_* RPCs added to the Gateway interface, implemented in InProcessGateway, proxied by RemoteGateway, and dispatched in GatewayWsConnection. createLocalGateway wires the SkillManager into the InProcessGateway constructor. - ui/server/routes/skills.js rewritten as a thin bridge that forwards REST requests to the gateway. Multipart upload (/import-upload) and clawhub endpoints remain file-based but now target .pilotdeck/skills/. - New GatewayRequestError preserves structured error code + validation payload across the websocket, so SkillManagerError / SkillValidation Error surface as the expected HTTP statuses (409 conflict, 400 invalid slug, 404 not found, 422 validation failed) on the UI bridge instead of collapsing into a generic 500. Tests: protocol-sync test extended to include the new skill_* methods. Co-authored-by: Cursor <cursoragent@cursor.com> 19 天前