Skip to main content

AI coding safety system for vibecoders

Project description

VibeLign Banner

๐Ÿ‡ฐ๐Ÿ‡ท ํ•œ๊ตญ์–ด ย |ย  ๐Ÿ‡บ๐Ÿ‡ธ English

PyPI GitHub Release Python MIT AI Tools


๐ŸŽฎ VibeLign โ€” Safety Guard for AI Coding

VibeLign (vibelign) is an AI coding safety CLI + Desktop GUI for vibe coding workflows. It helps developers and non-developers protect project structure, save checkpoints, undo bad AI edits, manage anchors, and block secret leaks before commit.

๐Ÿ†• v2.2: GUI โ†” Rust core direct bridge (in-process, Python subprocess ์—†์ด ~80ms โ†’ <5ms), ํ†ตํ•ฉ ์—๋Ÿฌ ๋กœ๊ทธ ๋ทฐ + GitHub ์ด์Šˆ ์ž๋™ ๋ณด๊ณ , ์ž๋™ ๋ฐฑ์—… ์‹คํŒจ ๊ฐ€์‹œํ™”. See CHANGELOG. v1 โ†’ v2 ์‚ฌ์šฉ์ž: migration notes.

Documentation: https://yesonsys03-web.github.io/VibeLign/
Repository: https://github.com/yesonsys03-web/VibeLign
Issues: https://github.com/yesonsys03-web/VibeLign/issues
Releases: https://github.com/yesonsys03-web/VibeLign/releases

Sound familiar?

  • You asked AI to add a small feature โ€” it rewrote the entire file
  • All code ended up in main.py โ€” 1000+ lines, impossible to manage
  • AI touched other files and now nothing works
  • You want to undo but don't know how

That's why we made this!

Desktop App (macOS / Windows) โ€” ๐Ÿ“ฅ Download latest release

Mac / Linux (CLI)

pip install vibelign
vib start

Windows (PowerShell, CLI)

# Step 1: install uv โ€” one-time setup, auto-configures PATH
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Close and reopen PowerShell, then:
uv tool install vibelign
vib start

Quick Start


๐Ÿค” What is VibeLign?

AI coding tools (Claude Code, Cursor, etc.) write code fast. But they have problems:

Problem VibeLign Fixes It
All code goes into main.py AI organizes code properly
AI does something different from what you asked Creates precise edit requests
Code breaks and you can't go back Save & Undo feature

Works with any AI tool: Claude Code ยท Cursor ยท Codex ยท OpenCode


๐Ÿ“ Just 3 Things to Remember

Before AI edits  โ†’  vib checkpoint "before work"    # save
AI broke it      โ†’  vib undo                         # undo
Looks good       โ†’  vib checkpoint "done"             # save again

No Git knowledge needed. Just type vib.


๐Ÿš€ Start in 3 Steps

Mac / Linux

# 1. Install
pip install vibelign

# 2. Go to your project folder
cd my-project

# 3. Start!
vib start

Windows (PowerShell)

# 1. Install uv โ€” one-time setup (auto-configures PATH, no warnings)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

# Close and reopen PowerShell, then:

# 2. Install vibelign
uv tool install vibelign

# 3. Go to your project folder and start!
cd my-project
vib start

๐Ÿ“š All Commands

Basics (Must Know)

Command What It Does
vib start First time only! Set up project
vib checkpoint "message" Save current state (like game save)
vib checkpoint Will ask for a message
vib undo Go back to last save
vib history See all saves
vib backup-db-viewer --json Inspect the Rust backup DB in read-only mode
vib backup-db-maintenance --json Dry-run backup DB file cleanup planning
vib backup-db-maintenance --apply --json Back up DB files, truncate WAL, and conditionally compact the DB

When Asking AI to Code

Command What It Does
vib patch "add button" Tell AI exactly how to edit (Korean OK!)
vib anchor Mark safe areas for AI to edit
vib scan Clean up files + check status

