Skip to content

Add Browser CLI delivery skills and package install-skills assets#12

Merged
xhwSkhizein merged 7 commits intomainfrom
docs/browser-cli-delivery-skills
Apr 14, 2026
Merged

Add Browser CLI delivery skills and package install-skills assets#12
xhwSkhizein merged 7 commits intomainfrom
docs/browser-cli-delivery-skills

Conversation

@xhwSkhizein
Copy link
Copy Markdown
Owner

@xhwSkhizein xhwSkhizein commented Apr 14, 2026

Summary

  • add the Browser CLI delivery/explore/converge skill docs and related design/plan docs already accumulated on this branch
  • package the three public Browser CLI skills inside the wheel for browser-cli install-skills
  • add --target support plus wheel-level CI/release smoke checks

Validation

  • ./scripts/lint.sh
  • ./scripts/test.sh
  • ./scripts/guard.sh
  • built wheel and verified browser-cli install-skills --dry-run --target <tmpdir> in a clean venv

Summary by CodeRabbit

  • New Features

    • install-skills command now supports --target argument to customize skill installation directory (defaults to ~/.agents/skills).
    • Skills are now packaged with the browser-cli distribution for deterministic discovery and installation.
  • Documentation

    • Browser CLI skill architecture reorganized into three focused skills: browser-cli-delivery, browser-cli-explore, and browser-cli-converge, each with dedicated documentation.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 14, 2026

Warning

Rate limit exceeded

@xhwSkhizein has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 31 minutes and 34 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 31 minutes and 34 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 778cc3b8-0edc-4f4e-a2b7-f607394eb586

📥 Commits

Reviewing files that changed from the base of the PR and between d4b6abd and 01f6164.

📒 Files selected for processing (11)
  • AGENTS.md
  • docs/superpowers/plans/2026-04-11-browser-cli-network-response-body-implementation-plan.md
  • docs/superpowers/plans/2026-04-14-browser-cli-delivery-skills-implementation-plan.md
  • docs/superpowers/plans/2026-04-14-browser-cli-install-skills-implementation-plan.md
  • docs/superpowers/specs/2026-04-14-browser-cli-delivery-skills-design.md
  • scripts/generate_packaged_skill_docs.py
  • scripts/guards/docs_sync.py
  • src/browser_cli/commands/install_skills.py
  • tests/unit/test_install_skills_command.py
  • tests/unit/test_release_artifacts.py
  • tests/unit/test_repo_skill_docs.py
📝 Walkthrough

Walkthrough

Introduces a modular three-skill delivery architecture for Browser CLI tasks (delivery, explore, converge) replacing a monolithic approach, adds packaged skill distribution via installed wheels using importlib.resources, refactors install-skills command with deterministic discovery and --target support, and implements comprehensive validation tests and CI workflows to ensure release correctness.

Changes

Cohort / File(s) Summary
Workflow & CI Validation
.github/workflows/ci.yml, .github/workflows/release.yml
Added packaging-smoke CI job and release verification step that builds wheels, runs artifact tests, installs from wheel, and validates install-skills --dry-run functionality to prevent shipping regressions.
Skill Documentation Structure
skills/browser-cli-delivery/SKILL.md, skills/browser-cli-explore/SKILL.md, skills/browser-cli-converge/SKILL.md, skills/browser-cli-explore-delivery/* (removed)
Replaced legacy monolithic browser-cli-explore-delivery skill (removed SKILL.md, agents config, and reference docs) with three new modular skills defining distinct responsibilities: delivery (orchestration), explore (evidence capture), and converge (stable implementation).
Packaged Skills Package
src/browser_cli/packaged_skills/__init__.py, src/browser_cli/packaged_skills/browser-cli-*/SKILL.md
Added new packaged_skills Python package containing three skill definitions shipped with installed distributions, making skills discoverable and installable via importlib.resources without repository scanning.
Install Skills Command Refactor
src/browser_cli/commands/install_skills.py
Replaced pip/git-based skill discovery with deterministic importlib.resources-based discovery of packaged skills, added PackagedSkill typed model, discover_packaged_skills() and install_skills_from_paths() functions, added --target path support, converted error reporting to explicit exception types (InvalidInputError, OperationFailedError).
CLI Updates
src/browser_cli/cli/main.py
Added --target optional argument to install-skills subcommand with default ~/.agents/skills, updated help text to reference packaged skills specifically.
Build & Packaging Configuration
pyproject.toml, scripts/guards/architecture.py
Updated tool.setuptools to include packaged_skills package data with */SKILL.md files; extended architecture guard to recognize packaged_skills ownership module.
Design & Planning Documentation
AGENTS.md, docs/superpowers/specs/2026-04-14-*.md, docs/superpowers/plans/2026-04-*.md
Added comprehensive design specs for delivery-skills system and install-skills deterministic contract; updated implementation plan docs with three-skill structure; updated AGENTS.md to point to new delivery skill entrypoint; removed legacy preflight/task-modes references.
Test Coverage
tests/unit/test_cli.py, tests/unit/test_install_skills_command.py, tests/unit/test_release_artifacts.py, tests/unit/test_repo_metadata.py, tests/unit/test_repo_skill_docs.py
Added test for --target CLI flag presence; comprehensive install-skills command tests covering discovery, target resolution, dry-run, and install flows; wheel contents validation; pyproject.toml packaging config assertion; skill documentation topology and contract enforcement tests.

