Skip to content

Update review-ready changes#22

Open
syntaxwanderer wants to merge 4 commits intomasterfrom
develop
Open

Update review-ready changes#22
syntaxwanderer wants to merge 4 commits intomasterfrom
develop

Conversation

@syntaxwanderer
Copy link
Copy Markdown
Member

@syntaxwanderer syntaxwanderer commented Apr 30, 2026

Summary

  • Review-ready branch develop targeting master
  • 3 commit(s) ahead, 10 changed file(s)

Changes

  • Document documentation
  • Refactor documentation, Application, and related areas
  • Document documentation

Checks

  • No repo-defined automated checks were found

What to Review

  • docs/AI_BEST_PRACTICES.md
  • docs/MODULE_STRUCTURE.md
  • docs/en
  • docs/workspace
  • src/Application
  • tests/Integration

What to Verify

  • Smoke-check the main behavior changed by this branch
  • Watch logs or console output for regressions in touched paths

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 30, 2026

Warning

Rate limit exceeded

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

To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing.

⌛ 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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 80b1eff6-5fe2-4027-b792-56563dbb7bf7

📥 Commits

Reviewing files that changed from the base of the PR and between e332afd and 7fb7c9b.

📒 Files selected for processing (20)
  • docs/AI_BEST_PRACTICES.md
  • docs/MINIMAL_PAGE.md
  • docs/MODULE_STRUCTURE.md
  • docs/en/cli/describe-commands.md
  • docs/en/cli/runtime-maintenance.md
  • docs/workspace/ADR_MODULE_STRUCTURE_CLEANUP.md
  • docs/workspace/DI_ONE_WAY.md
  • src/Application/Console/Command/DocsGetCommand.php
  • src/Application/Console/Command/DocsListCommand.php
  • src/Application/Console/Command/DocsShowSectionCommand.php
  • src/Application/Service/DocumentHtmlRenderer.php
  • src/Application/Service/DocumentManifestBuilder.php
  • src/Application/Service/FileDocumentRepository.php
  • src/Domain/Model/DocumentId.php
  • src/Domain/Model/DocumentManifestItem.php
  • src/Domain/Model/DocumentMetadata.php
  • src/Domain/Model/RenderedDocument.php
  • src/Domain/Model/ResolvedDocument.php
  • tests/Integration/DocsGetCommandTest.php
  • tests/Integration/DocsListAndShowSectionCommandTest.php
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch develop

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
Review rate limit: 0/1 reviews remaining, refill in 59 minutes and 52 seconds.

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

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 4e46206b45

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread docs/AI_BEST_PRACTICES.md
Comment on lines +209 to +210
| App module | `src/modules/{Module}/Application/Command/{Name}Command.php` | `Semitexa\Modules\{Module}\Application\Command` |
| Package | `packages/semitexa-{pkg}/src/Console/Command/{Name}Command.php` | `Semitexa\{Pkg}\Console\Command` |
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Correct canonical command paths in best-practices table

The new “Console command placement” table documents src/modules/{Module}/Application/Command/... and packages/semitexa-{pkg}/src/Console/Command/..., but the canonical spec in docs/MODULE_STRUCTURE.md requires Application/Console/Command/ for both app modules and packages (see its rules around module_structure.command_wrong_location). Following this new guidance will cause contributors to place commands in paths that fail ai:verify/structure checks and contradict the command move done in this same commit.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 645b165843

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread docs/MODULE_STRUCTURE.md

Package root may contain package metadata/config files such as `LICENSE`, `README.md`, `CHANGELOG.md`, `phpunit.xml`, `phpunit.xml.dist`, `phpstan.neon`, `.gitignore`, Docker/install files, and package tooling directories such as `tests/`, `docs/`, `bin/`, `resources/`, `tools/`, `public/`, `.github/`, and `var/`.

Package `src/` follows the **same strict allowlist** as an application module's root. The only top-level directories permitted at `packages/semitexa-{name}/src/` are the canonical layers from § 2 (`Application`, `Domain`, `Context`, `Configuration`, `Update`, `Static`, `View`) plus `Attributes/` (package-only). There is no special "package source is package-specific" exemption — historical drift such as `Auth/`, `Discovery/`, `OpenApi/`, `Pipeline/`, `Transport/` at the package source root is rejected with `module_structure.unknown_directory`. Move such code into the appropriate canonical sub-tree (typically `Application/Service/`, `Domain/Service/`, or `Domain/Contract/`).
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Align package layer list with canonical tree

This line declares Update, Static, and View as top-level directories under packages/semitexa-{name}/src/, but the same spec’s canonical tree in §2 places them under Application/ (e.g., Application/Update, Application/Static, Application/View). Because this file is marked authoritative for ai:verify, the contradiction will mislead contributors into placing files in paths that violate the validator depending on which section they follow.

Useful? React with 👍 / 👎.

@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.
To continue using code reviews, you can upgrade your account or add credits to your account and enable them for code reviews in your settings.

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