Skip to content

Conversation

@AlexSkrypnyk
Copy link
Member

@AlexSkrypnyk AlexSkrypnyk commented Feb 11, 2026

Summary by CodeRabbit

  • New Features

    • Added comprehensive installer documentation covering architecture, testing, and automation.
  • Documentation

    • Expanded template maintenance guide with detailed scripting standards and conventions.
    • Introduced maintenance overview page with quick navigation to Template, Installer, Documentation, and Release guides.
    • Consolidated scripts and tests guidance into template documentation.
    • Added redirects for legacy documentation links.

@github-project-automation github-project-automation bot moved this to BACKLOG in Vortex Feb 11, 2026
@AlexSkrypnyk AlexSkrypnyk added this to the 1.36.0 milestone Feb 11, 2026
@AlexSkrypnyk AlexSkrypnyk removed their assignment Feb 11, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 11, 2026

Walkthrough

The PR reorganizes maintenance documentation by consolidating script and test guidelines into an expanded template maintenance page, introducing a new installer documentation file, restructuring the contributing sidebar with explicit document ordering, and adding redirects.

Changes

Cohort / File(s) Summary
Maintenance Documentation Content
contributing/maintenance/README.mdx, contributing/maintenance/template.mdx, contributing/maintenance/installer.mdx, contributing/maintenance/release.mdx, contributing/maintenance/documentation.mdx
Reorganized maintenance docs: README now features overview label and topics table; template.mdx expands with consolidated script/testing guidelines; new installer.mdx documents installer architecture and testing; release.mdx and documentation.mdx gain sidebar position metadata.
Deleted Maintenance Page
contributing/maintenance/scripts.mdx
Removed entire scripts documentation file; content consolidated into template.mdx.
Documentation Site Configuration
docusaurus.config.js, sidebars.js
Added client redirects from deprecated /scripts and /tests paths to /template; restructured Contributing sidebar from autogenerated to explicit list with nested autogenerated Maintenance subsection.
Cross-reference Updates
architecture.mdx
Updated link reference from Tests maintenance page to Template maintenance page.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Poem

🐰 A rabbit hops through docs so fine,
Redirecting paths in perfect line,
Templates and installers now aligned,
Scripts consolidated, structure refined,
Sidebars organized, navigation designed! ✨

🚥 Pre-merge checks | ✅ 2 | ❌ 1
❌ Failed checks (1 inconclusive)
Check name Status Explanation Resolution
Title check ❓ Inconclusive The title claims changes split maintenance docs into '3 parts', but the changeset actually reorganizes into multiple sections (Template, Installer, Documentation, Release) with scripts content merged into template—this is a partial representation at best. Consider a more precise title that reflects the actual restructuring, such as 'Reorganize maintenance docs: consolidate scripts into template guide' or similar.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

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

✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feature/update-maintenance-docs

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

Copy link

@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: 2

🤖 Fix all issues with AI agents
In @.vortex/docs/content/contributing/maintenance/installer.mdx:
- Around line 105-110: Change the phrase "a hundred plus installation
permutations" to the hyphenated compound modifier "a hundred-plus installation
permutations" in the sentence that begins "For every test permutation, the
installer initiates a fresh project..." so the compound modifier is correctly
hyphenated.

In @.vortex/docs/content/contributing/maintenance/template.mdx:
- Around line 61-83: Fix typos and wording in the requirements list: change
"early exist" to "early exit" in item 7, normalize "I.e.," occurrences to
"i.e.," for examples (items 13 and 15), change "3-rd" to "3rd" in item 14, and
ensure punctuation and spacing are consistent around code examples (e.g., a
space after commas and before i.e./e.g. where used); update any affected phrases
that reference examples like VORTEX_NOTIFY_REF, command -v curl, info, pass,
VORTEX_ prefix, and VORTEX_NOTIFY_ to match those corrected words.

Comment on lines +105 to +110
For every test permutation, the installer *initiates a fresh project* from the
Vortex template with a specific combination of user selections and runs
assertions against the resulting files. Because a single template change can
affect a hundred plus installation permutations, snapshot testing makes it easy to
**review the impact of a change across all scenarios as diffs** — ensuring that
regressions are caught before they reach consumers.
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Hyphenate the compound modifier “hundred-plus.”
Minor grammar polish.

✅ Proposed fix
- affect a hundred plus installation permutations, snapshot testing makes it easy to
+ affect a hundred-plus installation permutations, snapshot testing makes it easy to
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
For every test permutation, the installer *initiates a fresh project* from the
Vortex template with a specific combination of user selections and runs
assertions against the resulting files. Because a single template change can
affect a hundred plus installation permutations, snapshot testing makes it easy to
**review the impact of a change across all scenarios as diffs** — ensuring that
regressions are caught before they reach consumers.
For every test permutation, the installer *initiates a fresh project* from the
Vortex template with a specific combination of user selections and runs
assertions against the resulting files. Because a single template change can
affect a hundred-plus installation permutations, snapshot testing makes it easy to
**review the impact of a change across all scenarios as diffs** — ensuring that
regressions are caught before they reach consumers.
🧰 Tools
🪛 LanguageTool

[grammar] ~108-~108: Use a hyphen to join words.
Context: ...gle template change can affect a hundred plus installation permutations, snapshot...

(QB_NEW_EN_HYPHEN)

🤖 Prompt for AI Agents
In @.vortex/docs/content/contributing/maintenance/installer.mdx around lines 105
- 110, Change the phrase "a hundred plus installation permutations" to the
hyphenated compound modifier "a hundred-plus installation permutations" in the
sentence that begins "For every test permutation, the installer initiates a
fresh project..." so the compound modifier is correctly hyphenated.