Sequence Diagram(s)

sequenceDiagram
    participant User as User
    participant CLI as CLI: install-skills
    participant Discover as discover_packaged_skills()
    participant Resources as importlib.resources
    participant Install as install_skills_from_paths()
    participant FS as Filesystem
    
    User->>CLI: invoke install-skills --target ~/my/path
    CLI->>Discover: locate packaged skills
    Discover->>Resources: query browser_cli.packaged_skills
    Resources-->>Discover: skill assets (SKILL.md + paths)
    Discover->>Discover: validate all required skills present
    alt missing skills
        Discover-->>CLI: raise InvalidInputError
        CLI-->>User: error: incomplete packaged assets
    else all found
        Discover-->>CLI: list[PackagedSkill]
        CLI->>Install: install_skills_from_paths(skills, target)
        Install->>FS: create/resolve target directory
        Install->>FS: stage each skill via resources.as_file()
        Install->>FS: move staged to destination
        Install-->>CLI: per-skill status (installed/updated)
        CLI-->>User: success output with target path
    end
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~50 minutes

Possibly related PRs

Poem

🐰 Three skills now dance where once was one,
Explore, converge, deliver—well begun!
Packaged as wheels, no git-root to find,
Resources shine with a modular mind.
Smoke tests stand guard at release time's gate,
Browser CLI tasks now ship first-rate! 🚀

