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