bingo-light 2.1.0 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.en.md ADDED
@@ -0,0 +1,529 @@
1
+ <p align="center">
2
+ <br>
3
+ <img src="docs/logo.svg" alt="bingo-light logo" width="200">
4
+ <br><br>
5
+ <strong>Fork maintenance for humans and AI agents.<br>One command to sync. Zero dependencies.</strong>
6
+ <br><br>
7
+ <b>English</b> | <a href="README.md">简体中文</a>
8
+ <br><br>
9
+ <a href="https://github.com/DanOps-1/bingo-light/actions"><img src="https://github.com/DanOps-1/bingo-light/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
10
+ <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a>
11
+ <a href="https://github.com/DanOps-1/bingo-light/releases"><img src="https://img.shields.io/github/v/release/DanOps-1/bingo-light?label=Release&color=orange" alt="Release"></a>
12
+ <br>
13
+ <a href="#for-ai-agents"><img src="https://img.shields.io/badge/MCP_Server-35_tools-blueviolet.svg" alt="MCP: 35 tools"></a>
14
+ <a href="https://www.python.org/"><img src="https://img.shields.io/badge/Python-3.8+-3776ab.svg" alt="Python 3.8+"></a>
15
+ <img src="https://img.shields.io/badge/Dependencies-Zero-brightgreen.svg" alt="Zero deps">
16
+ <a href="https://github.com/DanOps-1/bingo-light/stargazers"><img src="https://img.shields.io/github/stars/DanOps-1/bingo-light?style=social" alt="Stars"></a>
17
+ <br><br>
18
+ </p>
19
+
20
+ ---
21
+
22
+ GitHub's "Sync fork" button breaks the moment you have customizations. `git rebase` is a 6-step ritual. And none of it works from an AI agent.
23
+
24
+ **bingo-light fixes all three.**
25
+
26
+ Your patches live as a clean, named stack on top of upstream. Syncing is `bingo-light sync`. Conflicts get remembered so you never solve the same one twice. And if something goes sideways, `bingo-light undo` puts everything back in one second.
27
+
28
+ Every command speaks JSON. The built-in MCP server gives AI agents 35 tools to manage your fork autonomously -- from init through conflict resolution. No human in the loop required.
29
+
30
+ ---
31
+
32
+ <p align="center">
33
+ <img src="docs/demo.svg" alt="bingo-light demo" width="850">
34
+ </p>
35
+
36
+ ---
37
+
38
+ ## Quick Start
39
+
40
+ ```bash
41
+ # Install (pick one)
42
+ pip install bingo-light # Python
43
+ npm install -g bingo-light # Node.js
44
+ brew install DanOps-1/tap/bingo-light # Homebrew
45
+
46
+ # Point at upstream
47
+ cd your-forked-project
48
+ bingo-light init https://github.com/original/project.git
49
+
50
+ # Sync whenever you want -- patches rebase on top automatically
51
+ bingo-light sync
52
+ ```
53
+
54
+ That's it. Three commands and your fork stays in sync forever.
55
+
56
+ ## Demo
57
+
58
+ ### Basic workflow: init, patch, sync
59
+
60
+ <p align="center">
61
+ <img src="docs/demo.svg" alt="bingo-light basic demo" width="850">
62
+ </p>
63
+
64
+ ### Conflict resolution: sync, analyze, resolve
65
+
66
+ <p align="center">
67
+ <img src="docs/demo-conflict.svg" alt="bingo-light conflict resolution demo" width="850">
68
+ </p>
69
+
70
+ > The AI calls `conflict-analyze --json`, reads the structured ours/theirs data, writes the merged file, and the rebase continues. No human needed.
71
+
72
+ ---
73
+
74
+ ## Key Features
75
+
76
+ ### For Humans
77
+
78
+ - :wrench: **Zero deps** -- just Python 3 + git. `pip install bingo-light` and go.
79
+ - :bookmark_tabs: **Named patch stack** -- each customization is one atomic, named commit. No more guessing which changes are yours.
80
+ - :zap: **One-command sync** -- `bingo-light sync` fetches upstream and rebases your patches on top. Done.
81
+ - :brain: **Conflict memory** -- git rerere auto-enabled. Resolve a conflict once, never resolve it again.
82
+ - :rewind: **Instant undo** -- `bingo-light undo` restores pre-sync state. No reflog spelunking.
83
+ - :crystal_ball: **Conflict prediction** -- `status` warns you about risky files before you sync.
84
+ - :test_tube: **Dry-run mode** -- `sync --dry-run` tests on a throwaway branch first.
85
+ - :stethoscope: **Built-in doctor** -- full diagnostic with test rebase to catch problems early.
86
+ - :package: **Export/Import patches** -- share as `.patch` files, quilt-compatible format.
87
+ - :robot: **Auto-sync CI** -- generates a GitHub Actions workflow with conflict alerting.
88
+ - :tv: **TUI dashboard** -- curses-based real-time monitoring via `contrib/tui.py`.
89
+ - :globe_with_meridians: **Multi-repo workspace** -- manage multiple forks from one place.
90
+ - :bell: **Notification hooks** -- Slack, Discord, webhooks on sync/conflict/test events.
91
+ - :label: **Patch metadata** -- tags, reasons, expiry dates, upstream PR tracking.
92
+ - :tab: **Shell completions** -- tab completion for bash, zsh, and fish.
93
+
94
+ ### For AI Agents
95
+
96
+ - :electric_plug: **MCP server (35 tools)** -- full fork management from init through conflict resolution.
97
+ - :bar_chart: **`--json` on everything** -- every command returns structured JSON. Parse, don't scrape.
98
+ - :mute: **`--yes` flag** -- fully non-interactive. No TTY required. No prompts. Ever.
99
+ - :gear: **Auto-detect non-TTY** -- pipes and subprocesses trigger non-interactive mode automatically.
100
+ - :memo: **`BINGO_DESCRIPTION` env var** -- set patch descriptions without stdin.
101
+ - :mag: **`conflict-analyze --json`** -- structured conflict data: file, ours, theirs, resolution hints.
102
+ - :white_check_mark: **`conflict-resolve`** -- write resolved content via MCP, auto-stage, continue rebase. Zero manual intervention.
103
+ - :package: **Dependency patching** -- `dep patch/apply/sync` for npm/pip packages. Patches survive `npm install`.
104
+ - :satellite: **Advisor agent** -- `contrib/agent.py` monitors drift, analyzes risk, auto-syncs when safe.
105
+
106
+ ---
107
+
108
+ ## Installation
109
+
110
+ Install with any package manager, then run `bingo-light setup` to interactively configure MCP for your AI tools (Claude Code, Cursor, Windsurf, VS Code/Copilot, Zed, Gemini CLI, etc.).
111
+
112
+ ### pip / pipx
113
+
114
+ ```bash
115
+ pip install bingo-light # or: pipx install bingo-light
116
+ bingo-light setup # interactive — pick which AI tools to configure
117
+ ```
118
+
119
+ ### npm / npx
120
+
121
+ ```bash
122
+ npm install -g bingo-light # global install
123
+ bingo-light setup
124
+
125
+ # Or use npx — no install needed:
126
+ npx bingo-light setup
127
+ ```
128
+
129
+ MCP clients can use npx directly:
130
+ ```json
131
+ {"command": "npx", "args": ["-y", "bingo-light-mcp"]}
132
+ ```
133
+
134
+ ### Homebrew
135
+
136
+ ```bash
137
+ brew install DanOps-1/tap/bingo-light
138
+ bingo-light setup
139
+ ```
140
+
141
+ ### Docker
142
+
143
+ ```bash
144
+ # CLI
145
+ docker run --rm -v "$PWD:/repo" -w /repo ghcr.io/danops-1/bingo-light status
146
+
147
+ # MCP server (stdio transport)
148
+ docker run --rm -i -v "$PWD:/repo" -w /repo ghcr.io/danops-1/bingo-light mcp-server.py
149
+ ```
150
+
151
+ ### Shell installer
152
+
153
+ ```bash
154
+ curl -fsSL https://raw.githubusercontent.com/DanOps-1/bingo-light/main/install.sh | sh
155
+
156
+ # Non-interactive (CI / Docker)
157
+ curl -fsSL .../install.sh | sh -s -- --yes
158
+ ```
159
+
160
+ ### From source
161
+
162
+ ```bash
163
+ git clone https://github.com/DanOps-1/bingo-light.git
164
+ cd bingo-light
165
+ make install && bingo-light setup
166
+ ```
167
+
168
+ **Requirements:** Python 3.8+, git 2.20+. Zero pip dependencies.
169
+
170
+ ---
171
+
172
+ ## How It Works
173
+
174
+ ```
175
+ upstream (github.com/original/project)
176
+ |
177
+ | git fetch
178
+ v
179
+ upstream-tracking ──────── exact mirror of upstream, never touched
180
+ |
181
+ | git rebase
182
+ v
183
+ bingo-patches ──────────── your customizations stacked here
184
+ |
185
+ +── [bl] custom-scheduler: O(1) task scheduling
186
+ +── [bl] perf-monitoring: eBPF tracing hooks
187
+ +── [bl] fix-logging: structured JSON logs
188
+ |
189
+ v
190
+ HEAD (your working fork)
191
+ ```
192
+
193
+ **Sync flow:** fetch upstream, fast-forward the tracking branch, rebase your patches on top. Your patches always sit cleanly on the latest upstream.
194
+
195
+ **Conflict memory:** `init` auto-enables git rerere. Resolve a conflict once and git remembers the resolution. Next sync applies it automatically. bingo-light detects auto-resolved conflicts and continues the rebase without stopping.
196
+
197
+ **AI conflict flow:** rebase hits a conflict, the AI calls `conflict-analyze` for structured data (ours/theirs/hints per file), writes the resolution via `conflict-resolve`, and rebase continues. No human in the loop.
198
+
199
+ ---
200
+
201
+ ## For AI Agents
202
+
203
+ bingo-light was designed from day one for AI agents. Every command speaks JSON. The MCP server exposes 35 tools covering the full lifecycle from `init` to `conflict-resolve`. Non-interactive mode is the default when stdin is not a TTY.
204
+
205
+ ### MCP setup -- Claude Code
206
+
207
+ Add to `.mcp.json` in your project root or `~/.claude/settings.json`:
208
+
209
+ ```json
210
+ {
211
+ "mcpServers": {
212
+ "bingo-light": {
213
+ "command": "python3",
214
+ "args": ["/path/to/bingo-light/mcp-server.py"]
215
+ }
216
+ }
217
+ }
218
+ ```
219
+
220
+ ### MCP setup -- Claude Desktop
221
+
222
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
223
+
224
+ ```json
225
+ {
226
+ "mcpServers": {
227
+ "bingo-light": {
228
+ "command": "python3",
229
+ "args": ["/path/to/bingo-light/mcp-server.py"]
230
+ }
231
+ }
232
+ }
233
+ ```
234
+
235
+ **Any MCP client** (VS Code Copilot, Cursor, custom agents): connect via stdio to `python3 mcp-server.py`.
236
+
237
+ ### 35 MCP Tools
238
+
239
+ | Tool | Purpose |
240
+ |------|---------|
241
+ | `bingo_init` | Initialize fork tracking |
242
+ | `bingo_status` | Fork health: drift, patches, conflict risk |
243
+ | `bingo_sync` | Fetch upstream + rebase patches |
244
+ | `bingo_undo` | Revert to pre-sync state |
245
+ | `bingo_patch_new` | Create a named patch |
246
+ | `bingo_patch_list` | List patch stack with stats |
247
+ | `bingo_patch_show` | Show patch diff |
248
+ | `bingo_patch_drop` | Remove a patch |
249
+ | `bingo_patch_export` | Export as `.patch` files |
250
+ | `bingo_patch_import` | Import `.patch` files |
251
+ | `bingo_patch_meta` | Get/set patch metadata |
252
+ | `bingo_patch_squash` | Merge two patches into one |
253
+ | `bingo_patch_reorder` | Reorder patches non-interactively |
254
+ | `bingo_doctor` | Full diagnostic with test rebase |
255
+ | `bingo_diff` | Combined diff vs upstream |
256
+ | `bingo_auto_sync` | Generate GitHub Actions workflow |
257
+ | `bingo_conflict_analyze` | Structured conflict data for AI resolution |
258
+ | `bingo_conflict_resolve` | Write resolution, stage, continue rebase |
259
+ | `bingo_config` | Get/set configuration |
260
+ | `bingo_history` | Sync history with hash mappings |
261
+ | `bingo_test` | Run configured test suite |
262
+ | `bingo_workspace_status` | Multi-repo workspace overview |
263
+ | `bingo_patch_edit` | Amend an existing patch |
264
+ | `bingo_workspace_init` | Initialize multi-repo workspace |
265
+ | `bingo_workspace_add` | Add a repo to workspace |
266
+ | `bingo_workspace_sync` | Sync all workspace repos |
267
+ | `bingo_workspace_list` | List workspace repos |
268
+
269
+ ### JSON examples
270
+
271
+ ```bash
272
+ # Fork status (AI-friendly)
273
+ bingo-light status --json
274
+ ```
275
+
276
+ ```json
277
+ {
278
+ "ok": true,
279
+ "upstream_url": "https://github.com/torvalds/linux.git",
280
+ "behind": 47,
281
+ "patch_count": 2,
282
+ "patches": [
283
+ {"name": "custom-scheduler", "hash": "a3f7c21", "subject": "O(1) task scheduling", "files": 3},
284
+ {"name": "perf-monitoring", "hash": "b8e2d4f", "subject": "eBPF tracing hooks", "files": 5}
285
+ ],
286
+ "conflict_risk": ["kernel/sched/core.c"]
287
+ }
288
+ ```
289
+
290
+ ```bash
291
+ # Conflict analysis (structured data for AI resolution)
292
+ bingo-light conflict-analyze --json
293
+ ```
294
+
295
+ ```json
296
+ {
297
+ "rebase_in_progress": true,
298
+ "current_patch": "custom-scheduler",
299
+ "conflicts": [
300
+ {
301
+ "file": "kernel/sched/core.c",
302
+ "conflict_count": 2,
303
+ "ours": "... upstream version ...",
304
+ "theirs": "... your patch version ...",
305
+ "hint": "Upstream refactored scheduler core; patch needs to target new structure."
306
+ }
307
+ ]
308
+ }
309
+ ```
310
+
311
+ ### End-to-end AI workflow
312
+
313
+ ```
314
+ User: "Sync my fork and fix any conflicts."
315
+
316
+ AI Agent:
317
+ 1. bingo_status(cwd) -> 47 behind, risk: core.c
318
+ 2. bingo_sync(cwd, dry_run=true) -> 1 conflict predicted
319
+ 3. bingo_sync(cwd) -> rebase stops at conflict
320
+ 4. bingo_conflict_analyze(cwd) -> structured ours/theirs/hints
321
+ 5. AI reads both versions, generates merge
322
+ 6. bingo_conflict_resolve(cwd, file, content) -> resolved, rebase continues
323
+ 7. bingo_status(cwd) -> 0 behind, all patches clean
324
+ ```
325
+
326
+ ### CLI integration (Aider, custom agents)
327
+
328
+ ```bash
329
+ bingo-light status --json # Parse fork state
330
+ bingo-light sync --yes # Non-interactive sync
331
+ bingo-light conflict-analyze --json # Structured conflict data
332
+ ```
333
+
334
+ ```python
335
+ import subprocess, json
336
+
337
+ def bingo(cmd, cwd="/path/to/repo"):
338
+ result = subprocess.run(
339
+ ["bingo-light"] + cmd.split() + ["--json", "--yes"],
340
+ cwd=cwd, capture_output=True, text=True
341
+ )
342
+ return json.loads(result.stdout)
343
+
344
+ status = bingo("status")
345
+ if status["behind"] > 0:
346
+ result = bingo("sync")
347
+ if result.get("conflicts"):
348
+ analysis = bingo("conflict-analyze")
349
+ # AI resolves each conflict...
350
+ ```
351
+
352
+ ---
353
+
354
+ ## Command Reference
355
+
356
+ ```
357
+ bingo-light init <upstream-url> [branch] Set up upstream tracking
358
+ bingo-light sync [--dry-run] [--force] Sync with upstream
359
+ bingo-light sync --test Sync + run tests, undo on failure
360
+ bingo-light undo Revert to pre-sync state
361
+ bingo-light status Fork health + conflict prediction
362
+ bingo-light diff Combined patch diff vs upstream
363
+ bingo-light doctor Full diagnostic
364
+ bingo-light log Sync history
365
+ bingo-light history Detailed sync history with hash mappings
366
+ bingo-light patch new <name> Create named patch from staged changes
367
+ bingo-light patch list [-v] List patch stack
368
+ bingo-light patch show <name|index> Show patch diff
369
+ bingo-light patch edit <name|index> Amend a patch (stage changes first)
370
+ bingo-light patch drop <name|index> Remove a patch
371
+ bingo-light patch reorder [--order "3,1,2"] Reorder patches
372
+ bingo-light patch export [dir] Export as .patch files
373
+ bingo-light patch import <file|dir> Import .patch files
374
+ bingo-light patch squash <idx1> <idx2> Merge two patches
375
+ bingo-light patch meta <name> [key] [value] Get/set patch metadata
376
+ bingo-light conflict-analyze Structured conflict data for AI
377
+ bingo-light config get|set|list [key] [val] Manage configuration
378
+ bingo-light test Run configured test suite
379
+ bingo-light dep patch <package> [name] Patch a modified npm/pip dependency
380
+ bingo-light dep apply [package] Re-apply dependency patches after install
381
+ bingo-light dep sync Re-apply after update + detect conflicts
382
+ bingo-light dep status Dependency patch health check
383
+ bingo-light dep list List all dependency patches
384
+ bingo-light dep drop <package> [patch] Remove a dependency patch
385
+ bingo-light workspace init|add|status|sync Multi-repo management
386
+ bingo-light auto-sync Generate GitHub Actions workflow
387
+ bingo-light version Print version
388
+ bingo-light help Show usage
389
+ ```
390
+
391
+ **Global flags:** `--json` (structured output) | `--yes` / `-y` (skip all prompts)
392
+
393
+ ---
394
+
395
+ ## Why not just...
396
+
397
+ <details>
398
+ <summary><b>...click GitHub's "Sync fork" button?</b></summary>
399
+ <br>
400
+
401
+ It only does fast-forward. The moment you have any customizations (commits on your fork that aren't in upstream), it either refuses or creates a merge commit that buries your changes. It has no concept of a patch stack, no conflict memory, and no API for AI agents.
402
+ </details>
403
+
404
+ <details>
405
+ <summary><b>...use <code>git rebase</code> manually?</b></summary>
406
+ <br>
407
+
408
+ You can. It takes 6 steps: fetch, checkout tracking branch, pull, checkout patches branch, rebase, push. You need to remember which branch is which, manually enable rerere, and hope you don't mess up the reflog if something goes wrong. bingo-light wraps all of this into `bingo-light sync` with automatic undo, conflict prediction, and structured output.
409
+ </details>
410
+
411
+ <details>
412
+ <summary><b>...use StGit / quilt / TopGit?</b></summary>
413
+ <br>
414
+
415
+ StGit (649 stars) manages patch stacks but has no AI integration, no MCP server, no JSON output, and no conflict prediction. quilt operates outside git entirely -- no rerere, no history. TopGit is effectively abandoned. None of them were designed for the AI-agent era.
416
+ </details>
417
+
418
+ ## Comparison
419
+
420
+ | | **bingo-light** | GitHub Sync | git rebase | quilt | StGit |
421
+ |---|:---:|:---:|:---:|:---:|:---:|
422
+ | Named patch stack | **Yes** | No | No | Yes | Yes |
423
+ | One-command sync | **Yes** | Click only | No (6 steps) | No | No |
424
+ | Handles customizations | **Yes** | **No** | Manual | Manual | Manual |
425
+ | Conflict memory (rerere) | **Auto** | No | Manual | No | No |
426
+ | Conflict prediction | **Yes** | No | No | No | No |
427
+ | AI / MCP integration | **35 tools** | No | No | No | No |
428
+ | JSON output | **All commands** | No | No | No | No |
429
+ | Non-interactive mode | **Native** | No | Partial | Partial | Partial |
430
+ | Undo sync | **One command** | No | git reflog | Manual | Manual |
431
+ | Install | One command | Built-in | Built-in | Package mgr | Package mgr |
432
+
433
+ ---
434
+
435
+ ## FAQ
436
+
437
+ <details>
438
+ <summary><b>Why not just <code>git rebase</code>?</b></summary>
439
+ <br>
440
+
441
+ You can. bingo-light automates everything around it: tracking the upstream remote, maintaining a dedicated patch branch, enabling rerere, predicting conflicts before you sync, and exposing structured output for automation. For a one-off rebase it's overkill. For ongoing fork maintenance with 3+ patches across months of upstream drift, it saves serious time and eliminates an entire class of mistakes.
442
+ </details>
443
+
444
+ <details>
445
+ <summary><b>Can I use this on an existing fork?</b></summary>
446
+ <br>
447
+
448
+ Yes. Run `bingo-light init <upstream-url>` in your fork. Convert your existing changes into named patches with `bingo-light patch new <name>`. The tool works with any standard git repository -- it doesn't care how you got here.
449
+ </details>
450
+
451
+ <details>
452
+ <summary><b>Is this only for AI agents?</b></summary>
453
+ <br>
454
+
455
+ No. The CLI is designed for humans first. `bingo-light sync` is the same command whether you run it or an AI does. The AI-native features (`--json`, `--yes`, MCP server) are purely additive -- without them you get normal, human-readable output with colors and progress indicators.
456
+ </details>
457
+
458
+ <details>
459
+ <summary><b>How does conflict memory work?</b></summary>
460
+ <br>
461
+
462
+ bingo-light enables git's `rerere` (reuse recorded resolution) on `init`. When you resolve a conflict, git records the resolution. Next time the exact same conflict appears during sync, it's applied automatically. bingo-light detects when rerere has auto-resolved all conflicts and continues the rebase without stopping. You solve each conflict exactly once.
463
+ </details>
464
+
465
+ <details>
466
+ <summary><b>What if sync goes wrong?</b></summary>
467
+ <br>
468
+
469
+ Run `bingo-light undo`. It restores your patches branch to exactly where it was before the sync. This works via git reflog, so it's reliable even after complex rebases. You can also use `sync --dry-run` to test on a throwaway branch first, or `sync --test` to auto-undo if your test suite fails after sync.
470
+ </details>
471
+
472
+ <details>
473
+ <summary><b>Does it work with GitHub / GitLab / Bitbucket?</b></summary>
474
+ <br>
475
+
476
+ Yes. bingo-light uses standard git operations (fetch, rebase, push). It works with any git remote on any platform. The `auto-sync` command generates a GitHub Actions workflow specifically, but the core tool is completely platform-agnostic.
477
+ </details>
478
+
479
+ <details>
480
+ <summary><b>How is this different from <code>git format-patch</code> / quilt?</b></summary>
481
+ <br>
482
+
483
+ `git format-patch` exports patches but doesn't manage them as a living stack. quilt manages patch stacks but operates outside git -- no conflict resolution, no rerere, no history. bingo-light keeps patches as real git commits so you get full git history, proper conflict resolution, and automatic rerere, while still supporting export/import in quilt-compatible `.patch` format. Best of both worlds.
484
+ </details>
485
+
486
+ ---
487
+
488
+ ## Project Ecosystem
489
+
490
+ ```
491
+ bingo-light CLI tool (Python 3, zero deps)
492
+ bingo_core/ Core library package (all business logic)
493
+ mcp-server.py MCP server (zero-dep Python 3, 35 tools, JSON-RPC 2.0)
494
+ contrib/agent.py Advisor agent (monitors drift, auto-syncs when safe)
495
+ contrib/tui.py Terminal dashboard (curses TUI, real-time monitoring)
496
+ install.sh Installer (--yes for CI, --help for options)
497
+ completions/ Shell completions (bash / zsh / fish)
498
+ contrib/hooks/ Notification hook examples (Slack / Discord / Webhook)
499
+ tests/test.sh Test suite (70 tests)
500
+ docs/ Documentation + demo SVG
501
+ docs/llms.txt Complete LLM-consumable reference
502
+ ```
503
+
504
+ ---
505
+
506
+ ## Documentation
507
+
508
+ - [Getting Started](docs/getting-started.md) -- 5-minute quickstart guide
509
+ - [Concepts](docs/concepts.md) -- branch model, patch stack, sync flow
510
+ - [Changelog](CHANGELOG.md) -- version history
511
+ - [Security](.github/SECURITY.md) -- security model and vulnerability reporting
512
+
513
+ ## Contributing
514
+
515
+ Pure Python, zero dependencies, no build step. If you can read Python, you can contribute.
516
+
517
+ ```bash
518
+ git clone https://github.com/DanOps-1/bingo-light.git
519
+ cd bingo-light
520
+ make test # core test suite
521
+ make test-all # all 250 tests (core + fuzz + edge + MCP + unit)
522
+ make lint # python syntax + flake8 + shellcheck
523
+ ```
524
+
525
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for details.
526
+
527
+ ## License
528
+
529
+ [MIT](LICENSE) -- do whatever you want.