mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- 添加 package.json 到项目根目录 - 配置 scoped package @dyw1234/claude-code-workflow - 添加 .npmignore 排除不必要文件 - 发布 v6.0.0 到 npm registry 安装方式: npm install -g @dyw1234/claude-code-workflow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
52 lines
606 B
Plaintext
52 lines
606 B
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# History and temp files
|
|
.history/
|
|
*.log
|
|
*.tmp
|
|
|
|
# Development files
|
|
.vscode/
|
|
.idea/
|
|
*.md
|
|
!README.md
|
|
!CLAUDE.md
|
|
|
|
# Workflow runtime data
|
|
.workflow/
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# Build artifacts
|
|
node_modules/
|
|
*.tgz
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation (keep only essential)
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
COMMAND_REFERENCE.md
|
|
COMMAND_SPEC.md
|
|
FAQ.md
|
|
GETTING_STARTED.md
|
|
GETTING_STARTED_CN.md
|
|
|
|
# PowerShell installer (not needed for npm)
|
|
Install-Claude.ps1
|
|
install-remote.ps1
|
|
|
|
# ccw internal files
|
|
ccw/package.json
|
|
ccw/node_modules/
|
|
ccw/*.md
|