Comment on lines +61 to +83
7. SHOULD include variable values checks with errors and early exist, i.e.:
```shell
[ -z "${VORTEX_NOTIFY_REF}" ] && fail "Missing required value for VORTEX_NOTIFY_REF" && exit 1
```
8. SHOULD include binaries checks if the script relies on them, i.e.:
```shell
command -v curl > /dev/null || ( fail "curl command is not available." && exit 1 )
```
9. MUST contain an `info` message about the start of the script body, e.g.:
```shell
info "Started GitHub notification for operation ${VORTEX_NOTIFY_EVENT}"
```
10. MUST contain an `pass` message about the finish of the script body, e.g.:
```shell
pass "Finished GitHub notification for operation ${VORTEX_NOTIFY_EVENT}"
```
11. MUST use uppercase global variables
12. MUST use lowercase local variables.
13. MUST use long options instead of short options for readability. I.e., `drush cache:rebuild` instead of `drush cr`.
14. MUST use `VORTEX_` prefix for variables, unless it is a known 3-rd party
variable like `PACKAGE_TOKEN` or `COMPOSER`.
15. MUST use script-specific prefix. I.e., for `notify.sh`, the variable to skip
notifications should start with `VORTEX_NOTIFY_`.
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Fix a few typos in the requirements list.
Small wording corrections to avoid reader confusion.

✅ Proposed fix
-7. SHOULD include variable values checks with errors and early exist, i.e.:
+7. SHOULD include variable value checks with errors and early exit, i.e.:

-10. MUST contain an `pass` message about the finish of the script body, e.g.:
+10. MUST contain a `pass` message about the finish of the script body, e.g.:

-14. MUST use `VORTEX_` prefix for variables, unless it is a known 3-rd party
+14. MUST use `VORTEX_` prefix for variables, unless it is a known 3rd-party
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
7. SHOULD include variable values checks with errors and early exist, i.e.:
```shell
[ -z "${VORTEX_NOTIFY_REF}" ] && fail "Missing required value for VORTEX_NOTIFY_REF" && exit 1
```
8. SHOULD include binaries checks if the script relies on them, i.e.:
```shell
command -v curl > /dev/null || ( fail "curl command is not available." && exit 1 )
```
9. MUST contain an `info` message about the start of the script body, e.g.:
```shell
info "Started GitHub notification for operation ${VORTEX_NOTIFY_EVENT}"
```
10. MUST contain an `pass` message about the finish of the script body, e.g.:
```shell
pass "Finished GitHub notification for operation ${VORTEX_NOTIFY_EVENT}"
```
11. MUST use uppercase global variables
12. MUST use lowercase local variables.
13. MUST use long options instead of short options for readability. I.e., `drush cache:rebuild` instead of `drush cr`.
14. MUST use `VORTEX_` prefix for variables, unless it is a known 3-rd party
variable like `PACKAGE_TOKEN` or `COMPOSER`.
15. MUST use script-specific prefix. I.e., for `notify.sh`, the variable to skip
notifications should start with `VORTEX_NOTIFY_`.
7. SHOULD include variable value checks with errors and early exit, i.e.:
🤖 Prompt for AI Agents
In @.vortex/docs/content/contributing/maintenance/template.mdx around lines 61 -
83, Fix typos and wording in the requirements list: change "early exist" to
"early exit" in item 7, normalize "I.e.," occurrences to "i.e.," for examples
(items 13 and 15), change "3-rd" to "3rd" in item 14, and ensure punctuation and
spacing are consistent around code examples (e.g., a space after commas and
before i.e./e.g. where used); update any affected phrases that reference
examples like VORTEX_NOTIFY_REF, command -v curl, info, pass, VORTEX_ prefix,
and VORTEX_NOTIFY_ to match those corrected words.

@github-actions
Copy link

Code Coverage Report:
  2026-02-11 00:31:06

 Summary:
  Classes:  0.00% (0/1)
  Methods:  0.00% (0/2)
  Lines:   94.12% (176/187)

@AlexSkrypnyk
Copy link
Member Author

Code Coverage Report:
  2026-02-11 00:31:34

 Summary:
  Classes:  0.00% (0/1)
  Methods:  0.00% (0/2)
  Lines:   94.12% (176/187)

@AlexSkrypnyk
Copy link
Member Author

Code Coverage Report:
  2026-02-11 00:34:50

 Summary:
  Classes:  0.00% (0/1)
  Methods:  0.00% (0/2)
  Lines:   94.12% (176/187)

@AlexSkrypnyk
Copy link
Member Author

Code Coverage Report:
  2026-02-11 00:35:09

 Summary:
  Classes:  0.00% (0/1)
  Methods:  0.00% (0/2)
  Lines:   94.12% (176/187)

@codecov
Copy link

codecov bot commented Feb 11, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 76.46%. Comparing base (0b084ea) to head (e5bf59e).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2271      +/-   ##
==========================================
- Coverage   77.07%   76.46%   -0.61%     
==========================================
  Files         114      107       -7     
  Lines        5993     5834     -159     
  Branches       44        0      -44     
==========================================
- Hits         4619     4461     -158     
+ Misses       1374     1373       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@AlexSkrypnyk AlexSkrypnyk merged commit 92481f3 into main Feb 11, 2026
28 checks passed
@AlexSkrypnyk AlexSkrypnyk deleted the feature/update-maintenance-docs branch February 11, 2026 00:41
@github-project-automation github-project-automation bot moved this from BACKLOG to Release queue in Vortex Feb 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Release queue

Development

Successfully merging this pull request may close these issues.

1 participant