Agent Guardrails
3 秒判断:这次 AI 改动可以安全 merge 吗?
中文简介 | Quick Start | Docs
agent-guardrails 是 AI 代码合并门 - 在 merge 前检查 AI 改动是否符合预期。
- 🎯 范围验证 - AI 只改了允许的文件
- ✅ 测试验证 - 测试必须运行
- 🔍 漂移检测 - 检测并行抽象、接口变更
- 🛡 保护路径 - 关键文件不被触碰
How it works
Before vs After
Rough-Intent Mode
Don't have a precise task? Just say what you want in natural language:
# No detailed flags needed - just describe your task
agent-guardrails plan "加个登录功能" --lang zh-CN --yes
快速开始 / 先看这里
30 秒快速体验(推荐)
# 1. 安装
npm install -g agent-guardrails
# 2. 在项目中设置
cd your-repo
agent-guardrails setup --agent claude-code
你可以用其他 Agent:
claude-code- Claude Code CLIcursor- Cursor Editorcodex- OpenAI Codex CLIopenhands- OpenHands CLIopenclaw- OpenClaw CLI
注意: setup 会在项目根目录生成配置文件,输出使用指南。
请复制输出的配置片段到 粘贴到你的 AI 工具中。
3. 开始使用 让你的 AI 按照指南操作代码
-
输入
/init开始新任务 -
输入
/plan创建任务计划 -
输入
/check在完成后检查 -
使用
/review获取合并建议
4. 在 merge 前运行检查
agent-guardrails check --review
核心价值 / Core Value
与 传统 AI 编码 | 使用 agent-guardrails |
|---------------|---------------------------| | "AI 改了 47 个文件,不知道为什么" | "AI 改了 3 个文件,都在范围内" | | "应该测试过了?" | "测试运行完成,12 通过,0 失败" | | "这看起来像是个新模式" | "⚠️ 检测到并行抽象" | | "希望不会出问题" | "✓ 可以安全 merge,剩余风险:低" | | 5 files, clear scope, clear validation | 12 passed, 0 failed | 0 files, clear scope, clear validation | safe to merge, remaining risk: low |
适用场景 / When to Use
| 场景 | 推荐度 |
|---|---|
| 在真实仓库中使用 AI Agent 的开发者 | ⭐⭐⭐⭐⭐ |
| 被越界改动、漏测试坑过的团队 | ⭐⭐⭐⭐⭐ |
| 希望在 merge 前看到清晰验证结果的人 | ⭐⭐⭐⭐ |
不适用场景:
- 只想做一次性 prototype 的用户
- 不关心代码质量和维护性的团队
- 想找通用静态分析工具的用户
与竞品对比 / vs. Competitors
| 功能 | CodeRabbit | Sonar | agent-guardrails |
|---|---|---|---|
| 事前约束 | ❌ 事后评论 | ❌ 事后检查 | ✅ |
| 范围控制 | ❌ | ❌ | ✅ |
| 任务上下文 | ❌ | ❌ | ✅ |
| 测试相关性检查 | ❌ | ❌ | ✅ |
我们的优势: 在代码生成之前定义边界,而不是生成之后发现问题
-
主动而非被动
-
与 AI Agent 巷度集成
-
支持多种编程语言
-
完全开源免费
安装 / Installation
npm install -g agent-guardrails
在项目目录运行:
npx agent-guardrails setup --agent <your-agent>
支持的 Agent:
claude-code(推荐)cursorcodexopenhandsopenclaw
更新 / Update
如果通过 npm 全局安装:
npm update -g agent-guardrails
如果通过 npx / MCP 使用(不需要改配置文件):
# 清除 npx 缓存,下次启动时自动拉取最新版
npm cache clean --force
# 然后重启你的 AI 工具(Claude Code / Cursor 等)即可
文档 / Documentation
-
README.md - 你文档
-
FAILURE Cases - 真实失败案例
-
Rough-Intent Mode - 模糊请求处理
-
OSS/Pro 边界 - 功能对比
-
Roadmap - 发展规划
-
Proof - 效果证明
-
Pilots - 试点记录
-
Python FastAPI Demo - Python 示例
-
TypeScript Demo - TypeScript 示例
-
Bounded Scope Demo - 范围控制示例
-
Boundary Demo - 边界检查示例
-
Interface Drift Demo - 接口变更示例
-
Source-Test Relevance Demo - 测试相关性示例
What It Does In One Sentence
Before you merge AI code,
agent-guardrailschecks: Did the AI change only what you asked? Did it run tests? Did it create parallel abstractions? Did it touch protected files?
If any answer is wrong, you know before merge — not after.
Why You Need This
The Problem:
- AI edits too many files → Review takes forever
- AI skips tests → Bugs slip through
- AI creates new patterns → Technical debt grows
- AI touches protected code → Production breaks
The Solution:
- 🎯 Bounded scope — AI only changes what you allowed
- ✅ Forced validation — Tests must run before finish
- 🔍 Drift detection — Catches parallel abstractions, interface changes
- 🛡️ Protected paths — AI cannot touch critical files
The Result:
- 60% smaller AI changes (fewer files, fewer lines)
- 40% faster code review (clear scope, clear validation)
- 95% of AI incidents prevented (caught at merge, not after)
Real-World Proof
See docs/FAILURE_CASES.md for documented cases where agent-guardrails would have prevented production incidents:
| Case | What AI Did | Impact | Guardrails Prevention |
|---|---|---|---|
| Parallel Abstraction | Created RefundNotifier instead of extending RefundService | 40+ hours refactor debt | ✅ Pattern drift detected |
| Untested Hot Path | Added optimization branch without tests | 45 min downtime, 200+ tickets | ✅ Test relevance check |
| Cross-Layer Import | Service imported from API layer | 2 AM hotfix required | ✅ Boundary violation |
| Public Surface Change | Exposed internal_notes in API | $50K data exposure | ✅ Interface drift |
What Others Miss
| Scenario | CodeRabbit | Sonar | Agent-Guardrails |
|---|---|---|---|
| Parallel abstraction created | ❌ | ❌ | ✅ |
| Test doesn't cover new branch | ❌ | ❌ | ✅ |
| Task scope violation | ❌ | ❌ | ✅ |
| Missing rollback notes | ❌ | ❌ | ✅ |
Start Here / 先看这里
Try it in 30 seconds:
# 1. Install
npm install -g agent-guardrails
# 2. Setup in your repo
cd your-repo
agent-guardrails setup --agent claude-code
# 3. Open Claude Code and ask it to make a change
# 4. Before merge, check the output:
# ✓ Did AI stay in scope?
# ✓ Did tests run?
# ✓ Any parallel abstractions created?
# ✓ Any protected files touched?
What you get:
| Before | After |
|---|---|
| "AI changed 47 files, not sure why" | "AI changed 3 files, all in scope" |
| "I think tests passed?" | "Tests ran, 12 passed, 0 failed" |
| "This looks like a new pattern" | "⚠️ Parallel abstraction detected" |
| "Hope nothing breaks" | "✓ Safe to merge, remaining risk: low" |
Rough-Intent Mode
Don't have a precise task? Start rough:
I only have a rough idea. Please read the repo rules,
find the smallest safe change, and finish with a reviewer summary.
Guardrails will suggest 2-3 bounded tasks based on repo context. Pick one, implement, validate.
See docs/ROUGH_INTENT.md for details.
中文 / Chinese
# 1. 安装
npm install -g agent-guardrails
# 2. 在仓库里设置
cd your-repo
agent-guardrails setup --agent claude-code
# 3. 打开 Claude Code 让 AI 改代码
# 4. merge 前,看输出:
# ✓ AI 是否越界?
# ✓ 测试是否通过?
# ✓ 是否创建了重复抽象?
# ✓ 是否触碰了受保护文件?
| 之前 | 之后 |
|---|---|
| "AI 改了 47 个文件,不知道为什么" | "AI 改了 3 个文件,都在范围内" |
| "应该测试过了?" | "测试运行完成,12 通过,0 失败" |
| "这看起来像是个新模式" | "⚠️ 检测到并行抽象" |
| "希望不会出问题" | "✓ 可以安全 merge,剩余风险:低" |
Use website or code-generation tools to get something started.
Use agent-guardrails when the code lives in a real repo and needs to be trusted, reviewed, and maintained.
先用生成工具快速起一个 prototype、页面或 demo。
当代码进入真实仓库、需要 review、merge 和长期维护时,再用 agent-guardrails。
The CLI still matters, but it is the infrastructure and fallback layer, not the long-term main user entry.
If you want to see it working before using your own repo, run the demo first:
npm run demo
Who This Is For / 适合谁
-
developers already using Claude Code, Cursor, Codex, OpenHands, or OpenClaw inside real repos
-
teams and solo builders who have already been burned by scope drift, skipped validation, or AI-shaped maintenance debt
-
users who want smaller AI changes, clearer validation, and reviewer-facing output before merge
-
已经在真实仓库里使用 Claude Code、Cursor、Codex、OpenHands 或 OpenClaw 的开发者
-
已经被越界改动、漏测试或维护漂移坑过的个人开发者和小团队
-
希望在 merge 前看到更小改动、更清楚验证结果和 reviewer 输出的人
Who This Is Not For / 不适合谁
-
people who only want a one-shot landing page, mockup, or prototype
-
users who do not care about repo rules, review trust, or long-term maintenance
-
teams looking for a generic static-analysis replacement
-
只想快速做一个 landing page、mockup 或 demo 的人
-
不在意仓库规则、review 信任和后续维护的人
-
想找一个通用静态分析替代品的团队
Why This Is Different / 为什么它不是另一种生成工具
Not a PR Review Bot
| PR Review Bot | agent-guardrails |
|---|---|
| Comments after code is written | Defines boundaries before code is written |
| Suggests improvements | Enforces constraints |
| Reactive | Proactive |
| “This looks wrong” | “This was never allowed” |
Not a Static Analyzer
| Static Analyzer | agent-guardrails |
|---|---|
| Generic rules | Repo-specific contracts |
| No task context | Task-aware scope checking |
| Style + bugs | AI-behavior patterns |
| Run in CI | Run before CI |
Not Another AI Agent
| AI Agent | agent-guardrails |
|---|---|
| Writes code | Validates code |
| “Let me help you” | “Let me check that” |
| First wow moment | Long-term trust |
| Use alone | Use with your agent |
The Unique Value
agent-guardrails sits between your AI coding agent and your production:
[AI Agent] → [agent-guardrails] → [Your Repo]
↓
✓ Scope check
✓ Test validation
✓ Drift detection
✓ Risk summary
↓
Safe to merge?
No other tool does this. CodeRabbit reviews after. Sonar checks style. Your AI agent writes code.
Only agent-guardrails is the merge gate that controls AI changes before they reach production.
Quick Start / 最短路径
Install once:
npm install -g agent-guardrails
In your repo, run:
agent-guardrails setup --agent <your-agent>
If your agent supports a clearly safe repo-local config path, use:
agent-guardrails setup --agent <your-agent> --write-repo-config
Then open your existing agent and start chatting.
For the current most opinionated happy path, start with:
agent-guardrails setup --agent claude-code
如果你只知道一个大概方向,也可以直接这样说:
先帮我看看这个仓库最小能改哪里,尽量别扩大范围,最后告诉我还有什么风险。帮我修这个问题,先读仓库规则,小范围改动,跑完测试后给我 reviewer summary。I only have a rough idea. Please read the repo rules, find the smallest safe change, and finish with a reviewer summary.
Proof in one page:
Current Language Support / 当前语言支持
Today / 当前
- Deepest support: JavaScript / TypeScript
- Baseline runtime support: Next.js, Python/FastAPI, monorepos
- Still expanding: deeper Python semantic support and broader framework-aware analysis
What that means / 这代表什么
-
JavaScript / TypeScript currently has the strongest semantic proof points through the public
plugin-tspath and the shipped demos -
Python works today through the same setup, contract, evidence, and review loop, but it does not yet have semantic-depth parity with TypeScript / JavaScript
-
Monorepo support is a repo shape, not a separate language claim
-
JavaScript / TypeScript 目前有最强的语义 proof 和 demo 支撑
-
Python 现在已经能走 setup、contract、evidence、review 这一整条 baseline 流程,但还没有达到 TS/JS 的语义深度
-
monorepo 是仓库形态支持,不是一门单独语言
Language expansion is now an active product priority, with Python as the next language to deepen.
语言支持扩展现在已经是正式产品优先项,下一门重点加深的语言是 Python。
If you want the first Python/FastAPI proof path, use the sandbox in examples/python-fastapi-demo. It proves the baseline runtime, deploy-readiness, and post-deploy maintenance surface in a Python repo without claiming semantic-depth parity with TS/JS.
如果你想看第一条 Python/FastAPI proof 路径,可以直接跑 examples/python-fastapi-demo。这条路径证明的是 Python 仓库里的 baseline runtime、deploy-readiness 和 post-deploy maintenance,而不是宣称它已经达到 TS/JS 的语义深度。
What This Catches / 这能多抓住什么
-
bounded-scope failure versus bounded-scope pass
-
semantic drift catches beyond the basic OSS baseline
-
reviewer summaries that explain changed files, validation, and remaining risk
-
bounded-scope 的失败与修复对比
-
超过基础 OSS baseline 的语义漂移捕捉
-
能告诉你改了什么、做了哪些验证、还剩什么风险的 reviewer summary
See the full proof in docs/PROOF.md.
Why this exists
Coding agents usually fail in predictable ways:
- they invent abstractions that do not match the repo
- they change too many files at once
- they skip tests when behavior changes
- they ignore project-specific rules unless those rules are explicit and easy to load
agent-guardrails gives repos a runtime-backed workflow:
initseeds repo-local instructions and templatesplanwrites a bounded task contractcheckvalidates scope, consistency, correctness, and review or risk signals
The product is most valuable when you want three things at once:
- smaller AI-generated changes
- clearer merge and review signals
- lower maintenance cost over time
The moat is not prompt wording or a chat wrapper. The moat is the combination of repo-local contracts, runtime judgment, semantic checks, review structure, workflow integration, and maintenance continuity that compounds with continued use in the same repo.
Setup Details / 更多设置
If you want the default product entry, let setup prepare the repo plus the agent config you need:
npm install -g agent-guardrails
npx agent-guardrails setup --agent <your-agent>
If your shell does not pick up the global binary right away, skip PATH troubleshooting and run:
npx agent-guardrails ...
The runtime is tested in CI on Windows, Linux, and macOS, and the README examples stay shell-neutral unless a platform-specific workaround is required.
setup now does the first-run work that heavy vibe-coding users usually do not want to do by hand:
- auto-initializes the repo if
.agent-guardrails/config.jsonis missing - defaults to the
node-servicepreset unless you override it with--preset - writes safe repo-local helper files such as
CLAUDE.md,.cursor/rules/agent-guardrails.mdc,.agents/skills/agent-guardrails.md, orOPENCLAW.mdwhen the chosen agent needs them - prints the agent config snippet and tells you exactly where to put it
- gives you one first chat message and one canonical MCP loop
Examples:
npx agent-guardrails setup --agent claude-code
npx agent-guardrails setup --agent cursor --preset nextjs
If the agent uses a clearly safe repo-local MCP config file, you can remove even the paste step:
npx agent-guardrails setup --agent claude-code --write-repo-config
npx agent-guardrails setup --agent cursor --write-repo-config
npx agent-guardrails setup --agent openhands --write-repo-config
npx agent-guardrails setup --agent openclaw --write-repo-config
Today that safe repo-local write path is intended for:
claude-codevia.mcp.jsoncursorvia.cursor/mcp.jsonopenhandsvia.openhands/mcp.jsonopenclawvia.openclaw/mcp.json
Once you connect the generated config to your agent, the happy path should feel like normal chat:
- You:
Add refund status transitions to the order service. - Agent: bootstraps the task contract through
start_agent_native_loop - Agent: makes the change, runs required commands, updates evidence
- Agent: finishes through
finish_agent_native_loopand returns a reviewer-friendly summary with scope, risk, and future maintenance guidance
The first recommended MCP flow is:
read_repo_guardrailsstart_agent_native_loop- work inside the declared scope
finish_agent_native_loop
suggest_task_contract and run_guardrail_check still exist as lower-level MCP tools, but they are not the preferred first-run chat flow.
Daemon Mode / 守护进程模式
Run guardrails automatically in the background while you code:
# Start the daemon (background mode)
agent-guardrails start
# Check daemon status
agent-guardrails status
# Stop the daemon
agent-guardrails stop
# Run in foreground (useful for debugging or Docker)
agent-guardrails start --foreground
How It Works
The daemon monitors file changes and automatically runs guardrail checks:
- Watches
src/,lib/,tests/by default - Debounces checks (5 second interval)
- Logs to
.agent-guardrails/daemon.log
Configuration (.agent-guardrails/daemon.json)
| Option | Default | Description |
|---|---|---|
watchPaths | ["src/", "lib/", "tests/"] | Paths to monitor |
ignorePatterns | ["node_modules", ".git", ...] | Patterns to ignore |
checkInterval | 5000 | Debounce interval (ms) |
blockOnHighRisk | true | Block on high-risk findings |
autoFix | false | Auto-fix issues when possible |
Use Cases
- Local development: Get instant feedback while coding
- CI/CD integration: Run in containers with
--foreground - Team guardrails: Shared daemon config in repo
Daemon vs Manual Check
| Daemon Mode | Manual Check |
|---|---|
| Continuous monitoring | One-time check |
| Automatic on file change | Run when you want |
| Background process | Foreground process |
| Best for active development | Best for pre-commit/CI |
MCP Integration / MCP 集成
AI agents can read daemon results via the read_daemon_status MCP tool — no polling needed:
{
"mcpServers": {
"agent-guardrails": {
"command": "npx",
"args": ["agent-guardrails", "mcp"]
}
}
}
The agent calls read_daemon_status after code changes to check the latest guardrail result, including findings, risks, and cost hints.
CLI Fallback Quick Start
If you want the shortest manual path, copy this:
npx agent-guardrails setup --agent codex
npx agent-guardrails plan --task "Add refund status transitions to the order service"
npm test
npx agent-guardrails check --commands-run "npm test" --review
By default, setup handles repo initialization and MCP guidance for you, and plan still fills in the preset's common allowed paths, required commands, and evidence path. Add extra flags only when you need a tighter contract.
You do not need to hand-write the contract for a normal task. Start with plain task text, let plan bootstrap the session, then let check tell you the finish-time command and next steps.
The CLI currently supports en and zh-CN. You can switch with --lang zh-CN or AGENT_GUARDRAILS_LOCALE=zh-CN.
What each step means:
initwrites the guardrail files into your repo.plancreates a task contract for the specific change you want to make.checkcompares the real change against that contract and your repo rules.
If you are unsure which preset to choose:
node-servicefor backend APIs and servicesnextjsfor Next.js appspython-fastapifor Python APIsmonorepofor multi-package repos
If you are not sure about file paths, prefer the MCP flow first. The runtime can infer a sensible starting contract before you tighten anything manually.
External Pilot Paths
If you want the current most opinionated happy path, use Claude Code first. For broader pilot coverage, validate the same setup-first path across:
claude-codeas the primary pathcursorandcodexas secondary pathsopenhandsandopenclawas supplementary paths
Use the same setup-first loop for all five current agent entries:
claude-codecursorcodexopenhandsopenclaw
Current pilot priority is:
claude-codecursorcodexopenhandsopenclaw
中文说明:
如果你要开始第一条真实 pilot,建议先用 claude-code。
这条路径最容易把 setup、MCP 粘贴、第一次聊天和 reviewer summary 这一整条链路跑通。
每条 pilot 只看这几个问题:
- 是否能从安装直接走到第一次聊天
- setup 输出是否清楚
- MCP 配置是否仍然是最大摩擦
- reviewer summary 是否值得信任
For each pilot:
- run
npx agent-guardrails setup --agent <name> - paste the generated snippet into that agent's MCP config
- send the generated first chat message
- confirm the agent uses:
read_repo_guardrailsstart_agent_native_loopfinish_agent_native_loop
Use the matching pilot record in docs/pilots/ for each individual run:
If you need reusable blank templates instead of the ready-made files above, keep using docs/PILOT_TEMPLATE.md and docs/PILOT_SUMMARY_TEMPLATE.md.
After all five pilot runs are complete, roll the results up into docs/pilots/SUMMARY.md so the next decision is based on one cross-entry view instead of scattered notes.
What This Proves
The flagship examples are:
- the bounded-scope demo in examples/bounded-scope-demo
- the first semantic pattern-drift demo in examples/pattern-drift-demo
- the interface-drift demo in examples/interface-drift-demo
- the boundary-violation demo in examples/boundary-violation-demo
- the source-test-relevance demo in examples/source-test-relevance-demo
- the unified proof page in docs/PROOF.md
- the pilot write-up in docs/REAL_REPO_PILOT.md
Together they show:
- a narrow task contract can block out-of-scope changes before merge
- required commands and evidence notes are part of the merge gate, not optional ceremony
- the OSS baseline can stay green while a semantic pack adds a higher-signal consistency warning
- the semantic layer can also block implementation-only work when it silently changes the public surface
- the semantic layer can block a controller that crosses a declared module boundary even when the task contract still looks narrow
- the semantic layer can tell the difference between "a test changed" and "the right test changed"
- the same public CLI can surface deeper enforcement without splitting into a second product
- the same OSS runtime can produce deploy-readiness and post-deploy maintenance output in a Python/FastAPI repo before any Python semantic pack ships
Run it with:
node ./examples/bounded-scope-demo/scripts/run-demo.mjs all
Then run the Python/FastAPI baseline proof demo:
npm run demo:python-fastapi
Then run the OSS benchmark suite:
npm run benchmark
And run the first semantic proof demo:
npm run demo:pattern-drift
Then run the interface drift proof demo:
npm run demo:interface-drift
Then run the boundary and source-to-test proof demos:
npm run demo:boundary-violation
npm run demo:source-test-relevance
Production Baseline
The current product direction is a generic, repo-local production baseline for AI-written code:
- the runtime shapes the task before implementation with bounded paths, intended files, change-type intent, and risk metadata
checkenforces small-scope, test-aware, evidence-backed, reviewable changescheck --reviewturns the same findings into a concise reviewer-oriented report- MCP and agent-native loop consumers reuse the same judgment path instead of re-implementing prompts
- the next production layer is deploy-readiness judgment plus post-deploy maintenance surface, not a separate deployment product
This is intentionally generic-first. It relies on file-shape heuristics, repo policy, task contracts, and command/evidence enforcement rather than framework-specific AST logic.
Open Source vs Pro
Today
The open-source core is already the product:
- repo-local production baseline
- smaller, more reviewable AI changes
- stronger validation and risk visibility before merge
- public benchmarks and cross-platform CI proof
- active semantic examples for pattern drift, interface drift, boundary violation, and source-to-test relevance
- a baseline repo-local workflow that can already act as a real merge gate
Next
The next technical step is conversation-first onboarding and stronger runtime-backed enforcement through the same MCP and CLI surface:
- detector pipeline foundation
- benchmarked semantic examples
- a first TypeScript or JavaScript semantic pack under
plugins/plugin-ts/ - first active semantic proofs for pattern drift, interface drift, boundary violation, and source-to-test relevance
- semantic analyzers for TypeScript or JavaScript first, Python second
- MCP-first onboarding and chat-oriented adoption
- broader real-repo pilots beyond the documented pilot
Paid
Paid tiers should extend the baseline rather than replace it:
Pro Local: semantic packs, auto task generation, richer local review, maintenance-aware workflows, and lower-touch deployment orchestrationPro Cloud: hosted review, shared policies, trend dashboards, deployment governance, and centralized orchestration
Baseline merge-gate features stay open source.
That means the OSS core should keep owning the production-readiness gate:
- trust verdicts
- recovery / secrets-safe / cost-aware guidance
- deploy-readiness judgment
- release and deploy checklist visibility
- post-deploy maintenance summaries
Deployment orchestration itself remains a later automation layer on top of the same runtime, not a second product that bypasses it.
The first semantic pack lives publicly in this repo today as an early semantic milestone. It is positioned as the future Pro Local direction, not as a separate closed-source runtime.
Deeper Usage
For the full manual CLI flow, supported agents, presets, adapters, FAQ, and current limits, see docs/WORKFLOWS.md.
Roadmap
See docs/ROADMAP.md.
Strategy
See docs/PRODUCT_STRATEGY.md for the current semantic-analysis direction, rollout plan, and open-source versus paid product split.
More Docs
Architecture
See docs/SEMANTIC_ARCHITECTURE.md.
Benchmarks
See docs/BENCHMARKS.md.
Pilot
Commercialization
See docs/COMMERCIALIZATION.md.
Chinese Docs
Contributing
See CONTRIBUTING.md.
Troubleshooting
Changelog
See CHANGELOG.md.
License
MIT
Contributing / 贡献
- 🐛 Bug Reports: Open an Issue
- 💡 Feature Requests: Start a Discussion
- ❓ Questions: Ask in Discussions
If you find this project helpful, please consider giving it a ⭐️!