diff --git a/.gitignore b/.gitignore index c1919f775..71396f911 100644 --- a/.gitignore +++ b/.gitignore @@ -1,220 +1,4 @@ -# ── Git worktrees ────────────────────────────────────────────────────── -.worktrees/ - -# ── Zig build artifacts ─────────────────────────────────────────────── -zig-cache/ -.zig-cache/ -.zig/ -zig-out/ -exe/ -docs_html/ -# build/ contains source .zig files — only ignore non-Zig artifacts -build/* -!build/*.zig - -# ── Documentation build artifacts ───────────────────────────────────── -docs-src/build/ -docs/api-app/data/docs_engine.component.wasm -docs/api-app/data/features.json - -# ── Editor and IDE ──────────────────────────────────────────────────── -.vscode/ -.cursor/ -.idea/ -*.swp -*.swo -*~ -.DS_Store - -# ── Dependencies and package management ─────────────────────────────── -node_modules/ -.bun/ - -# ── Python artifacts ────────────────────────────────────────────────── -__pycache__/ -*.py[cod] -*.pyo -*.pyd -*.egg-info/ -.pytest_cache/ -.mypy_cache/ -.ruff_cache/ -.pytype/ -.venv/ -venv/ - -# ── Test and benchmark results ──────────────────────────────────────── -*.test -*.bench -coverage/ -# Benchmark output JSON files (root-level only) -/ai.json -/all.json -/conc.json -/crypto.json -/db.json -/mem.json -/net.json -/quick.json -/simd.json - -# ── Logs ────────────────────────────────────────────────────────────── -*.log -logs/ - -# ── Environment files ───────────────────────────────────────────────── -.env -.env.local -.env.*.local - -# ── Database files ──────────────────────────────────────────────────── -*.wdbx -*.wdbx.wal -*.wal -*.db -*.sqlite - -# ── Temporary and generated files ───────────────────────────────────── -tmp/ -temp/ -*.tmp -abi.json -probe_error.txt -probe_*.txt -probe_*.zig -test_build.zig -build_options.zig -src/build_options.zig -/abi_*_tmp*.zig -/tmp_*.zig -fix_*.py -migrate*.sh - -# ── Debug/test output files ─────────────────────────────────────────── -test_log.txt -test_output.txt -test_full.txt -web_error.txt -network_error.txt -build_errors.txt -build_full*.txt -wasm_build_log.txt -wasm_install_log.txt -training_data.txt - -# ── AI model files and training artifacts ───────────────────────────── -*.onnx -*.pt -*.pth -*.h5 -*.pb -*.ckpt -*.gguf -models/ -test-models/ -train.bin -testingllm.ckpt/ - -# ── GPU shader artifacts ───────────────────────────────────────────── -*.spv - -# ── Root-level build artifacts (one-off test binaries) ──────────────── -/test_page_size -/cast_test -/runner -/unused_test -/synthetic.bin - -# ── Binary executables and object files ─────────────────────────────── -*.a -*.o -*.exe -*.dll -*.so -*.dylib -*.pdb -*.pdb.* -*.core - -# ── Profiling data ──────────────────────────────────────────────────── -*.prof -*.profraw -*.tracy -perf.data* - -# ── Claude Code (track rules, skills, README, hooks — ignore the rest) -.claude/ -!.claude/ -!.claude/README.md -!.claude/rules/ -!.claude/rules/** -!.claude/skills/ -!.claude/skills/** -!.claude/agents/ -!.claude/agents/** -!.claude/settings.json -.claude-plugin/ - -# ── Local task tracking (agent notes) ──────────────────────────────── -tasks/ -!/tasks/ - -# ── ABI runtime state ──────────────────────────────────────────────── -.abi/ - -# ── Ralph runtime output and lock ───────────────────────────────────── -.ralph/ - -# ── Development checkpoints ─────────────────────────────────────────── -checkpoints/ - -# ── Generated reports (Ralph gate, skill memory) ───────────────────── -reports/ - -# ── Backup files ────────────────────────────────────────────────────── -backups/ -*.bak -*.backup - -# ── Distribution ────────────────────────────────────────────────────── -dist/ -release/ -*.tar.gz -*.zip - -# ── Rust build artifacts in bindings ────────────────────────────────── -bindings/**/target/ -bindings/c/.zig-cache/ - -# ── OS specific ─────────────────────────────────────────────────────── -Thumbs.db -desktop.ini -nul - -# ── Misc generated / workspace ──────────────────────────────────────── -.nx/installation -.nx/cache -.nx/workspace-data -tmpclaude-*-cwd -tmpclaude-* -/abi/ -/hello -examples/c_test -.discord -*.cell.out - -# ── Trash (cleanup staging) ───────────────────────────────────────── -TRASH/ -TRASH-FILES.md - -# ── Cleanup policy: markdown allowlist only ───────────────────────── -*.md -!/AGENTS.md -!/README.md -!/tasks/todo.md -!/tasks/lessons.md - -# ── Local one-off artifacts ────────────────────────────────────────── -.zig-global-cache/ -/hashmap_check -/hashmap_check2 +**/*.DS_Store +**/*.zig-cache +# Ignore build directories +*/build/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..14458c274 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,10 @@ +# Contributing + +Please write clear commit messages that briefly describe the changes. +For example: + +``` +Add Cell framework example using C++23 modules +``` + +Commit messages like "Applying previous commit" should be avoided. diff --git a/README.md b/README.md index c29d5911c..fbf5b071b 100644 --- a/README.md +++ b/README.md @@ -484,62 +484,6 @@ zig build benchmarks zig build lint ``` ---- - -## Environment Variables - -| Variable | Description | -|:---------|:------------| -| `ABI_OPENAI_API_KEY` | OpenAI API key | -| `ABI_ANTHROPIC_API_KEY` | Anthropic/Claude API key | -| `ABI_OLLAMA_HOST` | Ollama host (default: `http://127.0.0.1:11434`) | -| `ABI_OLLAMA_MODEL` | Default Ollama model | -| `ABI_HF_API_TOKEN` | HuggingFace API token | -| `DISCORD_BOT_TOKEN` | Discord bot token | - ---- - -## Project Status - -| Milestone | Status | -|:----------|:------:| -| Zig 0.16 Migration |  | -| Llama-CPP Parity |  | -| C Library Bindings |  | -| Plugin Registry |  | -| Runtime Consolidation |  | -| Feature Stubs |  | -| Multi-GPU Orchestration |  | -See [PLAN.md](PLAN.md) for current sprint status and [ROADMAP.md](ROADMAP.md) for version history. - ---- - -## Contributing - -We welcome contributions! Please see: - -- [CONTRIBUTING.md](CONTRIBUTING.md) - Development workflow -- [CLAUDE.md](CLAUDE.md) - Coding guidelines and patterns - -