• v1.31.0 2f3644a93b

    v1.31.0 — Skill Extraction to Orbit Marketplace
    All checks were successful
    CI / json-check (push) Successful in 3s
    CI / security (push) Successful in 4s
    Publish / detect-release (push) Successful in 3s
    CI / manifest (push) Successful in 7s
    CI / lua-check (push) Successful in 9s
    Publish / tag (push) Successful in 3s
    Publish / promote-release (push) Successful in 0s
    CI / sast (push) Successful in 14s
    Stable

    Gravity Bot released this 2026-03-21 16:07:48 +00:00 | 0 commits to master since this release

    What's Changed

    This release removes all Gravity PM workflow skills from the repository. Skills now live in the orbit marketplace as the gravity-skills plugin (shipped in orbit v0.4.0).

    The repo returns to its core identity: a kickstart.nvim fork with manifest-driven config management (Gravity sync engine).

    Removed

    • 158 skill files (2.5 MB) from configs/claude/skills/ — 22 workflow skills + domain library
    • 60 manifest entries for skill distribution via manifest.json
    • gravity-skills.tsv — skill index for the fuzzy help system
    • 50 documentation files from docs/ — skill architecture, PM workflow, research, and security docs
    • Separation of Concerns section from README (was about skill vs MCP distinction)

    Changed

    • README.md — updated to reflect config-management-only identity; added note pointing to orbit marketplace
    • manifest.json — stripped all skill entries; added removed skill paths to removed_configs for cleanup on sync
    • gravity.sh — removed _gravity_skills() function; alias and nvim command fuzzy help retained
    • .gitleaks.toml — removed skill-specific allowlist paths
    • ADR-003 — updated manifest example to show config entry instead of skill entry

    Kept

    • Gravity sync engine (lua/custom/gravity/)
    • All shell configs, Claude Code settings/hooks, editor config
    • ADRs 001-003, 005 (config distribution, sync, overrides, git identity)
    • All nvim plugins, terminal customizations, install instructions

    Tasks

    • OP#2697: Remove all skill directories from configs/claude/skills/
    • OP#2698: Update manifest.json, gravity.sh, and remove gravity-skills.tsv
    • OP#2751: Remove Gravity PM documentation from docs/
    • OP#2699: Update README for post-skill-extraction identity
    • OP#2700: Update CLAUDE.md and project memory for orbit transition
    • OP#2701: Verify orbit gravity-skills plugin replaces removed skills

    Install

    git clone ssh://git@git.bros.ninja:2222/mike/kickstart.nvim.git ~/.config/nvim
    

    For Gravity PM skills, install via orbit:

    orbit plugin setup
    
    Downloads
  • v1.30.0 4f6ea398ce

    v1.30.0 — Workflow Call/Return & Agent Delegation
    Some checks failed
    CI / json-check (push) Successful in 5s
    CI / manifest (push) Successful in 5s
    CI / security (push) Successful in 8s
    Publish / detect-release (push) Successful in 1m34s
    Publish / tag (push) Failing after 4s
    Publish / promote-release (push) Failing after 0s
    CI / lua-check (push) Successful in 2m41s
    CI / sast (push) Successful in 3m27s
    Stable

    Gravity Bot released this 2026-03-18 06:24:11 +00:00 | 7 commits to master since this release

    What's Changed

    Features

    • Three-mode goto system — Extended the goto schema with mode: goto|call|dispatch, enabling synchronous blocking calls, asynchronous non-blocking dispatch, and backward-compatible fire-and-forget routing
    • Synchronous call mode — Conductor blocks the calling phase, captures structured result envelopes, resumes with context injection, and branches on on_success/on_error outcomes
    • Async dispatch mode — Non-blocking agent invocation with heartbeat protocol, configurable timeout detection, error event firing, and completion notification
    • Specialist agent registry — New agents.yaml schema for registering external agents with model, purpose, invoke template, cost tier, and I/O schemas
    • Agent invocation framework — Conductor resolves agent:{name} targets, invokes via headless Claude backend, parses structured results, and wraps in standard envelopes
    • Loop guards and handoff envelopesmax_iterations and convergence_condition fields for iterative call/dispatch loops with structured handoff context between iterations
    • Result envelope writing — All four orchestration-aware skills write structured result envelopes when invoked under orchestration
    • Git branch cleanup script — Standalone git-cleanup bash utility with summary view, age-based pruning, interactive mode, and worktree stale detection

    Bug Fixes

    • Document invoke template escaping protocol to prevent shell injection
    • Fix ISO 8601 duration regex to accept valid durations
    • Align verdict vocabulary to approved/needs_changes
    • Align request_id examples to canonical format

    Documentation

    • ADR-002: Call/return and async delegation architecture
    • Wiki guide: Creating specialist agents
    • Wiki guide: Choosing between goto, call, and dispatch
    • Comprehensive test cases across all modes

    Install

    cd ~/.config/nvim && git pull
    
    Downloads
  • v1.29.0 74b3123102

    v1.29.0 — Modular Skill Architecture
    All checks were successful
    CI / manifest (push) Successful in 5s
    CI / security (push) Successful in 7s
    CI / json-check (push) Successful in 15s
    Publish / detect-release (push) Successful in 21s
    CI / lua-check (push) Successful in 23s
    Publish / tag (push) Successful in 5s
    Publish / promote-release (push) Successful in 1s
    CI / sast (push) Successful in 36s
    Stable

    Gravity Bot released this 2026-03-16 15:40:01 +00:00 | 62 commits to master since this release

    What's Changed

    Architecture & Research (OP#2199)

    • OP#2207: Research markdown-based agent routing and event-driven workflow patterns
    • OP#2208: Design phase manifest schema (gravity-phases.yaml)
    • OP#2209: Design skill metadata frontmatter standard and taxonomy
    • OP#2210: Create gravity-phases.yaml with current 5-phase lifecycle
    • OP#2211: Test manifest parsing and skill metadata validation

    Ingestion Adapter Layer (OP#2200)

    • OP#2212: Design ingestion skill interface contract
    • OP#2213: Create gt-ingest-claude ingestion adapter skill
    • OP#2214: Test ingestion skill loads phases, subphases, and domain dependencies

    Conductor Refactor (OP#2201)

    • OP#2215: Refactor gr-gravity conductor to manifest-driven routing
    • OP#2216: Update lifecycle.md with event-driven architecture documentation
    • OP#2217: Test conductor routes correctly from manifest

    Phase Migration (OP#2202)

    • OP#2218: Migrate gr-refinement to gr-refine with subphase structure
    • OP#2219: Migrate gr-preflight to gr-plan with subphase structure
    • OP#2220: Migrate gr-implementation to gr-work with subphase structure
    • OP#2221: Migrate gr-postflight to gr-verify with subphase structure
    • OP#2222: Restructure gr-release with subphases for finish and refresh
    • OP#2223: Register pr-review and pr-followup as optional phases in manifest
    • OP#2224: Test full lifecycle traversal through all renamed phases

    Transition Events (OP#2203)

    • OP#2225: Define structured transition event format
    • OP#2226: Define human-readable transition rendering template

    Documentation (OP#2204)

    • OP#2227: Wiki guide — Creating New Phases
    • OP#2228: ADR — Modular skill architecture and event-driven vision

    Workflow Goto (OP#2313)

    • OP#2314: Design goto schema for subphases and phases
    • OP#2315: Add goto field to gravity-phases.yaml schema
    • OP#2316: Implement conductor goto routing in gr-gravity
    • OP#2317: Update validation scripts for goto targets
    • OP#2318: Update documentation for goto flow control
    • OP#2319: Test goto routing end-to-end

    Gravity Sync Improvements

    • OP#2321: Fix phantom hunk count and buffer collapse in merge view
    • OP#2322: Unified sync picker replacing separate status and sync views
    • OP#2323: Update README and project docs for unified sync picker

    PR Review Followup

    • OP#2358: Replace deprecated nvim_buf_set_option/nvim_win_set_option in create_float_window
    • OP#2359: Extract shared diff action helper from _diffput/_diffget
    • OP#2360: Use list-form jobstart for headless agent launch
    • OP#2361: Fix misleading help text for k key on conflict files

    Infrastructure

    • OP#2205: Initialize version branch
    • OP#2281: Pre-release merge E2+E5
    • OP#2282: Pre-release merge E4+E6
    • OP#2320: Refactor Gravity skills to use bulk MCP tools

    Tasks

    48 work packages: 7 epics, 40 tasks, 1 summary task
    All tasks closed. 34 commits on release branch.

    Install

    git clone ssh://git@git.bros.ninja:2222/mike/kickstart.nvim.git ~/.config/nvim
    
    Downloads
  • v1.28.1 c83584fed9

    v1.28.1 — Gravity Sync Merge UI Fixes
    All checks were successful
    CI / json-check (push) Successful in 9s
    CI / manifest (push) Successful in 7s
    CI / security (push) Successful in 9s
    Publish / detect-release (push) Successful in 6s
    CI / lua-check (push) Successful in 12s
    CI / sast (push) Successful in 17s
    Publish / tag (push) Successful in 8s
    Publish / promote-release (push) Successful in 2s
    Stable

    Gravity Bot released this 2026-03-16 08:21:47 +00:00 | 97 commits to master since this release

    What's Changed

    Bug Fixes

    • Fix hunk acceptance persistence — Change detection now compares against hashes recorded at resolution time, preventing auto-sync from overwriting merge results on next VimEnter (OP#2249)
    • Fix trailing newline handling — Check both source and system files for trailing newlines in merge resolve, preventing hash mismatches after "Accept All Left" (OP#2249)
    • Normalize trailing newlines — Strip trailing newlines from both buffers on load to prevent phantom hunks that can't be resolved visually (OP#2249)

    Features

    • Clarify diff preview labels — Rename buffers to gravity://repo/ and gravity://local/, update picker descriptions to "repo changed" / "local changed", add legend to diff preview (OP#2250)
    • Accept-local-and-create-override action — New save menu option writes local content to configs.overrides/ to prevent recurring diffs for intentional local divergence (OP#2251)
    • Inline help — Press ? in merge view for a floating help window with all keybindings (OP#2252)
    • Hunk navigation with counter — JetBrains-style hunk counter in statusline, n/p keys to navigate, auto-jump to first hunk on open (OP#2278)
    • Per-hunk accept with < and >< accepts repo version (diffget), > keeps local version (diffput), both resolve the hunk and advance (OP#2279)
    • Save menu with local/repo/override options — Enter opens a menu: save locally, save + update repo file (with optional automated release agent), or save + create override (OP#2280)

    Tests

    • 6 new test cases covering merge persistence (partial merge, keep right, external changes) and override creation (OP#2256)
    • All 20 tests passing

    Tasks

    • OP#2249: Fix hunk acceptance persistence in merge view
    • OP#2250: Clarify diff preview labels: repo vs local
    • OP#2251: Add accept-local-and-create-override action in merge view
    • OP#2252: Add inline help to merge view
    • OP#2256: Test gravity sync merge UI fixes
    • OP#2278: Hunk navigation with counter and persistent status bar
    • OP#2279: Per-hunk accept with < and > directional keys
    • OP#2280: Save menu with local/repo/override options and automated release
    Downloads
  • v1.28.0 7e233469a5

    v1.28.0 — Mission Control MCP & Claude Forge Security Hooks
    All checks were successful
    CI / json-check (push) Successful in 7s
    CI / security (push) Successful in 8s
    CI / manifest (push) Successful in 7s
    Publish / detect-release (push) Successful in 7s
    CI / lua-check (push) Successful in 12s
    CI / sast (push) Successful in 17s
    Publish / tag (push) Successful in 6s
    Publish / promote-release (push) Successful in 0s
    Stable

    Gravity Bot released this 2026-03-16 05:42:34 +00:00 | 120 commits to master since this release

    What's Changed

    Security Hooks (Claude Forge Cherry-Pick)

    • output-secret-filter.sh — PostToolUse hook that detects API keys, bearer tokens, private keys, and credentials in tool output. Masks them before they enter conversation history.
    • security-auto-trigger.sh — PostToolUse hook on Edit|Write that detects modifications to security-sensitive files (auth, jwt, oauth, .env, migrations, crypto) and suggests review before committing.

    Architecture Decision

    • ADR-008: Claude Code Ecosystem Tools Evaluation — Evaluated Claude Forge, Mission Control (both projects), and Agent Deck. Decision: cherry-pick two security hooks from Forge, skip all other tools.

    Documentation

    • MCP Server Inventory — Catalogued all active MCP servers (gitea, openproject, cloud Gmail/Calendar), hooks, and shell aliases.

    Bug Fix

    • Removed unregistered /humanize trigger from gt-writing-quality SKILL.md — the slash command was documented but never registered in gravity-skills.tsv.

    Tasks

    • OP#2002: Initialize version branch from develop
    • OP#1936: Evaluate Claude Code ecosystem tools (Forge, Mission Control, Agent Deck)
    • OP#2241: fix: remove unregistered /humanize trigger from gt-writing-quality
    • OP#1994: Evaluate all 6 Claude Forge security hooks
    • OP#1995: Implement approved security hooks
    • OP#1996: Test security hooks integration
    • OP#1997-2000: Mission Control MCP tasks (closed per ADR-008 skip decision)
    • OP#2001: Document MCP server inventory in repo docs
    • OP#2026: Pre-release merge: consolidate feature branches
    • OP#2003: Create release branch and publish v1.28.0
    Downloads
  • v1.27.0 7727245da4

    v1.27.0 — Writing Quality & Frontend Design Skills
    All checks were successful
    CI / json-check (push) Successful in 7s
    CI / security (push) Successful in 6s
    CI / manifest (push) Successful in 7s
    CI / sast (push) Successful in 17s
    Publish / promote-release (push) Successful in 1s
    Publish / detect-release (push) Successful in 6s
    CI / lua-check (push) Successful in 12s
    Publish / tag (push) Successful in 7s
    Stable

    Gravity Bot released this 2026-03-16 04:26:35 +00:00 | 129 commits to master since this release

    What's Changed

    Anti-Slop Writing Quality Skill

    New gt-writing-quality skill that reduces AI slop in wiki, documentation, and journal output. Replaces the old Writing/ skill entirely.

    • OP#1980: Create gt-writing-quality SKILL.md with 63 banned phrases, structural tic rules, and 5-dimension scoring rubric
    • OP#1982: Create before/after examples demonstrating improvement across wiki, journal, docs, and PR prose
    • OP#1984: Update gt-wiki and gt-journal to reference gt-writing-quality
    • OP#1985: Remove old Writing/ skill directory
    • OP#1987: Validate enforcement against sample prose (all test cases pass)

    Frontend Design Quality Skills

    Two new domain skills for frontend design — engineering constraints and creative direction.

    • OP#1988: Create domain/frontend/taste-design SKILL.md with tunable parameters (DESIGN_VARIANCE, MOTION_INTENSITY, VISUAL_DENSITY) and engineering constraints
    • OP#1989: Create domain/frontend/aesthetic-direction SKILL.md with creative design philosophy
    • OP#1990: Add taste: parameter support to gt-project-setup and .gravity.yaml schema
    • OP#1991: Update domain/README.md with frontend design skills and usage guidance
    • OP#1992: Validate frontend skill structure and .gravity.yaml integration

    Output Completeness Enforcement

    • OP#1932: Create domain/methodology/output-completeness skill — prevents placeholder, truncated, or lazy code output across all implementation work

    Infrastructure

    • OP#1971: Initialize version branch
    • OP#2193: Pre-release merge — consolidated parallel feature branches

    Tasks

    • OP#1980: Create gt-writing-quality SKILL.md with anti-slop rules and scoring rubric
    • OP#1982: Create before/after examples in gt-writing-quality references
    • OP#1984: Update gt-wiki and gt-journal to reference gt-writing-quality
    • OP#1985: Remove old Writing/ skill directory
    • OP#1987: Test gt-writing-quality enforcement against sample prose
    • OP#1988: Create domain/frontend/taste-design SKILL.md
    • OP#1989: Create domain/frontend/aesthetic-direction SKILL.md
    • OP#1990: Add taste parameter support to gt-project-setup and .gravity.yaml schema
    • OP#1991: Update domain/README.md and add usage guidance for frontend skills
    • OP#1992: Test frontend design skills and .gravity.yaml integration
    • OP#1932: Output completeness enforcement skill
    • OP#2193: Pre-release merge: consolidate feature branches
    Downloads
  • v1.26.2 08e19b40c5

    v1.26.2 — MOTD, Manifest & Skill Discovery Fixes
    All checks were successful
    CI / manifest (push) Successful in 10s
    Publish / detect-release (push) Successful in 8s
    CI / security (push) Successful in 16s
    CI / sast (push) Successful in 18s
    Publish / tag (push) Successful in 7s
    CI / lua-check (push) Successful in 52s
    Publish / promote-release (push) Successful in 3m8s
    CI / json-check (push) Successful in 5m4s
    Stable

    Gravity Bot released this 2026-03-05 21:18:16 +00:00 | 146 commits to master since this release

    What's Changed

    Bug Fixes

    • OP#2017: Add starship to manifest tools array
    • OP#2021: Add jq to manifest system_packages array
    • OP#2018: Add gitmux to manifest tools and document Go install pattern in bootstrap agent
    • OP#2020: Add .gravity.yaml project discovery to pm-adapter backend discovery (Step 0)

    Features

    • OP#2019: Add removed_configs to manifest for deprecated skill directory cleanup
      • New removed_configs[] key in manifest.json declares paths to delete on sync
      • Bootstrap agent processes removals before deploying new configs (Step 5)
      • 11 old unprefixed skill directories listed for cleanup
    • OP#2024: Enhance MOTD alerts with remediation hints and system checks
      • Filter ESM advertisement from alerts section
      • Show remediation commands under each alert (apt upgrade, sudo reboot)
      • Claude Code version check — background npm registry check, shows upgrade command when outdated
      • Gravity config drift — reads .sync_state.json, shows GravitySync hint when files are out of sync
      • Color CPU load averages green/yellow/red relative to core count, labeled with window period

    Maintenance

    • OP#2012: Disable apt_news via pro config
    • OP#2013: Disable MOTD news in /etc/default/motd-news
    • OP#2014: Verify MOTD no longer shows ESM notice

    Tasks

    • OP#2023: Initialize version branch from develop
    • OP#2017: Add starship to manifest tools array
    • OP#2021: Add jq to manifest system_packages array
    • OP#2018: Add gitmux to manifest tools and document Go install in bootstrap
    • OP#2019: Add removed_configs for deprecated skill cleanup
    • OP#2020: Add .gravity.yaml project discovery to pm-adapter
    • OP#2024: Enhance MOTD alerts with remediation hints and system checks
    • OP#2012: Disable apt_news via pro config
    • OP#2013: Disable MOTD news in /etc/default/motd-news
    • OP#2014: Verify MOTD no longer shows ESM notice
    Downloads
  • v1.26.1 73eb808934

    v1.26.1 — Shell Config Parity & Project Schema
    All checks were successful
    CI / security (push) Successful in 5s
    Publish / detect-release (push) Successful in 3s
    CI / json-check (push) Successful in 8s
    Publish / tag (push) Successful in 5s
    CI / manifest (push) Successful in 4s
    CI / lua-check (push) Successful in 7s
    Publish / promote-release (push) Successful in 1s
    CI / sast (push) Successful in 1m34s
    Stable

    Gravity Bot released this 2026-03-04 15:28:27 +00:00 | 157 commits to master since this release

    What's Changed

    Bug Fix

    • OP#2004: Add Cargo/Rust env sourcing and worktrunk shell integration to .bashrc for cross-shell parity with .zshrc

    Schema Enhancement

    • OP#2006: Add project section to .gravity.yaml schema — pm_project_id (integer, skips runtime PM discovery) and git_mcp (string, MCP server prefix). Schema stays at v1 (forward-compatible). Skills now check config before falling back to runtime matching.

    Tasks

    • OP#2004: Add Cargo/Rust and worktrunk shell integration to .bashrc (1 SP)
    • OP#2006: Add project section to .gravity.yaml schema (2 SP)

    Install

    git fetch --tags
    git checkout v1.26.1
    
    Downloads
  • v1.26.0 1ae06d7391

    v1.26.0 — Worktrunk Integration & Terminal Workflow
    All checks were successful
    CI / json-check (push) Successful in 4s
    CI / security (push) Successful in 7s
    Publish / detect-release (push) Successful in 5s
    CI / manifest (push) Successful in 5s
    CI / lua-check (push) Successful in 9s
    Publish / tag (push) Successful in 4s
    Publish / promote-release (push) Successful in 1s
    CI / sast (push) Successful in 39s
    Stable

    Gravity Bot released this 2026-03-04 08:10:02 +00:00 | 161 commits to master since this release

    What's Changed

    Worktrunk Integration

    • OP#1948: Install Rust toolchain via rustup
    • OP#1950: Add worktrunk to manifest.json dependencies
    • OP#1951: Add cargo install step to bootstrap agent
    • OP#1952: Add worktrunk shell function to managed .zshrc
    • OP#1953: Verify worktrunk installation and commands

    gt-worktrunk Skill

    • OP#1954: Create gt-worktrunk SKILL.md with worktree lifecycle management
    • OP#1955: Add worktrunk CLI reference doc
    • OP#1922: Update gr-implementation Step 3 to use worktrunk branching
    • OP#1923: Add worktree cleanup (Check 6b) to gr-postflight
    • OP#1956: Test gt-worktrunk skill workflows

    Terminal Workflow Audit

    • OP#1957: Update .tmux.conf with Claude Code compatibility fixes (escape-time, allow-passthrough, Ctrl+B)
    • OP#1958: Evaluate WezTerm multiplexing as tmux alternative (recommend tmux primary)
    • OP#1959: Document recommended terminal workflow guide
    • OP#1960: Test terminal workflow end-to-end

    Infrastructure

    • OP#1947: Initialize version branch from develop
    • OP#1993: Pre-release merge: consolidate parallel feature branches

    Highlights

    worktrunk (wt) — Git worktree manager for parallel AI agent workflows, now a first-class Gravity tool. Rust toolchain added to manifest, bootstrap agent installs via cargo install worktrunk, shell integration managed in .zshrc. New gt-worktrunk skill provides worktree create/switch/cleanup workflows aligned with Gravity PM conventions.

    Skill integrationgr-implementation Step 3 now uses wt switch --create instead of git checkout -b with automatic fallback. gr-postflight Check 6b prunes merged worktrees via wt step prune.

    Terminal workflow — tmux config hardened for Claude Code (escape-time 10ms, allow-passthrough on, 50K history, Ctrl+B passthrough). WezTerm evaluated and documented as alternative. Comprehensive terminal workflow guide added.

    Tasks

    • OP#1947: Initialize version branch from develop (1 SP)
    • OP#1948: Install Rust toolchain via rustup (2 SP)
    • OP#1950: Add worktrunk to manifest.json dependencies (1 SP)
    • OP#1951: Add cargo install step to bootstrap (2 SP)
    • OP#1952: Add worktrunk shell function to managed .zshrc (2 SP)
    • OP#1953: Verify worktrunk installation and commands (1 SP)
    • OP#1954: Create gt-worktrunk SKILL.md (3 SP)
    • OP#1955: Add worktrunk CLI reference doc (2 SP)
    • OP#1922: Update gr-implementation to use worktrunk (3 SP)
    • OP#1923: Worktree cleanup in gr-postflight (2 SP)
    • OP#1956: Test gt-worktrunk skill workflows (2 SP)
    • OP#1957: Update .tmux.conf with Claude Code compatibility fixes (2 SP)
    • OP#1958: Evaluate WezTerm multiplexing as tmux alternative (3 SP)
    • OP#1959: Document recommended terminal workflow (2 SP)
    • OP#1960: Test terminal workflow end-to-end (2 SP)
    • OP#1993: Pre-release merge: consolidate feature branches (3 SP)

    Total: 33 SP across 16 tasks

    Downloads
  • v1.25.0 c481e845f4

    v1.25.0 — Custom MOTD & Gravity Help
    All checks were successful
    CI / manifest (push) Successful in 58s
    Publish / detect-release (push) Successful in 58s
    CI / security (push) Successful in 1m0s
    CI / sast (push) Successful in 1m55s
    CI / json-check (push) Successful in 3s
    CI / lua-check (push) Successful in 11s
    Publish / tag (push) Successful in 9s
    Publish / promote-release (push) Successful in 17s
    Stable

    Gravity Bot released this 2026-03-04 07:44:56 +00:00 | 174 commits to master since this release

    What's Changed

    Features

    • Custom MOTD — Catppuccin-themed system dashboard replacing Ubuntu's default MOTD

      • Real-time weather via open-meteo.com API (background fetch, hardcoded Minneapolis coords)
      • System stats from /proc (uptime, CPU load, RAM, disk)
      • System alerts (pending updates, security patches, reboot required)
      • Manifest dependency checker with per-column dynamic grid layout
      • Language/tool version display (Go, Node, Docker, Neovim)
      • Internal service links (Forgejo, OpenProject, Dockge, Dockhand)
      • Quick-start tips (gravity, aliases, motd)
      • Bootstrap hint when packages are missing
      • Performance optimized: ~0.6s total (background weather, batched dpkg-query, /proc reads)
      • 5-minute debounce via zsh hook
    • Gravity Help System — Fuzzy-searchable command reference (gravity)

      • Indexes shell aliases, functions, Claude skills, and Neovim commands
      • fzf integration with ANSI-colored preview pane
      • Sourced via .zshrc from ~/.local/share/gravity/gravity.sh
    • OMZ Git Aliases — Full Oh My Zsh-standard git alias set

      • Cross-shell compatible (.zsh_aliases + .bash_aliases)
      • 80+ aliases covering status, diff, commit, branch, stash, rebase, merge, reset, pull/push
      • Helper functions: git_main_branch(), git_current_branch()
      • Claude Code shortcuts (cc, cch, ccr, lfg)

    Manifest

    • Added motd and gravity.sh to config sync
    • Version bumped to 1.25.0

    Tasks

    • OP#1937: Initialize version branch from develop
    • OP#1919: Cherry-pick OMZ community aliases into shell configs (5 SP)
    • OP#1938: Write motd script with system stats section (3 SP)
    • OP#1939: Add manifest pre-flight checker to motd (3 SP)
    • OP#1940: Add tips section and zsh hook with debounce (2 SP)
    • OP#1941: Add motd script to manifest and test (2 SP)
    • OP#1943: Implement alias and function parser for gravity (3 SP)
    • OP#1944: Implement skill and nvim command indexer for gravity (2 SP)
    • OP#1942: Write gravity shell function with fzf integration (3 SP)
    • OP#1945: Add gravity to manifest configs and test (2 SP)

    Total: 26 SP across 10 tasks

    Downloads