返回 last30days-skill
.gitignore
根目录 / mcp / .gitignore
1 # Mirror of skills/last30days/scripts/, populated by scripts/sync-engine.sh.
2 # Source of truth lives in the Python skill; never commit the mirror.
3 # Lives inside internal/engine/ because //go:embed cannot reach outside
4 # its own package directory.
5 internal/engine/vendored/*
6 !internal/engine/vendored/.gitkeep
7
8 # Local build output: cross-compiled binaries and packaged .mcpb files.
9 build/
10 # Anchor to the mcp/ root so the cmd/last30days-pp-mcp/ package directory
11 # is not also excluded (subdirs with the same name would otherwise match).
12 /last30days-pp-mcp
13
13 lines Plain Text