VibeLign patch rules

  • Split composite requests into intent / source / destination / behavior_constraint.
  • If delete and move appear together, treat it as move + preservation unless the user clearly wants removal.
  • Resolve source and destination by role, not with the same rule.
  • If patch contract or codespeak shape changes, update tests and docs together.
  • Keep terminology aligned with the shared glossary and project docs.

Checking & Verification

Command What It Does
vib doctor Check project health
vib explain Explain changes in plain language
vib guard Check if code is broken
vib ask filename.py Ask AI to explain a file

File Protection

Command What It Does
vib protect filename.py Lock important files (AI can't touch)
vib protect --list See locked files
vib protect --remove filename.py Unlock file
vib secrets --staged Block staged API keys, tokens, and .env files before commit

Settings & Export

Command What It Does
vib config Set API keys
vib export claude Create Claude Code settings
vib export cursor Create Cursor settings
vib export opencode Create OpenCode settings

Other Useful Commands

Command What It Does
vib watch Monitor file changes in real-time
vib bench Test how effective anchors are
vib manual Show detailed user guide
vib rules Show all AI development rules
vib transfer Generate PROJECT_CONTEXT.md for switching AI tools
vib transfer --handoff Add Session Handoff block so a new AI can continue immediately
vib transfer --handoff --session-summary "work" --first-next-action "next" Override the handoff summary and first next action
vib transfer --handoff --dry-run Preview handoff output without writing the file
vib completion Set up tab autocomplete
vib install Show step-by-step installation guide

๐Ÿ’ก Recommended Workflow

# First time
vib start

# Before AI edits
vib checkpoint "before login feature"
vib doctor --strict
vib patch "create login button"

# After AI edits
vib explain --write-report
vib guard --strict --write-report

# If done
vib checkpoint "login feature done!"

# If something broke
vib undo

# Hitting a token limit or switching AI tools?
vib transfer --handoff    # generates a Session Handoff block
vib transfer --handoff --no-prompt --print  # automatic handoff + console summary
vib transfer --handoff --session-summary "current session work" --first-next-action "rerun tests"
vib transfer --handoff --dry-run  # preview before writing
# Then tell the new AI: "Read PROJECT_CONTEXT.md first"

transfer compatibility: --handoff cannot be combined with --compact or --full.

vib start now also enables Git secret protection automatically when your project uses Git. Before each commit, VibeLign checks staged changes for API keys, tokens, private keys, and secret-like files such as .env.

# Check manually anytime
vib secrets --staged

๐Ÿ”ง Installation

Option 1: uv (Recommended, faster)

uv tool install vibelign

If you see "is not on your PATH" warning after install:

uv tool update-shell

Then close and reopen your terminal. vib will work after that. If you use bash, run uv tool update-shell from inside bash, or:

echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc

Option 2: pip

pip install vibelign

After installation, both vib and vibelign commands are available.

Option 3: Desktop App (GUI)

Download the latest .dmg (macOS, Apple Silicon) or .exe / .msi (Windows) from the Releases page. The GUI bundles the vib runtime โ€” no separate CLI install required.

macOS first-launch: if you see "app is damaged", open Terminal and run xattr -rc vibelign-gui.app (ad-hoc signed, not notarized).

Windows โ€” if vib is not recognized after pip install

When you install with pip on Windows, vib.exe is placed in the Python Scripts folder which may not be in PATH. The pip warning message shows the exact path you need to add:

WARNING: The scripts vib.exe ... are installed in 'C:\Users\...\Scripts' which is not on PATH.

To fix manually:

  1. Press Win + R โ†’ type sysdm.cpl โ†’ Enter
  2. Advanced tab โ†’ Environment Variables
  3. Under System variables, find Path โ†’ click Edit
  4. Click New and paste the Scripts path shown in the pip warning
    • Example: C:\Users\YourName\AppData\Local\Programs\Python\Python312\Scripts\
  5. Click OK โ†’ fully close and reopen PowerShell

Tip: Use uv tool install vibelign to skip this entirely โ€” uv handles PATH automatically.


๐Ÿ“– Want to Learn More?

vib manual          # Detailed user guide
vib manual rules    # AI development rules only
vib rules           # Same as above

๐ŸŽฏ Our Promise

"AI coding is fast. But without safety guards, it can destroy what you built."

VibeLign promises:

  • โœ… Save in 1 second (vib checkpoint "description")
  • โœ… Undo in 1 second (vib undo)
  • โœ… No Git knowledge needed
  • โœ… Easy for beginners

โญ If VibeLign saved your code, a Star would mean a lot โ€” thank you!


๐Ÿ“‹ Release Notes

v2.2.18 โ€” Plan docs sync + GUI tsconfig test exclude:

  • ๐Ÿ“ Plan/spec docs reconciled with shipped code (2026-05-14) โ€” Five superpowers plan/spec docs (mcp-host-llm-pivot-plan, ๊ทœ์น™์ˆ˜์ •์•ˆ-3, ์›ํด๋ฆญ์„ค์น˜-๊ธฐํš์•ˆ_์ดˆ์•ˆ, ์ง€์‹์ €์žฅ๊ณ -๊ธฐํš์•ˆ, mcp-host-llm-pivot-eval-runbook) got "ํ˜„์žฌ ๊ตฌํ˜„ ๋Œ€์กฐ ๋ฉ”๋ชจ" headers so readers don't mistake aspirational designs for shipped features. Real implementation status (e.g. MCP primitives mainlined, vib knowledge not yet built, claude doctor excluded from v1 success criteria) now sits at the top of each doc.
  • ๐Ÿงน vibelign-gui/tsconfig.json excludes test files โ€” Vitest fixtures (src/**/__tests__/**, *.test.{ts,tsx}, src/test/**) were dragged into tsc && vite build and produced spurious type errors. Added an exclude list so production builds stay quiet without changing test behavior.

v2.2.17 โ€” PyPI publish unblocked (macos-13 โ†’ macos-latest):

  • โšก macOS wheel runner switched to Apple Silicon โ€” macos-13 (Intel x86_64) runner pool was queue-jammed for hours, blocking PyPI publish since v2.2.12. macos-latest (Apple Silicon arm64) runs in seconds. Trade-off: Intel Mac users now install via sdist (requires Rust toolchain locally), not PyPI binary wheel.

v2.2.16 โ€” Phase 9 CI greens up (MCP checkpoint handler tests):

  • ๐ŸŸข test_handle_checkpoint_create_* 2 failures fixed โ€” Rust-engine migration leftovers. handle_checkpoint_create now treats file_count == 0 the same as summary is None (both audited as "blocked"). The list-checkpoints test now uses router.list_checkpoints so it can see Rust engine's SQLite store. Phase 9 cross-platform CI back to green after staying red since v2.2.11.

v2.2.15 โ€” Post-commit hook v5: restore v3 branch order:

  • ๐Ÿ” Auto-backup fallback order reverted to v3 โ€” v4's "absolute-path first" structure broke auto-backup for some LLM commit tools (OpenCode + GPT-5.5 reproduced). v5 puts PATH branches back at the top (matching the v3 behavior that worked) and demotes absolute-path branches to the last fallback for the GUI-commit-tool-without-PATH case only. Marker bumped to v5; v1-v4 hooks auto-upgrade on next vib start.

v2.2.14 โ€” Runtime self-heal for RUST_ENGINE_INTEGRITY_FAILED:

  • ๐Ÿ›Ÿ Bundled engine integrity now self-heals on macOS โ€” v2.2.13 only fixed the CI codesign step, so locally-built GUI apps (npm run tauri build on Intel/ARM Mac) kept tripping the integrity check. The runtime check now refreshes the .sha256 manifest when codesign --verify --strict confirms the binary is properly signed. Tamper detection preserved on Windows/Linux (no codesign signal there).

v2.2.13 โ€” Auto-backup integrity hotfix (GUI + GUI commit tools):

  • ๐Ÿฉน RUST_ENGINE_INTEGRITY_FAILED on macOS GUI fixed โ€” codesign --deep was adding a signature blob to the bundled vibelign-engine binary AFTER the .sha256 manifest was generated, so every Rust engine call from the GUI (history, backups page) blew up with an integrity check failure. CI now refreshes the manifest right after signing.
  • ๐Ÿ”Œ Post-commit auto-backup no longer requires vib on PATH โ€” Sourcetree / VS Code / Tower commits inherit the launchd PATH and usually miss ~/.local/bin, so every command -v vib fallback was silently failing โ†’ no backup. The hook now captures absolute paths to vib / vibelign / python -m vibelign.cli.vib_cli at install time and tries them first. Marker bumped to v4; old v1-v3 hooks auto-upgrade on next vib start.
  • ๐Ÿง Linux builds dropped from CI โ€” wheel publish + Python smoke build moved off Ubuntu; targets are macOS + Windows only.

v2.2.12 โ€” Flexible pre-commit hook (guard advisory + skip env):

  • ๐ŸŸข vib guard --strict no longer blocks commits โ€” guard failures now print a one-line advisory to stderr and let the commit through; vib secrets --staged still blocks (secrets leakage is irreversible, drift is not). Guard issues are still caught by vib doctor and the next session.
  • ๐Ÿšช VIBELIGN_SKIP_HOOK=1 git commit ... โ€” one-shot bypass (clearer-intent alternative to --no-verify; vib itself doesn't run).
  • ๐Ÿ”’ VIBELIGN_STRICT_GUARD=1 โ€” opt-in to keep guard blocking, for strict-mode teams.
  • โ™ป๏ธ Auto-upgrade โ€” any prior secrets-pre-commit v1 / pre-commit-enforcement v1/v2 hook is replaced with the new v3 template on the next vib start. No manual cleanup.

v2.2.11 โ€” Patch card hidden from GUI (accuracy-driven deprecation):

  • ๐Ÿšซ GUI Patch card removed from default order โ€” vib patch's natural-distribution accuracy was measured at 0/7 across real user requests (keyword traps: --json โ†’ wrong Python doc command, --preview โ†’ unrelated backup-restore file). Users blindly following the output risked corrupting unrelated files. The card no longer appears in the Home grid for new or existing users. CLI vib patch itself is unchanged for now. Use Claude Code / Cursor with vibelign-mcp (auto-registered by vib start) for natural-language patching instead.

v2.2.10 โ€” MCP host-LLM pivot PoC + BACKUPS pagination + Explain card cleanup:

  • ๐Ÿง  New MCP tools โ€” anchor_read_content (read inside an anchor boundary, path-traversal blocked, _START/_END suffix auto-normalized) and project_map_get (full project category/file/anchor index in one call). Lets host LLMs (Claude Code / Cursor) map natural-language requests to the right file:anchor directly. Measured 6/6 = 100% on real user requests vs baseline vib patch 0/6.
  • ๐Ÿ“‹ BACKUPS file history + DB Viewer rows pagination โ€” โ† prev / X / Y page ยท Mโ€“N / TOTAL / next โ†’ footer in both lists. Earlier entries are reachable again once the list grows beyond a single page. Search reset to page 1, selected entry auto-jumps to its page.
  • ๐Ÿงน Explain card --write-report / --json options removed โ€” flags removed from the GUI Explain card (CLI still supports them; other commands unaffected).
  • ๐Ÿ“š Dogfooding evidence: vib patch "GUI Explain card์—์„œ --write-report --json ์ œ๊ฑฐ" lands on the wrong file (vib_docs_build_cmd.py, JSON keyword trap) while a host LLM with the new tools targets commandData.ts instantly โ€” see PR #5 description.

v2.2.9 โ€” Patch fix for the v2.2.8 scroll-to-top button:

  • ๐Ÿ”ง Scroll-to-top now detects the real scroll container โ€” v2.2.8 listened to window.scrollY, but the brutalism layout puts scrolling on .page-content (inner flex child), so the button never appeared on macOS or Windows. v2.2.9 adds a capture-phase document scroll listener and reads .page-content.scrollTop directly. Clicks also scroll the inner container instead of window.

v2.2.8 โ€” Two GUI UX fixes + scroll-to-top button:

  • ๐Ÿ”ง Recovery panel โ€” per-candidate AI explanation visible โ€” the LLM's candidate-specific reason field now renders below the rule-based safety details, so the three recommendations no longer share an identical "๊ทผ๊ฑฐ" line. Rule-based bullets were also softened (e.g. "์ปค๋ฐ‹ ์งํ›„ ์ €์žฅ" โ†’ "์ฝ”๋“œ ์ €์žฅ ์งํ›„ ๋งŒ๋“  ๋ฐฑ์—…").
  • ๐Ÿ”ง CANVAS / RAW HTML viewer โ€” content-aware iframe height โ€” both CanvasViewPane and RawHtmlCanvasPane switched from a heuristic-only fixed height to onLoad content measurement (sandbox keeps scripts/forms disabled, only allow-same-origin added). A minHeight: calc(100vh - 200px) ensures the iframe also fills the app viewport for short documents. No more internal scrollbars; long content scrolls with the page like the left sidebar.
  • โฌ†๏ธ Scroll-to-top floating button โ€” a bottom-right floating button (visible after scrolling past 300px) smooth-scrolls to top on click. Available on every page.

v2.2.7 โ€” Recovery recommendation latency cut by ~46%:

  • ๐Ÿš€ Faster Recovery panel โ€” first-call wall for "๋ณต๊ตฌ ํ›„๋ณด ์ถ”์ฒœ ๋ณด๊ธฐ" (Gemini AI recommendation) drops from ~25s to ~13.6s. The LLM prompt was bloated with full commit body text (49% of a 28 KB prompt); now only the subject line (200-char cap) is sent. Recommendation quality is preserved since the LLM uses metadata (source, created_at, evidence_score, commit_boundary), not the verbose commit body.
  • ๐Ÿ“ฆ score_path.rs dormant library โ€” meaningful_overlap Rust port + 5 parity tests + ipc variant land as a dormant library. The score_path-wide track was retracted (ยง9) after skip-rate measurements showed leaf-port batch ROI is ~0, but the artifact is preserved for future use and Python alias drift detection.
  • โœ… Measurement-driven lessons (stub-patch wall diff > cProfile cumtime, skip-rate trap, apples-to-apples harness) drove this release โ€” see docs/superpowers/plans/2026-05-13-*-plan.md ยง9 sections.

v2.2.6 โ€” GUI memorySummary acceleration + tokenizer Rust groundwork:

  • ๐Ÿš€ Phase 3 PoC consumer #13 โ€” SessionMemoryCard mount now uses in-process Rust (callEngineDirect({command:"memory_summary_read"})) instead of a Python sidecar call, removing ~80 ms of mount-time latency. Audit logging parity is fully preserved.
  • ๐Ÿ“ฆ tokenizer Rust leaf port โ€” vibelign-core/src/tokenizer.rs ports the 6 Korean tokenizer leaf functions from patch_suggester.py as a dormant library, backed by tests/fixtures/tokenizer_goldens/ (102 case ร— 6 function = 612 byte-equal parity records).
  • โšก _normalize_korean_token pre-sort โ€” moves the per-call sorted() to a module-level constant. Direct 1M-iter benchmark shows 27% speedup; recover preview wall is unchanged (caller-side set processing dominates).
  • โœ… Cross-platform pre-flight โ€” Windows GNU cross-compile passes for both vibelign-core and vibelign-gui/src-tauri.

v2.2.5 โ€” Desktop release lockfile fix:

  • ๐Ÿ“ฆ npm lockfile repair โ€” regenerated the GUI package lock so npm ci installs the real json5@2.2.3 dependency instead of a nonexistent json5-2.2.4.tgz tarball.
  • โœ… Release build retry โ€” v2.2.5 supersedes the failed v2.2.4 desktop GUI release attempt.

v2.2.4 โ€” Desktop release compatibility fix:

  • ๐Ÿ› ๏ธ Backup bridge compatibility โ€” restored the legacy backupCreate export so existing GUI screens continue to build after the domain-module bridge refactor.
  • โœ… Release build retry โ€” v2.2.4 supersedes the failed v2.2.3 desktop GUI release attempt while keeping the same bridge modularization work.

v2.2.3 โ€” GUI bridge modularization + cleaner dev logs:

  • ๐Ÿงฉ Modular GUI vib bridge โ€” split the large src/lib/vib.ts command bridge into focused domain modules while preserving the existing src/lib/vib import path.
  • ๐Ÿ›ก๏ธ Contract-preserving refactor โ€” kept Tauri command strings, payload shapes, Windows onboarding/env behavior, and backup cache singleton behavior stable.
  • ๐Ÿงน Cleaner Tauri dev output โ€” removed the Rust warnings shown during npm run tauri dev.

v2.2.2 โ€” DocsViewer HTML Canvas + Windows ์•ˆ์ •ํ™”:

  • ๐Ÿงญ Document Control Map Canvas โ€” ์›๋ฌธ ์ˆœ์„œ Outline, Flow, Decisions, Actions, Risks, Glossary ๋ฅผ ์‹œ๊ฐ์ ์œผ๋กœ ์žฌ๊ตฌ์„ฑํ•˜๊ณ  bullet ์ค‘์‹ฌ ์„น์…˜ preview ๋ˆ„๋ฝ์„ body_preview ๋กœ ๋ณด๊ฐ•.
  • ๐Ÿงพ Raw HTML artifact mode โ€” ์„ ํƒ ๋ฌธ์„œ๋ฅผ sandboxed iframe ์˜ ์ฝ๊ธฐ ์‰ฌ์šด article-style HTML ๋กœ ๋ Œ๋”๋ง.
  • ๐ŸชŸ Split tab UX โ€” ์ฐฝ ํญ๊ณผ ์ƒ๊ด€์—†์ด Split ํƒญ์„ ํ•ญ์ƒ ํ‘œ์‹œํ•˜๊ณ , ์ข์€ ์ฐฝ์—์„œ๋Š” ๋‚ด๋ถ€ ๋ ˆ์ด์•„์›ƒ๋งŒ 1์—ด๋กœ ๋ฐ˜์‘.
  • โœจ Active tab highlight โ€” Source/Easy/Canvas/Raw HTML/Split ์ค‘ ํ˜„์žฌ ํƒญ์„ ๊ฒ€์€ ๋ฐฐ๊ฒฝ + ์˜ค๋ Œ์ง€ ๊ทธ๋ฆผ์ž๋กœ ๊ฐ•์กฐ.
  • ๐Ÿ› ๏ธ Windows path fix โ€” C:\Repo vs c:\repo\... ๊ฐ™์€ ๋Œ€์†Œ๋ฌธ์ž ์ฐจ์ด์—๋„ ์ถ”๊ฐ€ ๋ฌธ์„œ ์†Œ์Šค ํด๋” ์„ ํƒ์ด ์ •์ƒ ๋™์ž‘.

v2.2.0 โ€” GUI direct bridge + ํ†ตํ•ฉ ์—๋Ÿฌ ๋กœ๊ทธ + ์ž๋™ ๋ฐฑ์—… ๊ฐ€์‹œ์„ฑ:

  • ๐ŸŒ‰ Tauri โ†” vibelign-core direct bridge โ€” GUI ๊ฐ€ Python vib subprocess ์—†์ด in-process Rust ์—”์ง„ ์ง์ ‘ ํ˜ธ์ถœ. 6๊ฐœ GUI consumer ์˜ trivial ๋ช…๋ น wall time ~80ms โ†’ <5ms.
  • ๐Ÿ› GUI ํ†ตํ•ฉ ์—๋Ÿฌ ๋กœ๊ทธ ๋ทฐ โ€” CLI/GUI ์—๋Ÿฌ๋ฅผ ํ•œ ํƒญ์— ํ†ตํ•ฉ, GitHub ์ด์Šˆ๋กœ ๋‹จ์ผ/๋‹ค์ค‘ ๋ณด๊ณ , ์ˆ˜์ • ์™„๋ฃŒ๋œ ์—๋Ÿฌ ์ฆ‰์‹œ ์ •๋ฆฌ ๋ฒ„ํŠผ.
  • ๐Ÿ›Ÿ ์ž๋™ ๋ฐฑ์—… ์‹คํŒจ ๊ฐ€์‹œํ™” โ€” post-commit hook ์ด ๋” ์ด์ƒ silent skip ์•ˆ ํ•จ, ํ†ตํ•ฉ ์—๋Ÿฌ ๋กœ๊ทธ์— ์ž๋™ ๊ธฐ๋ก + git terminal ์— stderr ๋…ธ์ถœ.
  • ๐Ÿ” Rust secret_scan parity โ€” VIBELIGN_SECRET_SCAN_RUST=1 ์˜ตํŠธ์ธ ์‹œ Rust ๊ตฌํ˜„ ์‚ฌ์šฉ (10๊ฐœ ๊ณจ๋“  fixture ๋กœ Python ๊ณผ 1:1 parity ๋ณด์žฅ).
  • ๐Ÿ› ๏ธ Multiple silent regression fixes โ€” vib memory show race, vib doctor | head BrokenPipeError, integrity manifest auto-regen, GUI listener cleanup, ํ™ˆ ์นด๋“œ ๊ทธ๋ฆฌ๋“œ 1fr 1fr ๋ถˆ๊ท ํ˜• ์ˆ˜์ •.

Rust/SQLite Checkpoint Engine (v2.1 series):

  • vib checkpoint, vib history, and vib undo use the Rust/SQLite checkpoint engine by default, with visible Python fallback if the bundled engine cannot run.
  • Existing JSON checkpoints in .vibelign/checkpoints/ are preserved on disk but are not automatically imported or merged into the new SQLite-backed history. Back up .vibelign/checkpoints/ before upgrading if you still need old snapshots.

v2.0.0 โ€” Desktop GUI + MCP/Patch Modularization + AI Opt-In:

  • ๐Ÿ–ฅ๏ธ VibeLign GUI (macOS / Windows) โ€” Tauri desktop app
    • Doctor page: one-click diagnosis + auto-apply
    • Anchor card: anchor insertion + intent/aliases regeneration (code-based / AI-based, --force overwrites prior AI results)
    • DocsViewer: per-document AI summarization
    • Settings: API key management, global AI opt-in toggle
  • ๐Ÿ”Œ MCP server refactored โ€” vibelign/mcp/ with dispatch/handlers/tool_specs split
  • ๐Ÿงฉ Patch module split โ€” vibelign/patch/ (builder ยท handoff ยท preview ยท targeting ยท โ€ฆ)
  • ๐Ÿค– AI opt-in โ€” consent UI removed, single global toggle in Settings; Anthropic / OpenAI / Gemini auto-selected
  • โšก onedir runtime โ€” PyInstaller onefile โ†’ onedir removes GUI cold-start (1โ€“3 s โ†’ instant)
  • ๐Ÿท๏ธ Anchor _source field โ€” anchor_meta.json now tracks code / ai / manual / ai_failed so AI/manual results are protected from code-based regeneration (use --force to override)
  • โš ๏ธ Breaking: vibelign.vib_cli โ†’ vibelign.cli.vib_cli; vibelign.mcp_server โ†’ vibelign.mcp.mcp_server
  • See CHANGELOG.md ยท MIGRATION_v1_to_v2.md

v1.6.0 โ€” MCP Server + AI Development Rules System:

  • vib mcp โ€” MCP (Model Context Protocol) server for Claude Desktop integration
  • vib start โ€” Auto-register VibeLign MCP for Claude Code and Cursor without overwriting existing Cursor MCP servers
  • vib rules โ€” View all AI development rules directly in CLI
  • vib manual rules โ€” Detailed rules manual
  • Anchor intent system โ€” Store intent information in anchors
  • Korean tokenizer โ€” Accurately interpret patch requests in Korean
  • AI_DEV_SYSTEM โ€” Added maintainability/function design rules (Section 6-1, 14)
  • vib scan bug fix โ€” Fixed missing set_intent attribute

v1.5.32 โ€” Checkpoint & Undo UX Overhaul + AI Config File Protection:

  • vib checkpoint โ€” Message prompt support
  • vib undo โ€” Number selection + cancel option [0]
  • vib history โ€” Second-precision timestamps
  • vib start โ€” Beginner onboarding + auto first checkpoint
  • vib export โ€” AGENTS.md, CLAUDE.md, OPENCODE.md, .cursorrules protection

v1.5.0 โ€” Multi-Tool AI Config Export:

  • vib export claude โ€” Generate CLAUDE.md for Claude Code
  • vib export cursor โ€” Generate .cursorrules for Cursor
  • vib export opencode โ€” Generate OPENCODE.md for OpenCode
  • vib export antigravity โ€” Generate AGENTS.md for Codex/agents
  • Added VibeLign markers to exported files (prevent overwriting)

v1.1.0 โ€” Core Features for Beginners:

  • vib init โ€” Initialize/reset VibeLign
  • vib start โ€” First-time user guide
  • vib checkpoint / vib undo โ€” Save & restore without Git
  • vib protect โ€” Lock important files
  • vib ask โ€” Generate AI explanation prompts
  • vib history โ€” View checkpoint history

License

MIT

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vibelign-2.2.18.tar.gz (3.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

vibelign-2.2.18-py3-none-win_amd64.whl (2.9 MB view details)

Uploaded Python 3Windows x86-64

vibelign-2.2.18-py3-none-macosx_10_9_universal2.whl (3.1 MB view details)

Uploaded Python 3macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file vibelign-2.2.18.tar.gz.

File metadata

  • Download URL: vibelign-2.2.18.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vibelign-2.2.18.tar.gz
Algorithm Hash digest
SHA256 47f62644b6cc43225d0563c889d2153cd30fd15e3743afa3a58a3c26234c5c16
MD5 6fc0e26bbac07a96ba45c2e41747ec98
BLAKE2b-256 e58fd6240e6ccf239c1db68412563500f7cac64f90bff6deff6075f147ba8e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vibelign-2.2.18.tar.gz:

Publisher: publish.yml on yesonsys03-web/VibeLign

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vibelign-2.2.18-py3-none-win_amd64.whl.

File metadata

  • Download URL: vibelign-2.2.18-py3-none-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vibelign-2.2.18-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a8781c27b409d2dec4a6b879a1e8dbb0330c94df04c9df6ce40b98eb357d9f9
MD5 8ff646eb7501952181dc92fc7fdc1014
BLAKE2b-256 4182b264b69fcfbb3b498636ac50e48934c3a7efad6161ab608b3248f8d3f511

See more details on using hashes here.

Provenance

The following attestation bundles were made for vibelign-2.2.18-py3-none-win_amd64.whl:

Publisher: publish.yml on yesonsys03-web/VibeLign

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vibelign-2.2.18-py3-none-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for vibelign-2.2.18-py3-none-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 035dad0115f444f75a9107a76a3cdb45f7a68235d429b139924d47e3e92d2655
MD5 0f8f63a60f7d6da2543cb6f61091abba
BLAKE2b-256 23dcfd967887cb192d138f03e0de0557ea2ff0c3b068ad76931135f9c20132d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vibelign-2.2.18-py3-none-macosx_10_9_universal2.whl:

Publisher: publish.yml on yesonsys03-web/VibeLign

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page