mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-19 00:01:21 +00:00
Remove scripts/notify-feishu.sh and scripts/release-cli.sh from git tracking as they are local utility files. Added to .gitignore to prevent future accidental commits. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
92 lines
1.1 KiB
Text
92 lines
1.1 KiB
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
|
|
|
|
# Local scripts (personal utilities)
|
|
scripts/notify-feishu.sh
|
|
scripts/release-cli.sh
|