Separate Chinese display from plugin selector
Keep the installable plugin selector ASCII while restoring the Chinese user-facing display name for the patent drafting skill.\n\nConstraint: Codex marketplace entry name is the install selector and must remain ASCII kebab-case.\nRejected: Put Chinese in marketplace.json name | Codex list/add skips or fails to resolve that selector.\nConfidence: high\nScope-risk: narrow\nDirective: Use interface.displayName for Chinese aliases; never put localized text in plugin ids, directories, manifest name, or marketplace entry name.\nTested: python scripts/validate_marketplace.py; python /Users/eapil/.codex/skills/.system/plugin-creator/scripts/validate_plugin.py plugins/codex/plugins/patent-application-drafting-skill; temporary CODEX_HOME marketplace list and plugin add smoke test\nNot-tested: Interactive in-chat skill invocation was not rerun for this display-only change
This commit is contained in:
@@ -0,0 +1,411 @@
|
||||
{
|
||||
"sources": [
|
||||
{
|
||||
"id": "superpowers",
|
||||
"repo": "https://github.com/obra/superpowers.git",
|
||||
"ref": "main",
|
||||
"adapter": "codex-plugin",
|
||||
"pluginName": "superpowers",
|
||||
"category": "开发工具",
|
||||
"sourcePath": ".",
|
||||
"include": [
|
||||
".codex-plugin",
|
||||
"skills",
|
||||
"assets",
|
||||
"README.md",
|
||||
"LICENSE",
|
||||
"CODE_OF_CONDUCT.md"
|
||||
],
|
||||
"manifestOverrides": {
|
||||
"description": "面向编码 Agent 的规划、TDD、调试、代码评审和交付工作流集合。",
|
||||
"interface": {
|
||||
"displayName": "Superpowers",
|
||||
"shortDescription": "规划、TDD、调试、代码评审和交付工作流。",
|
||||
"longDescription": "Superpowers 提供面向编码 Agent 的结构化工作流,覆盖需求澄清、计划编写、测试驱动开发、系统化调试、并行执行、代码评审和交付收尾。",
|
||||
"category": "开发工具",
|
||||
"defaultPrompt": [
|
||||
"使用 Superpowers 帮我规划这个开发任务。",
|
||||
"使用 Superpowers 帮我系统调试这个问题。"
|
||||
]
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"brainstorming": "在开始创造性工作前澄清意图、约束和可行方向;适合功能设计、组件设计和行为变更。",
|
||||
"dispatching-parallel-agents": "将两个或更多互不依赖的子任务分派给并行 Agent,以提升吞吐并保持边界清晰。",
|
||||
"executing-plans": "按已经写好的实现计划逐步执行,并在关键节点进行检查和复核。",
|
||||
"finishing-a-development-branch": "实现完成且验证通过后,用于判断如何整理、提交和集成开发分支。",
|
||||
"receiving-code-review": "处理代码评审反馈时使用,先理解反馈和技术依据,再决定是否修改。",
|
||||
"requesting-code-review": "完成较大改动后请求代码评审,重点检查需求满足、风险、测试和回归。",
|
||||
"subagent-driven-development": "按计划把独立实现任务交给子 Agent,并由主 Agent 负责整合和验证。",
|
||||
"systematic-debugging": "遇到 bug、测试失败或异常行为时使用,通过复现、定位根因和验证修复来调试。",
|
||||
"test-driven-development": "实现功能或修复缺陷前使用,先写失败测试,再实现最小改动并重构。",
|
||||
"using-git-worktrees": "开始需要隔离的功能开发时使用,通过 git worktree 建立独立工作区。",
|
||||
"using-superpowers": "开始对话时了解如何发现和调用 Superpowers 技能。",
|
||||
"verification-before-completion": "在声称任务完成、修复成功或测试通过前使用,确保有实际验证证据。",
|
||||
"writing-plans": "在动手实现前编写多步骤计划,明确目标、约束、文件范围和验证方式。",
|
||||
"writing-skills": "创建、修改或验证 Agent skill 时使用,确保 skill 可触发、可维护、可测试。"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "oh-my-codex",
|
||||
"repo": "https://github.com/Yeachan-Heo/oh-my-codex.git",
|
||||
"ref": "main",
|
||||
"adapter": "codex-plugin",
|
||||
"pluginName": "oh-my-codex",
|
||||
"category": "开发工具",
|
||||
"sourcePath": "plugins/oh-my-codex",
|
||||
"sparseCheckout": [
|
||||
"plugins/oh-my-codex"
|
||||
],
|
||||
"include": [
|
||||
".codex-plugin",
|
||||
"skills",
|
||||
"hooks",
|
||||
".mcp.json",
|
||||
".app.json"
|
||||
],
|
||||
"manifestOverrides": {
|
||||
"description": "oh-my-codex 是 Codex CLI 的多 Agent 编排、结构化工作流、插件级 hooks、MCP 和 HUD 扩展插件。",
|
||||
"interface": {
|
||||
"displayName": "oh-my-codex",
|
||||
"shortDescription": "为 Codex CLI 提供 OMX 工作流、hooks、MCP 和多 Agent 编排。",
|
||||
"longDescription": "oh-my-codex 将 OMX 的规划、调试、代码评审、多 Agent 协作、目标执行、质量验证、wiki 和 HUD 工作流打包为 Codex 插件。插件包含官方支持的 plugin-scoped hooks、MCP 配置和多个 workflow skills;完整运行需要用户已安装 oh-my-codex CLI 并完成 omx setup。",
|
||||
"developerName": "Yeachan Heo",
|
||||
"category": "开发工具",
|
||||
"capabilities": [
|
||||
"Interactive",
|
||||
"Read",
|
||||
"Write"
|
||||
],
|
||||
"defaultPrompt": [
|
||||
"使用 oh-my-codex 帮我选择合适的 OMX 工作流。",
|
||||
"使用 oh-my-codex 帮我规划、执行并验证这个开发任务。"
|
||||
],
|
||||
"websiteURL": "https://oh-my-codex.dev",
|
||||
"privacyPolicyURL": "https://github.com/Yeachan-Heo/oh-my-codex",
|
||||
"termsOfServiceURL": "https://github.com/Yeachan-Heo/oh-my-codex",
|
||||
"brandColor": "#111827"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ui-ux-pro-max",
|
||||
"repo": "https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "ui-ux-pro-max",
|
||||
"category": "设计",
|
||||
"skillPath": ".claude/skills/ui-ux-pro-max",
|
||||
"metadataPath": "skill.json",
|
||||
"brandColor": "#7C3AED",
|
||||
"manifestOverrides": {
|
||||
"description": "面向界面设计、视觉风格、配色、字体、可访问性和前端技术栈的 UI/UX 设计智能库。",
|
||||
"interface": {
|
||||
"displayName": "UI/UX Pro Max",
|
||||
"shortDescription": "UI/UX 设计智能库,覆盖风格、配色、字体、可访问性、图表和前端技术栈。",
|
||||
"longDescription": "UI/UX Pro Max 提供可搜索的设计知识库,覆盖 UI 风格、配色、字体搭配、UX 指南、图表类型和多种前端技术栈,用于辅助中文用户完成产品界面设计和前端实现决策。",
|
||||
"category": "设计",
|
||||
"defaultPrompt": [
|
||||
"使用 UI/UX Pro Max 帮我设计这个界面。",
|
||||
"使用 UI/UX Pro Max 帮我优化这个产品体验。"
|
||||
]
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"ui-ux-pro-max": "用于界面设计、视觉风格、配色、字体、可访问性、图表和前端技术栈选择的 UI/UX 设计智能库。"
|
||||
},
|
||||
"materializePaths": [
|
||||
{
|
||||
"source": "src/ui-ux-pro-max/data",
|
||||
"destination": "data"
|
||||
},
|
||||
{
|
||||
"source": "src/ui-ux-pro-max/scripts",
|
||||
"destination": "scripts"
|
||||
}
|
||||
],
|
||||
"includeRootFiles": [
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "shadcn",
|
||||
"repo": "https://github.com/shadcn-ui/ui.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "shadcn",
|
||||
"category": "开发工具",
|
||||
"skillPath": "skills/shadcn",
|
||||
"brandColor": "#09090B",
|
||||
"manifestOverrides": {
|
||||
"version": "0.1.0",
|
||||
"description": "面向 shadcn/ui 项目的组件安装、组件查询、文档检索、预设处理和实现规范工作流。",
|
||||
"author": {
|
||||
"name": "shadcn",
|
||||
"url": "https://github.com/shadcn-ui"
|
||||
},
|
||||
"homepage": "https://ui.shadcn.com",
|
||||
"repository": "https://github.com/shadcn-ui/ui",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"shadcn",
|
||||
"shadcn-ui",
|
||||
"components",
|
||||
"design-system",
|
||||
"react",
|
||||
"tailwind"
|
||||
],
|
||||
"interface": {
|
||||
"displayName": "shadcn/ui",
|
||||
"shortDescription": "shadcn/ui 项目、组件、注册表和预设的开发工作流。",
|
||||
"longDescription": "shadcn/ui skill 提供项目上下文读取、组件搜索、组件文档检索、CLI 操作约束、注册表组件接入、预设处理以及常见组件实现规范,适合在 React、Next.js、Tailwind 和 shadcn/ui 项目中使用。",
|
||||
"developerName": "shadcn",
|
||||
"category": "开发工具",
|
||||
"defaultPrompt": [
|
||||
"使用 shadcn/ui 帮我添加或修复组件。",
|
||||
"使用 shadcn/ui 帮我检查这个项目的组件实现规范。"
|
||||
],
|
||||
"websiteURL": "https://ui.shadcn.com",
|
||||
"privacyPolicyURL": "https://github.com/shadcn-ui/ui",
|
||||
"termsOfServiceURL": "https://github.com/shadcn-ui/ui",
|
||||
"brandColor": "#09090B",
|
||||
"composerIcon": "./skills/shadcn/assets/shadcn-small.png",
|
||||
"logo": "./skills/shadcn/assets/shadcn.png"
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"shadcn": "用于 shadcn/ui 项目初始化、组件安装、组件文档检索、注册表组件接入、预设处理和实现规范检查的开发工作流。"
|
||||
},
|
||||
"includeRootFiles": [
|
||||
"LICENSE.md"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "frontend-slides",
|
||||
"repo": "https://github.com/zarazhangrui/frontend-slides.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "frontend-slides",
|
||||
"category": "文档处理",
|
||||
"skillPath": "plugins/frontend-slides/skills/frontend-slides",
|
||||
"brandColor": "#2563EB",
|
||||
"manifestOverrides": {
|
||||
"version": "0.1.0",
|
||||
"description": "用于创建零依赖、动画丰富、固定 16:9 舞台的 HTML 演示文稿,并支持从 PPT/PPTX 转换为网页 slides。",
|
||||
"author": {
|
||||
"name": "zarazhangrui",
|
||||
"url": "https://github.com/zarazhangrui"
|
||||
},
|
||||
"homepage": "https://github.com/zarazhangrui/frontend-slides",
|
||||
"repository": "https://github.com/zarazhangrui/frontend-slides",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"frontend-slides",
|
||||
"presentation",
|
||||
"slides",
|
||||
"html",
|
||||
"pptx"
|
||||
],
|
||||
"interface": {
|
||||
"displayName": "Frontend Slides",
|
||||
"shortDescription": "创建动画丰富、固定 16:9 舞台的 HTML 演示文稿。",
|
||||
"longDescription": "Frontend Slides 用于从零创建零依赖 HTML slides,或将 PowerPoint 文件转换为网页演示文稿。它强调固定 1920×1080 舞台、鲜明视觉风格、动画表现和模板化审美探索,适合演讲、路演、分享和网页化展示。",
|
||||
"developerName": "zarazhangrui",
|
||||
"category": "文档处理",
|
||||
"defaultPrompt": [
|
||||
"使用 Frontend Slides 帮我制作一份网页演示文稿。",
|
||||
"使用 Frontend Slides 帮我把 PPT/PPTX 转成 HTML slides。"
|
||||
],
|
||||
"websiteURL": "https://github.com/zarazhangrui/frontend-slides",
|
||||
"privacyPolicyURL": "https://github.com/zarazhangrui/frontend-slides",
|
||||
"termsOfServiceURL": "https://github.com/zarazhangrui/frontend-slides",
|
||||
"brandColor": "#2563EB"
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"frontend-slides": "用于创建零依赖、动画丰富、固定 16:9 舞台的 HTML 演示文稿,并支持从 PPT/PPTX 转换为网页 slides。"
|
||||
},
|
||||
"includeRootFiles": [
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "guizang-ppt-skill",
|
||||
"repo": "https://github.com/op7418/guizang-ppt-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "guizang-ppt-skill",
|
||||
"category": "文档处理",
|
||||
"skillPath": ".",
|
||||
"brandColor": "#F97316",
|
||||
"manifestOverrides": {
|
||||
"version": "0.1.0",
|
||||
"description": "用于生成横向翻页的单文件 HTML 网页 PPT,提供电子杂志风和瑞士国际主义两类高质感视觉模板。",
|
||||
"author": {
|
||||
"name": "歸藏",
|
||||
"url": "https://github.com/op7418"
|
||||
},
|
||||
"homepage": "https://github.com/op7418/guizang-ppt-skill",
|
||||
"repository": "https://github.com/op7418/guizang-ppt-skill",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"ppt",
|
||||
"slides",
|
||||
"html",
|
||||
"web-ppt",
|
||||
"swiss-style"
|
||||
],
|
||||
"interface": {
|
||||
"displayName": "Guizang PPT Skill",
|
||||
"shortDescription": "生成杂志风或瑞士风的横向翻页网页 PPT。",
|
||||
"longDescription": "Guizang PPT Skill 用于生成单文件 HTML 横向翻页演示文稿,内置电子杂志风和瑞士国际主义两套视觉路线,适合分享、发布会、Demo Day、行业观察和需要强视觉风格的网页 PPT。",
|
||||
"developerName": "歸藏",
|
||||
"category": "文档处理",
|
||||
"defaultPrompt": [
|
||||
"使用 Guizang PPT Skill 帮我制作一份网页 PPT。",
|
||||
"使用 Guizang PPT Skill 帮我做一份瑞士风演示文稿。"
|
||||
],
|
||||
"websiteURL": "https://github.com/op7418/guizang-ppt-skill",
|
||||
"privacyPolicyURL": "https://github.com/op7418/guizang-ppt-skill",
|
||||
"termsOfServiceURL": "https://github.com/op7418/guizang-ppt-skill",
|
||||
"brandColor": "#F97316"
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"guizang-ppt-skill": "用于生成横向翻页的单文件 HTML 网页 PPT,提供电子杂志风和瑞士国际主义两类高质感视觉模板。"
|
||||
},
|
||||
"includeRootFiles": [
|
||||
"README.md",
|
||||
"README.en.md",
|
||||
"LICENSE"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "html-ppt",
|
||||
"repo": "https://github.com/lewislulu/html-ppt-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "html-ppt",
|
||||
"category": "文档处理",
|
||||
"skillPath": ".",
|
||||
"brandColor": "#0F766E",
|
||||
"manifestOverrides": {
|
||||
"version": "0.1.0",
|
||||
"description": "HTML PPT Studio,用模板、主题、布局和动画创作专业静态 HTML 演示文稿、小红书图文和多页分享稿。",
|
||||
"author": {
|
||||
"name": "lewislulu",
|
||||
"url": "https://github.com/lewislulu"
|
||||
},
|
||||
"homepage": "https://github.com/lewislulu/html-ppt-skill",
|
||||
"repository": "https://github.com/lewislulu/html-ppt-skill",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"html-ppt",
|
||||
"presentation",
|
||||
"slides",
|
||||
"templates",
|
||||
"animations"
|
||||
],
|
||||
"interface": {
|
||||
"displayName": "HTML PPT Studio",
|
||||
"shortDescription": "用主题、布局和动画模板创作专业 HTML 演示文稿。",
|
||||
"longDescription": "HTML PPT Studio 提供多套主题、完整 deck 模板、单页布局、CSS/Canvas 动画、演讲者模式和导出脚本,用于生成演示文稿、技术分享、路演稿、小红书图文和静态 HTML slides。",
|
||||
"developerName": "lewislulu",
|
||||
"category": "文档处理",
|
||||
"defaultPrompt": [
|
||||
"使用 HTML PPT Studio 帮我制作一份演示文稿。",
|
||||
"使用 HTML PPT Studio 帮我生成带演讲者备注的 HTML slides。"
|
||||
],
|
||||
"websiteURL": "https://github.com/lewislulu/html-ppt-skill",
|
||||
"privacyPolicyURL": "https://github.com/lewislulu/html-ppt-skill",
|
||||
"termsOfServiceURL": "https://github.com/lewislulu/html-ppt-skill",
|
||||
"brandColor": "#0F766E"
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"html-ppt": "用主题、布局、动画和演讲者模式模板创作专业静态 HTML 演示文稿、小红书图文和多页分享稿。"
|
||||
},
|
||||
"includeRootFiles": [
|
||||
"README.md",
|
||||
"README.zh-CN.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"excludePaths": [
|
||||
"docs/readme",
|
||||
"scripts/verify-output"
|
||||
],
|
||||
"readmeImageExcludes": [
|
||||
"docs/readme"
|
||||
],
|
||||
"readmeLineExcludes": [
|
||||
"Every preview above",
|
||||
"上图里的每一个预览",
|
||||
"scripts/verify-output/",
|
||||
"verify-output/"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "ppt-master",
|
||||
"repo": "https://github.com/hugohe3/ppt-master.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"pluginName": "ppt-master",
|
||||
"category": "文档处理",
|
||||
"skillPath": "skills/ppt-master",
|
||||
"sparseCheckout": [
|
||||
"skills/ppt-master",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"brandColor": "#4F46E5",
|
||||
"manifestOverrides": {
|
||||
"version": "0.1.0",
|
||||
"description": "PPT Master 是多格式源文档到高质量 SVG 页面再导出 PPTX 的多阶段演示文稿生成工作流。",
|
||||
"author": {
|
||||
"name": "hugohe3",
|
||||
"url": "https://github.com/hugohe3"
|
||||
},
|
||||
"homepage": "https://github.com/hugohe3/ppt-master",
|
||||
"repository": "https://github.com/hugohe3/ppt-master",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"ppt-master",
|
||||
"pptx",
|
||||
"svg",
|
||||
"presentation",
|
||||
"deck"
|
||||
],
|
||||
"interface": {
|
||||
"displayName": "PPT Master",
|
||||
"shortDescription": "从文档生成 SVG 页面并导出 PPTX 的多阶段工作流。",
|
||||
"longDescription": "PPT Master 将 PDF、DOCX、URL、Markdown 等源材料转换为高质量 SVG 页面,并通过策略、模板、执行、质量检查和后处理流程导出 PPTX,适合需要结构化长流程和高质量页面控制的演示文稿制作。",
|
||||
"developerName": "hugohe3",
|
||||
"category": "文档处理",
|
||||
"defaultPrompt": [
|
||||
"使用 PPT Master 帮我基于资料生成一份 PPT。",
|
||||
"使用 PPT Master 帮我把源文档转换成高质量演示文稿。"
|
||||
],
|
||||
"websiteURL": "https://github.com/hugohe3/ppt-master",
|
||||
"privacyPolicyURL": "https://github.com/hugohe3/ppt-master",
|
||||
"termsOfServiceURL": "https://github.com/hugohe3/ppt-master",
|
||||
"brandColor": "#4F46E5"
|
||||
}
|
||||
},
|
||||
"skillDescriptions": {
|
||||
"ppt-master": "多格式源文档到高质量 SVG 页面再导出 PPTX 的多阶段演示文稿生成工作流。"
|
||||
},
|
||||
"includeRootFiles": [
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"webpCompressPaths": [
|
||||
{
|
||||
"path": "references/ai-image-comparison",
|
||||
"quality": 90
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"sources": [
|
||||
{
|
||||
"id": "superpowers",
|
||||
"pluginName": "superpowers",
|
||||
"repo": "https://github.com/obra/superpowers.git",
|
||||
"ref": "main",
|
||||
"adapter": "codex-plugin",
|
||||
"commit": "6fd4507659784c351abbd2bc264c7162cfd386dc",
|
||||
"syncedAt": "2026-06-10T07:28:13Z"
|
||||
},
|
||||
{
|
||||
"id": "oh-my-codex",
|
||||
"pluginName": "oh-my-codex",
|
||||
"repo": "https://github.com/Yeachan-Heo/oh-my-codex.git",
|
||||
"ref": "main",
|
||||
"adapter": "codex-plugin",
|
||||
"commit": "0332e47d2a961f738cf4c52e86cd517eaae4197b",
|
||||
"syncedAt": "2026-06-11T08:39:42Z"
|
||||
},
|
||||
{
|
||||
"id": "ui-ux-pro-max",
|
||||
"pluginName": "ui-ux-pro-max",
|
||||
"repo": "https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "b7e3af80f6e331f6fb456667b82b12cade7c9d35",
|
||||
"syncedAt": "2026-06-10T07:28:13Z"
|
||||
},
|
||||
{
|
||||
"id": "shadcn",
|
||||
"pluginName": "shadcn",
|
||||
"repo": "https://github.com/shadcn-ui/ui.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "a5eb2796503133a59b6f827da4dc7a4d67d28269",
|
||||
"syncedAt": "2026-06-11T16:00:00Z"
|
||||
},
|
||||
{
|
||||
"id": "frontend-slides",
|
||||
"pluginName": "frontend-slides",
|
||||
"repo": "https://github.com/zarazhangrui/frontend-slides.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "871ce4daa13599d6195fe0bb465eb0ed80b2fa44",
|
||||
"syncedAt": "2026-06-11T03:57:53Z"
|
||||
},
|
||||
{
|
||||
"id": "guizang-ppt-skill",
|
||||
"pluginName": "guizang-ppt-skill",
|
||||
"repo": "https://github.com/op7418/guizang-ppt-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "82fe5ae129e8c2a12e1155fcabed6703342749d6",
|
||||
"syncedAt": "2026-06-11T03:57:53Z"
|
||||
},
|
||||
{
|
||||
"id": "html-ppt",
|
||||
"pluginName": "html-ppt",
|
||||
"repo": "https://github.com/lewislulu/html-ppt-skill.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "f3a8435d3901697d5ac5e64d356c933637e43107",
|
||||
"syncedAt": "2026-06-11T03:57:53Z"
|
||||
},
|
||||
{
|
||||
"id": "ppt-master",
|
||||
"pluginName": "ppt-master",
|
||||
"repo": "https://github.com/hugohe3/ppt-master.git",
|
||||
"ref": "main",
|
||||
"adapter": "claude-skill",
|
||||
"commit": "2b337bec18c2cb1381fee2dfca2e6f6fed463ce6",
|
||||
"syncedAt": "2026-06-11T03:57:53Z"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user