返回 last30days-skill
.skillignore
根目录 / .skillignore
1 # Hermes install-time scanner/package exclusions for repository-root scans.
2 # Keep the public bundle focused on the runtime skill under skills/last30days/.
3
4 # VCS, local envs, caches, and generated outputs
5 .git/
6 .venv/
7 __pycache__/
8 *.pyc
9 *.log
10 *.jsonl
11 *.mp3
12 *.jpeg
13 *.jpg
14 *.png
15 *.gif
16 assets/
17 skills/last30days/assets/
18 .DS_Store
19 .coverage
20 htmlcov/
21 dist/
22 work/
23 print/
24
25 # Repo/dev automation and host-specific package metadata
26 .github/
27 .agents/
28 .claude-plugin/
29 hooks/
30 mcp/
31 gemini-extension.json
32 greptile.json
33 pyproject.toml
34
35 # Non-runtime docs, plans, release notes, fixtures, and tests
36 docs/
37 fixtures/
38 tests/
39 plans/
40 agents/
41 variants/
42 media/
43 README.md
44 CHANGELOG.md
45 AGENTS.md
46 CLAUDE.md
47 CONCEPTS.md
48 CONFIGURATION.md
49 CONTRIBUTORS.md
50 HERMES_SETUP.md
51 release-notes.md
52 SKILL-original.md
53 SPEC.md
54 TASKS.md
55
56 # Dev/eval scripts shipped inside the skill tree but not needed at runtime
57 skills/last30days/scripts/build-skill.sh
58 skills/last30days/scripts/compare.sh
59 skills/last30days/scripts/evaluate_search_quality.py
60 skills/last30days/scripts/setup-keychain.sh
61 skills/last30days/scripts/setup-pass.sh
62 skills/last30days/scripts/test_device_auth.py
63 skills/last30days/scripts/test-v1-vs-v2.sh
64 skills/last30days/scripts/verify_v3.py
65
66 # Keep visible: optional runtime watchlist/store/briefing feature scripts
67 # (`watchlist.py`, `store.py`, and `briefing.py`).
68
69 # Vendored third-party X-search client (node_modules analog); excluded from scan, still installed.
70 skills/last30days/scripts/lib/vendor/
71
71 lines Plain Text