🚥 Pre-merge checks | ✅ 1 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Description check ⚠️ Warning The PR description provides a clear summary of changes and validation steps performed, but does not follow the provided template structure with sections like 'Description', 'Type of Change', or 'Checklist'. Reformat the description to follow the repository template: include a 'Description' section with related issues, mark the 'Type of Change' (appears to be multiple: Documentation + New Feature + CI), complete the validation checklist, and confirm architectural boundary alignment.
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (1 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately and specifically summarizes the main changes: adding Browser CLI delivery skills documentation and packaging install-skills assets for distribution.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/browser-cli-delivery-skills

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (5)
skills/browser-cli-delivery/SKILL.md (1)

1-61: Reduce drift risk between duplicated delivery skill docs.

This file and src/browser_cli/packaged_skills/browser-cli-delivery/SKILL.md are effectively parallel sources. Consider generating/copied packaged content from one canonical source and enforcing exact-sync with a guard test.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@skills/browser-cli-delivery/SKILL.md` around lines 1 - 61, The two SKILL.md
files for the browser-cli-delivery skill are duplicated and prone to drift; make
the top-level browser-cli-delivery SKILL.md the canonical source, add a
generation step (e.g., scripts/generate_packaged_skill_docs) that copies or
renders that canonical SKILL.md into the packaged_skills browser-cli-delivery
SKILL.md during build, and add a CI guard test named
test_sync_packaged_skill_docs that compares the generated packaged SKILL.md to
the committed packaged copy and fails the build if they differ.
tests/unit/test_install_skills_command.py (1)

44-54: Add coverage for “skill dir exists but SKILL.md is missing”.

discover_packaged_skills() has a dedicated incomplete-skill error path; adding that test would close a meaningful branch gap in this suite.

Proposed test addition
+def test_discover_packaged_skills_fails_when_skill_doc_is_missing(
+    monkeypatch: pytest.MonkeyPatch, tmp_path: Path
+) -> None:
+    source_root = tmp_path / "source"
+    # Create required dirs, but leave one incomplete (no SKILL.md).
+    _write_skill(source_root, "browser-cli-delivery")
+    _write_skill(source_root, "browser-cli-explore")
+    incomplete = source_root / "browser-cli-converge"
+    incomplete.mkdir(parents=True)
+    monkeypatch.setattr(install_skills_module, "_packaged_skills_root", lambda: source_root)
+
+    with pytest.raises(InvalidInputError, match="browser-cli-converge"):
+        install_skills_module.discover_packaged_skills()
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/unit/test_install_skills_command.py` around lines 44 - 54, Add a new
unit test in tests/unit/test_install_skills_command.py that exercises
discover_packaged_skills()'s incomplete-skill error path by creating a skill
directory (using the existing _write_skill helper or manually creating a folder)
for a skill id (e.g., "browser-cli-incomplete") but intentionally omit the
SKILL.md file, set install_skills_module._packaged_skills_root to that tmp path,
then assert that install_skills_module.discover_packaged_skills() raises
InvalidInputError and that the error message mentions the skill id and the
missing "SKILL.md" so the test covers the "skill dir exists but SKILL.md is
missing" branch.
docs/superpowers/plans/2026-04-14-browser-cli-delivery-skills-implementation-plan.md (1)

563-564: Replace placeholder path with a concrete directory in the command.

Line 563 uses <legacy-skill-dir>, which makes the plan less executable as-is. Prefer an explicit path so the working log is copy/paste runnable.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In
`@docs/superpowers/plans/2026-04-14-browser-cli-delivery-skills-implementation-plan.md`
around lines 563 - 564, Replace the placeholder token "<legacy-skill-dir>" in
the git commands with a concrete directory path so the commands are copy/paste
runnable (e.g., the actual legacy skill directory name used in the repo); update
the two lines shown (the git rm -r <legacy-skill-dir> and subsequent git commit
-m ...) to use that real path and ensure the directory name matches the repo
structure and exists before running the git rm command.
skills/browser-cli-explore/SKILL.md (1)

1-77: Avoid doc drift between repo and packaged skill copies.

This file duplicates the packaged skill doc under src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md. Consider enforcing parity (or generating one from the other) so install-time behavior and repo guidance can’t diverge.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@skills/browser-cli-explore/SKILL.md` around lines 1 - 77, The SKILL.md in
skills/browser-cli-explore is duplicated by
src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md causing doc drift;
fix by choosing a single source of truth and implementing synchronization (e.g.,
generate the packaged SKILL.md from skills/browser-cli-explore/SKILL.md at
build/install time or replace one copy with a symlink), add a CI parity check
that compares these two files (skills/browser-cli-explore/SKILL.md and
src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md) and fail the build
if they differ, and update any relevant packaging scripts to ensure the chosen
approach is enforced.
tests/unit/test_repo_skill_docs.py (1)

29-33: Add explicit guard-expectation assertion alongside AGENTS.md check.

The architecture guard already includes packaged_skills with the correct empty dependency set (line 48 of scripts/guards/architecture.py), and test_guard_scripts.py validates the overall architecture guard passes. However, to prevent future drift and explicitly document the contract, add an assertion in this test that verifies packaged_skills exists in the allowed dependencies with the expected configuration—keeping both the AGENTS.md pointer and the guard expectation locked in the same place.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/unit/test_repo_skill_docs.py` around lines 29 - 33, Update the
test_agents_points_to_browser_cli_delivery_skill test to also assert the
architecture guard expectation for packaged_skills: inside
test_agents_points_to_browser_cli_delivery_skill (and/or a helper it calls) add
an explicit assertion that the guard's allowed dependencies mapping contains a
"packaged_skills" key with the expected configuration (an empty dependency set),
mirroring the entry defined in scripts/guards/architecture.py so the test
documents and locks that contract alongside the existing AGENTS.md pointer;
reference the existing test_guard_scripts.py pattern for how guard expectations
are accessed/validated when implementing the assertion.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In
`@docs/superpowers/plans/2026-04-11-browser-cli-network-response-body-implementation-plan.md`:
- Around line 106-108: The Milestone 7 task currently uses the outdated phrase
"explore-delivery skill references"; update that task text in the plan
(Milestone 7) to use the new split skill names—replace "explore-delivery skill
references" with a phrase that names the three current stacks (e.g., "explore,
delivery, and converge skill references" or "delivery/explore/converge skill
references") so it consistently matches the new folders browser-cli-delivery,
browser-cli-explore, and browser-cli-converge.

In
`@docs/superpowers/plans/2026-04-14-browser-cli-install-skills-implementation-plan.md`:
- Around line 13-42: The plan omitted adding or updating AGENTS.md and the
repository guard expectations for the new top-level package and public CLI
surface; update AGENTS.md to document the new browser_cli package and the public
install-skills --target contract, and modify the guard rules (the repo guard
expectations that validate new top-level packages/CLI surfaces and runtime
contract changes) so they reflect the new packaged skills whitelist and target
behavior before marking the checklist items complete; ensure references to
src/browser_cli, the install_skills command, and the new packaged_skills assets
are included in AGENTS.md and that CI/guard configs (.github/workflows and
whatever guard rules enforce package/CLI surface checks) are updated to fail if
those docs/guards are missing.

In `@docs/superpowers/specs/2026-04-14-browser-cli-delivery-skills-design.md`:
- Line 5: The spec header currently hard-codes an absolute developer path after
the "Repo:" header; replace that absolute workspace path with a portable repo
identifier (e.g., change the header from Repo:
`/home/hongv/workspace/browser-cli` to Repo: `browser-cli`) so the document is
not machine-specific and remains portable across environments.

In `@src/browser_cli/commands/install_skills.py`:
- Around line 84-93: The current _install_one_skill uses
resources.as_file(source) which is not supported on Python 3.10 and removes
destination before staging; change it to use the importlib.resources Traversable
API (e.g., resources.files(source) / .joinpath and iterate over .iterdir()) to
copy the package tree in a Python-3.10-compatible way, and stage the copy to a
temporary sibling directory (create a temp dir next to destination, e.g.,
destination.with_name(destination.name + '.tmp-<unique>') and copy the
Traversable contents into that staged dir), then once the staged dir is fully
populated, atomically swap by removing the old destination and moving/renaming
the staged dir to destination (ensure errors during copy do not delete the
existing destination and clean up the temp sibling on failure); modify the
function _install_one_skill and operations around destination, source, and
staging to implement this flow.

In `@tests/unit/test_release_artifacts.py`:
- Around line 14-17: The test currently selects a wheel via lexicographic sort
of wheels = sorted((_repo_root() / "dist").glob("*.whl")), which can pick an
older file; change selection to sort by file modification time and pick the
newest file instead. Locate the wheels variable and wheel_path assignment in
test_release_artifacts.py and replace the filename-based sorted(...) usage with
a sort/key that uses Path.stat().st_mtime (or use max(...,
key=Path.stat().st_mtime) ) so wheel_path points to the most recently modified
wheel.

---

Nitpick comments:
In
`@docs/superpowers/plans/2026-04-14-browser-cli-delivery-skills-implementation-plan.md`:
- Around line 563-564: Replace the placeholder token "<legacy-skill-dir>" in the
git commands with a concrete directory path so the commands are copy/paste
runnable (e.g., the actual legacy skill directory name used in the repo); update
the two lines shown (the git rm -r <legacy-skill-dir> and subsequent git commit
-m ...) to use that real path and ensure the directory name matches the repo
structure and exists before running the git rm command.

In `@skills/browser-cli-delivery/SKILL.md`:
- Around line 1-61: The two SKILL.md files for the browser-cli-delivery skill
are duplicated and prone to drift; make the top-level browser-cli-delivery
SKILL.md the canonical source, add a generation step (e.g.,
scripts/generate_packaged_skill_docs) that copies or renders that canonical
SKILL.md into the packaged_skills browser-cli-delivery SKILL.md during build,
and add a CI guard test named test_sync_packaged_skill_docs that compares the
generated packaged SKILL.md to the committed packaged copy and fails the build
if they differ.

In `@skills/browser-cli-explore/SKILL.md`:
- Around line 1-77: The SKILL.md in skills/browser-cli-explore is duplicated by
src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md causing doc drift;
fix by choosing a single source of truth and implementing synchronization (e.g.,
generate the packaged SKILL.md from skills/browser-cli-explore/SKILL.md at
build/install time or replace one copy with a symlink), add a CI parity check
that compares these two files (skills/browser-cli-explore/SKILL.md and
src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md) and fail the build
if they differ, and update any relevant packaging scripts to ensure the chosen
approach is enforced.

In `@tests/unit/test_install_skills_command.py`:
- Around line 44-54: Add a new unit test in
tests/unit/test_install_skills_command.py that exercises
discover_packaged_skills()'s incomplete-skill error path by creating a skill
directory (using the existing _write_skill helper or manually creating a folder)
for a skill id (e.g., "browser-cli-incomplete") but intentionally omit the
SKILL.md file, set install_skills_module._packaged_skills_root to that tmp path,
then assert that install_skills_module.discover_packaged_skills() raises
InvalidInputError and that the error message mentions the skill id and the
missing "SKILL.md" so the test covers the "skill dir exists but SKILL.md is
missing" branch.

In `@tests/unit/test_repo_skill_docs.py`:
- Around line 29-33: Update the test_agents_points_to_browser_cli_delivery_skill
test to also assert the architecture guard expectation for packaged_skills:
inside test_agents_points_to_browser_cli_delivery_skill (and/or a helper it
calls) add an explicit assertion that the guard's allowed dependencies mapping
contains a "packaged_skills" key with the expected configuration (an empty
dependency set), mirroring the entry defined in scripts/guards/architecture.py
so the test documents and locks that contract alongside the existing AGENTS.md
pointer; reference the existing test_guard_scripts.py pattern for how guard
expectations are accessed/validated when implementing the assertion.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 0f87aad3-9652-4ea4-a5c9-30096e4c7c57

📥 Commits

Reviewing files that changed from the base of the PR and between 50f575b and d4b6abd.

📒 Files selected for processing (31)
  • .github/workflows/ci.yml
  • .github/workflows/release.yml
  • AGENTS.md
  • docs/superpowers/plans/2026-04-11-browser-cli-network-response-body-implementation-plan.md
  • docs/superpowers/plans/2026-04-13-browser-cli-task-automation-implementation-plan.md
  • docs/superpowers/plans/2026-04-14-browser-cli-delivery-skills-implementation-plan.md
  • docs/superpowers/plans/2026-04-14-browser-cli-install-skills-implementation-plan.md
  • docs/superpowers/specs/2026-04-13-browser-cli-task-automation-design.md
  • docs/superpowers/specs/2026-04-14-browser-cli-delivery-skills-design.md
  • docs/superpowers/specs/2026-04-14-install-skills-design.md
  • pyproject.toml
  • scripts/guards/architecture.py
  • skills/browser-cli-converge/SKILL.md
  • skills/browser-cli-delivery/SKILL.md
  • skills/browser-cli-explore-delivery/SKILL.md
  • skills/browser-cli-explore-delivery/agents/openai.yaml
  • skills/browser-cli-explore-delivery/references/preflight-and-runtime.md
  • skills/browser-cli-explore-delivery/references/task-input-design.md
  • skills/browser-cli-explore-delivery/references/task-modes.md
  • skills/browser-cli-explore/SKILL.md
  • src/browser_cli/cli/main.py
  • src/browser_cli/commands/install_skills.py
  • src/browser_cli/packaged_skills/__init__.py
  • src/browser_cli/packaged_skills/browser-cli-converge/SKILL.md
  • src/browser_cli/packaged_skills/browser-cli-delivery/SKILL.md
  • src/browser_cli/packaged_skills/browser-cli-explore/SKILL.md
  • tests/unit/test_cli.py
  • tests/unit/test_install_skills_command.py
  • tests/unit/test_release_artifacts.py
  • tests/unit/test_repo_metadata.py
  • tests/unit/test_repo_skill_docs.py
💤 Files with no reviewable changes (5)
  • skills/browser-cli-explore-delivery/agents/openai.yaml
  • skills/browser-cli-explore-delivery/references/preflight-and-runtime.md
  • skills/browser-cli-explore-delivery/references/task-input-design.md
  • skills/browser-cli-explore-delivery/SKILL.md
  • skills/browser-cli-explore-delivery/references/task-modes.md

Comment thread docs/superpowers/specs/2026-04-14-browser-cli-delivery-skills-design.md Outdated
Comment thread src/browser_cli/commands/install_skills.py Outdated
Comment thread tests/unit/test_release_artifacts.py Outdated
@xhwSkhizein
Copy link
Copy Markdown
Owner Author

Addressed the still-valid review findings and pushed them to this PR in 01f6164.

Updated items:

  • fixed install-skills to use Python 3.10-compatible Traversable copying with staged sibling install + atomic swap, preserving the old destination on copy failure
  • added install-skills regression coverage for incomplete packaged skills and failed staged copy behavior
  • switched wheel selection in the release artifact test to newest-by-mtime
  • added packaged skill doc sync tooling and a parity test so skills/ stays aligned with src/browser_cli/packaged_skills/
  • updated AGENTS/docs/plan text for the current delivery/explore/converge naming and removed the remaining placeholder/absolute-path issues

Validation on this branch:

  • ./scripts/check.sh

@xhwSkhizein xhwSkhizein merged commit c7f8f7c into main Apr 14, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant