惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园_首页
博客园 - 聂微东
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
D
Docker
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Jina AI
Jina AI
博客园 - Franky
D
DataBreaches.Net

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - ductrl/CommitGate: An AI-powered Git pre-commit ...
ductrl · 2026-06-21 · via Hacker News: Show HN

An AI-powered security gate for Git. Every time you run git commit, CommitGate scans the staged diff for potential vulnerabilities and blocks the commit before secrets or risky code ever reach your history.

It runs two scanners over your staged changes and merges their findings:

Layer Tool Catches
Deterministic Gitleaks Known secret shapes — API keys, tokens, passwords matching standard patterns
Semantic AI reviewer (OpenAI-compatible — DeepSeek, OpenAI, Gemini, or Groq) What regex misses — internal URLs, non-standard credentials, eval/os.system, data-leaking logic

Findings from both layers are merged, deduplicated, and fed into a decision engine that rules allow / warn / block. A Rich terminal report explains why.


Demo

CommitGate Demo

CommitGate blocking a vulnerable commit before it reaches Git history.


Table of Contents

  • Setup
  • Usage
  • How it works
  • Splunk Setup
  • Module map
  • Data Privacy
  • License

Setup

1. Install prerequisites

Install these on your machine before installing CommitGate:

  • Python ≥ 3.10

  • Git

  • Gitleaks — an external binary that must be installed separately (it is not pulled in by pip):

    • Windows: winget install gitleaks
    • macOS: brew install gitleaks
    • Linux: download the release binary and place it on your PATH

    Confirm it's on your PATH before continuing:

  • AI API key — required for the AI reviewer (pick one provider; you'll add the key to your .env in step 3):

2. Install CommitGate

pip install git+https://github.com/ductrl/CommitGate.git

3. Configure environment variables

Create a .env file in the root of your project (not CommitGate's repo):

# Required — AI reviewer (one key for whichever provider you set in commitgate.yaml)
AI_KEY=your-api-key-here
# Free option: get a Groq key at https://console.groq.com, then set provider: groq in commitgate.yaml

# Optional — AI review timeout in seconds (default: 20)
# COMMITGATE_AI_TIMEOUT=20

# Optional — Splunk audit logging (see Splunk Setup below)
# SPLUNK_HEC_TOKEN=your-hec-token-here
# SPLUNK_HEC_URL=https://prd-p-yourinstance.splunkcloud.com:8088/services/collector/event
# SPLUNK_VERIFY_SSL=false                   # required for Splunk Cloud free trial

.env should be gitignored — your keys should never enter source or git history.

4. Initialize CommitGate

Run this inside the repo you want to protect:

This does two things at once:

  • Creates a commitgate.yaml config file in the repo root
  • Writes .git/hooks/pre-commit so commitgate scan fires automatically on every commit

The generated commitgate.yaml looks like this — edit it to match your needs:

ai:
  enabled: true          # set to false to run gitleaks only (no API key needed)
  # Options: openai, deepseek, gemini, groq
  # Tip: groq offers a free API key — get one at https://console.groq.com
  provider: deepseek
  timeout: 20            # seconds before AI review is abandoned (fail closed → warn)
policy:
  block_severity: high   # findings at this severity or above stop the commit, available options: low / medium / high / critical
reporting:
  show_suggestions: true # include AI fix suggestions in the terminal report

Commit commitgate.yaml so your whole team shares the same gate policy — it contains no secrets.


Usage

commitgate init          # create commitgate.yaml + install pre-commit hook
commitgate scan          # scan staged files (runs automatically via hook)
commitgate install-hook  # install pre-commit hook only (no config file)
commitgate version       # print version
SKIP=all git commit ...  # bypass CommitGate for a single commit

Once the hook is installed, just commit normally. CommitGate intercepts the commit, scans the diff, and either lets it through or blocks it with a report.

Decision outcomes

Outcome Meaning Exit code
allow No findings, or all below warn threshold 0 — commit proceeds
warn Medium-severity findings 0 — commit proceeds, warnings printed
block High or critical findings 1 — commit stopped

Manual scan (without committing)

git add <file>
commitgate scan
git restore --staged <file>

How it works

git commit
  └─ .git/hooks/pre-commit  →  commitgate scan
        ├─ gitleaks_runner    scan staged diff for known secret patterns
        ├─ ai_reviewer        LLM semantic review for issues regex can't catch
        ├─ decision_engine    merge findings → allow / warn / block
        ├─ report_generator   Rich terminal output
        ├─ splunk_logger      audit event to Splunk HEC (optional)
        └─ exit code          block → non-zero (stops commit) · allow/warn → 0

Splunk Setup (optional)

CommitGate can send an audit event to Splunk after every scan, giving you a searchable history of every commit decision.

1. Create a Splunk account

Sign up at splunk.com. Start a Splunk Cloud free trial from your account dashboard.

2. Enable HTTP Event Collector (HEC)

In your Splunk UI:

  1. SettingsData InputsHTTP Event Collector
  2. Click Global Settings → set All Tokens to EnabledSave

3. Create a HEC token

  1. Still on the HTTP Event Collector page → New Token
  2. Name: commitgate-audit
  3. Click NextSource type: type commitgate:audit and select New
  4. Index: mainReviewSubmit
  5. Copy the token shown on the confirmation screen

4. Add to your .env

SPLUNK_HEC_TOKEN=your-token-here
SPLUNK_HEC_URL=https://prd-p-yourinstance.splunkcloud.com:8088/services/collector/event
SPLUNK_VERIFY_SSL=false

Why SPLUNK_VERIFY_SSL=false? Splunk Cloud free trial issues certificates missing the Authority Key Identifier extension required by Python 3.10+, making SSL verification impossible on the free plan. Paid Splunk accounts use properly signed certificates and do not need this setting.

5. Verify the connection

Stage any file and run a manual scan:

git add <any-staged-file>
commitgate scan
git restore --staged <any-staged-file>

If the audit event reaches Splunk you'll see no yellow "Splunk audit log failed" warning in the output.

6. View events in Splunk

Search & Reporting → run:

sourcetype="commitgate:audit"

Each commitgate scan appears as one event with action, reason, findings_count, and the full findings list.

Splunk dashboard

Build a CommitGate Security Gate dashboard with these searches:

Panel Type Search
Decisions over time Line chart sourcetype="commitgate:audit" action!="allow" | timechart count by action
Blocks today Single value sourcetype="commitgate:audit" action=block | stats count as Blocked
Top triggered categories Bar chart sourcetype="commitgate:audit" | stats count by findings{}.category | sort -count
Findings by severity Pie chart sourcetype="commitgate:audit" | stats count by findings{}.severity
Recent blocked commits Table sourcetype="commitgate:audit" | table _time reason findings_count | sort -_time

Module map

Module Role
cli.py Typer commands: scan, install-hook, init, version
git_utils.py Staged files/diff, is-git-repo, hook install
gitleaks_runner.py Run gitleaks binary, parse findings into dicts
ai_reviewer.py LLM semantic review (OpenAI-compatible — provider set in commitgate.yaml), returns (findings, ok)
decision_engine.py Merge findings → allow / warn / block (reads commitgate.yaml thresholds)
report_generator.py Format findings for Rich terminal output
splunk_logger.py POST audit event to Splunk HEC after every scan
config.py Generate and load commitgate.yaml, merge with built-in defaults

See docs/architecture.md for the full architecture and CONTRIBUTING.md for the branch/PR workflow.


Data Privacy

When ai.enabled: true, CommitGate sends your staged code diffs to an external AI provider (whichever you configure in commitgate.yaml). Do not use the AI reviewer on confidential or proprietary code without your organization's authorization. Set ai.enabled: false to run gitleaks only — no data leaves your machine.

Supported providers: Groq, DeepSeek, OpenAI, Gemini. Local LLM support (Ollama) and self-hosted Splunk are on the roadmap so CommitGate can operate fully air-gapped.


License

MIT © 2026 Mike Ly

CommitGate is free to use, modify, and distribute under the terms of the MIT License.