Skip to content

Commit 06f2de5

Browse files
committed
v1.0.3
1 parent d572a59 commit 06f2de5

33 files changed

+453
-10063
lines changed

.dockerignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
8+
# Build output (will rebuild in container)
9+
build/
10+
dist/
11+
12+
# Test and coverage
13+
coverage/
14+
tests/
15+
**/*.test.ts
16+
**/*.test.js
17+
**/*.spec.ts
18+
**/*.spec.js
19+
jest.*.js
20+
jest.*.mjs
21+
jest.*.cjs
22+
23+
# Development files
24+
.git/
25+
.gitignore
26+
.claude/
27+
.mcp-cache/
28+
.planning/
29+
handoffs/
30+
31+
# IDE files
32+
.idea/
33+
.vscode/
34+
*.swp
35+
*.swo
36+
37+
# Environment (will be provided at runtime)
38+
.env
39+
.env.local
40+
.env.*.local
41+
.env.test
42+
43+
# Documentation (not needed in container)
44+
docs/
45+
examples/
46+
*.md
47+
!README.md
48+
49+
# Debug scripts
50+
debug-*.js
51+
scripts/demo-test-client.sh
52+
scripts/test-mcp*.sh
53+
scripts/test-mcp*.js
54+
scripts/README-test-client.md
55+
56+
# OS files
57+
.DS_Store
58+
Thumbs.db
59+
60+
# Temporary files
61+
tmp/
62+
.tmp/
63+
*.log

.gitignore

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
handoffs
2-
.clinerules*
3-
.roomodes*
41
# Dependencies
52
node_modules/
63
npm-debug.log*
74
yarn-debug.log*
85
yarn-error.log*
6+
pnpm-debug.log*
97

108
# Build output
119
build/
@@ -15,9 +13,9 @@ dist/
1513
# IDE and editor files
1614
.idea/
1715
.vscode/
16+
.claude/
1817
*.swp
1918
*.swo
20-
.DS_Store
2119

2220
# Environment variables
2321
.env
@@ -33,4 +31,15 @@ logs/
3331

3432
# Operating System
3533
.DS_Store
36-
Thumbs.db
34+
Thumbs.db
35+
36+
# Cache directories
37+
.mcp-cache/
38+
39+
# Internal development files
40+
handoffs/
41+
.clinerules*
42+
.roomodes*
43+
44+
# Debug scripts (development only)
45+
debug-*.js

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ handoffs/
2222
.github/
2323
.vscode/
2424
.idea/
25+
.planning/
26+
.claude/
2527

2628
# Other files
2729
*.log

ARCHITECTURE.md

Lines changed: 0 additions & 202 deletions
This file was deleted.

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)