1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
target/
.alef/
crates/
*.swp
*.swo
*~
.DS_Store
.idea/
.vscode/
.rumdl_cache/
*.iml
# Python
__pycache__/
*.pyc
*.pyo
# Additional generated artifacts
.remote-cache/
.alef/
.ai-rulez/.generated-manifest.json
.gemini/
GEMINI.md
# Stray `rust_out` artifacts the setup-rust-toolchain composite action
# occasionally leaves in the working tree during CI (rustc defaults to
# `rust_out` when compiled with no `-o` flag). cargo publish refuses to
# proceed against a "dirty" tree, so masking the artifact via .gitignore
# keeps `git status --porcelain` quiet without affecting the published
# crate (cargo's include/exclude rules determine what ships). Pairs with
# the `--allow-dirty` flag added to xberg-io/actions publish-crates.
rust_out
rust_out.*
# AI assistant generated files (broader patterns covering all generated content)
.github/agents/
.github/commands/
.github/copilot-instructions.md
.github/skills/
.agents/
.ruff_cache/
*.rlib
.basemind/
# polylint result cache (per-developer)
.polylint/
poly.local.toml
# BEGIN ai-rulez (DO NOT EDIT - managed by ai-rulez)
.claude/
.codex/
AGENTS.md
CLAUDE.md
# END ai-rulez