mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-05 08:05:56 +00:00
* feat(ci): add AI-powered release notes generation - Add GitHub Models integration for automated release notes - Support bilingual (EN) release notes with highlights extraction - Fallback to conventional commit grouping when LLM unavailable - Trigger on tag push or manual workflow dispatch - Zero configuration: uses GitHub Models (gpt-4o-mini) by default * chore: pin action versions and update gitignore - Pin checkout and setup-deno to commit hashes matching project convention - Add .playwright-mcp/ and .mcp.json to gitignore
88 lines
999 B
Text
88 lines
999 B
Text
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors / IDEs / local tooling
|
|
.claude/
|
|
.codex/
|
|
.idea/
|
|
.omc
|
|
.vscode/
|
|
.classpath
|
|
.project
|
|
.settings/
|
|
*.iml
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment / local config
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
.dev/
|
|
.memory/
|
|
*.local.json
|
|
|
|
# Java / Spring Boot
|
|
.gradle/
|
|
build/
|
|
out/
|
|
target/
|
|
*.class
|
|
*.ear
|
|
*.jar
|
|
*.war
|
|
|
|
# Keep wrapper binaries/config in VCS
|
|
!gradle/wrapper/gradle-wrapper.jar
|
|
!mvnw
|
|
!mvnw.cmd
|
|
|
|
# Frontend / Node.js
|
|
.cache/
|
|
.eslintcache
|
|
.parcel-cache/
|
|
.vite/
|
|
coverage/
|
|
dist/
|
|
node_modules/
|
|
*.tsbuildinfo
|
|
package-lock.json
|
|
|
|
# Playwright
|
|
**/.playwright/
|
|
**/playwright-report/
|
|
**/test-results/
|
|
.playwright-mcp/
|
|
|
|
# Python / temporary files
|
|
*.py[cod]
|
|
.tmp/
|
|
tmp/
|
|
__pycache__/
|
|
|
|
# Git worktrees
|
|
.worktrees/
|
|
|
|
# Superpowers (AI planning artifacts)
|
|
.superpowers/
|
|
docs/prds/
|
|
docs/requirements/
|
|
docs/review/
|
|
docs/superpowers/
|
|
|
|
# Local workspace metadata
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
|
|
# Local config file
|
|
.mcp.json
|