feat: 导出 SproutClaw .sproutclaw 配置

包含 extensions、skills、prompts、settings、auth、models、mcp 等配置。
排除 node_modules、npm 缓存、sessions 等运行时数据。
This commit is contained in:
2026-06-26 15:48:56 +08:00
commit 50edff80f5
13904 changed files with 411646 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
custom:
- https://paypal.me/hugohe3

View File

@@ -0,0 +1,91 @@
name: Bug Report
description: Report a problem with PPT Master
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting! Please check the [FAQ](https://github.com/hugohe3/ppt-master/blob/main/docs/faq.md) first — your issue may already have a known solution.
- type: dropdown
id: area
attributes:
label: Problem area
options:
- SVG generation / layout
- PPTX export (svg_to_pptx.py)
- Post-processing (finalize_svg.py / total_md_split.py)
- Source conversion (PDF / DOCX / PPTX / URL to Markdown)
- Template (create-template / template selection)
- Image generation
- Installation / dependencies
- Other
validations:
required: true
- type: textarea
id: description
attributes:
label: What happened?
placeholder: Describe the problem clearly. Include error messages if any.
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
placeholder: |
1. ...
2. ...
3. ...
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
placeholder: What did you expect to happen?
validations:
required: false
- type: input
id: ai-tool
attributes:
label: AI editor / tool
placeholder: "e.g. Claude Code, VS Code Copilot, Cursor, Codex"
validations:
required: true
- type: input
id: model
attributes:
label: AI model
placeholder: "e.g. Claude Opus, Claude Sonnet, GPT-5.4, Gemini 3.1"
validations:
required: false
- type: input
id: os
attributes:
label: OS
placeholder: "e.g. macOS 15, Windows 11, Ubuntu 24.04"
validations:
required: false
- type: input
id: python-version
attributes:
label: Python version
placeholder: "e.g. 3.12.4"
validations:
required: false
- type: textarea
id: screenshots
attributes:
label: Screenshots or files
description: Attach screenshots, SVG files, or the generated PPTX if relevant.
validations:
required: false

View File

@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: FAQ
url: https://github.com/hugohe3/ppt-master/blob/main/docs/faq.md
about: Check known solutions before opening an issue
- name: Discussions
url: https://github.com/hugohe3/ppt-master/discussions
about: Ask questions or share your work

View File

@@ -0,0 +1,43 @@
name: Feature Request
description: Suggest an improvement or new feature
labels: ["enhancement"]
body:
- type: textarea
id: problem
attributes:
label: What problem does this solve?
placeholder: Describe the pain point or use case that motivates this request.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed solution
placeholder: How do you think this could be implemented? (optional but helpful)
validations:
required: false
- type: dropdown
id: area
attributes:
label: Area
options:
- Templates / styles
- Charts / visualization
- Export / post-processing
- Source conversion
- Image generation
- Workflow / UX
- Documentation
- Other
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives considered
placeholder: Any workarounds you've tried or other approaches you've considered?
validations:
required: false

View File

@@ -0,0 +1,58 @@
# GitHub Pages 部署工作流
# 自动将 PPT Master 示例项目部署到 GitHub Pages
name: Deploy to GitHub Pages
on:
# 推送到 main 分支时,仅网页相关文件变更才触发
push:
branches: ["main"]
paths:
- 'index.html'
- 'viewer.html'
- 'examples/**'
- '.github/workflows/deploy-pages.yml'
# 允许手动触发(不受路径限制)
workflow_dispatch:
# 设置 GITHUB_TOKEN 权限
permissions:
contents: read
pages: write
id-token: write
# 防止并发部署
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# 构建任务
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
with:
enablement: true
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# 上传整个仓库(包含 examples、templates 等)
path: '.'
# 部署任务
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4