Skip to content

Conversation

@aaguiarz
Copy link
Member

@aaguiarz aaguiarz commented Jul 30, 2025

Description

What problem is being solved?

How is it being solved?

What changes are made to solve it?

References

Review Checklist

  • I have clicked on "allow edits by maintainers".
  • I have added documentation for new/changed functionality in this PR or in a PR to openfga.dev [Provide a link to any relevant PRs in the references section above]
  • The correct base branch is being used, if not main
  • I have added tests to validate that the change in functionality is working as expected

Summary by CodeRabbit

  • Documentation
    • Added a comprehensive guide for authoring OpenFGA authorization models, including explanations of core concepts, modeling language, best practices, testing, and role management.

@aaguiarz aaguiarz requested review from a team as code owners July 30, 2025 04:01
@coderabbitai
Copy link

coderabbitai bot commented Jul 30, 2025

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

A new documentation file, .github/copilot-instructions.md, has been added. This file provides a comprehensive guide for authoring OpenFGA authorization models, covering core concepts, modeling language, best practices, testing, role modeling, migration strategies, and model simplification. No code or public entity declarations are introduced or modified.

Changes

Cohort / File(s) Change Summary
Documentation: OpenFGA Authorization Guide
.github/copilot-instructions.md
Added a detailed instructional document on authoring, testing, and maintaining OpenFGA authorization models.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feat/copilot-instructions

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
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

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: 1

🧹 Nitpick comments (6)
.github/copilot-instructions.md (6)

13-14: Remove dangling foot-note markers (1, 3, 5, 10, …) or provide the referenced foot-notes

The superscript numbers appear throughout the document but no foot-note section is defined. They distract the reader and break markdown rendering for some engines.
Either define a proper “References” section or delete the markers.


74-76: Specify the language on all fenced code blocks

markdownlint (rule MD040) flags these blocks because no language is declared. Adding the language improves syntax highlighting in IDEs and in GitHub’s rendered view.

-```             # Lines 74, 94
+```dsl.openfga  # OpenFGA DSL-```             # Lines 82
+```json         # JSON tuple example-```             # Lines 104, 117, 129
+```dsl.openfga

Also applies to: 82-84, 94-96, 104-106, 117-121, 129-131


145-145: Trim trailing space inside inline code

Inline code `define admin: [user] or repo_admin from owner ` ends with a space, triggering markdownlint rule MD038.

-`define admin: [user] or repo_admin from owner `
+`define admin: [user] or repo_admin from owner`

224-228: Fix spelling and minor grammar in heading §6

-## **6. Adding permissions
-It's a common pratice to define specific permissions, that can't be directly assigned, using `can_<permission>` relations, for example:
+## **6. Adding Permissions**
+It’s a common practice to define specific permissions that can’t be directly assigned, using `can_<permission>` relations. For example:

254-255: Complete the truncated word “export”

-* Managing OpenFGA stores, encompassing operations such as creation, listing, retrieval, deletion, import, and expor
+* Managing OpenFGA stores, encompassing operations such as creation, listing, retrieval, deletion, import, and export

558-560: Consolidate duplicate testing sections (§7 and §9)

There are two separate sections (“7. Testing and Validating …” and “9. Testing Models”) that cover the same topic. Merging them will avoid repetition and keep the guide succinct.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 43a35c5 and b22d612.

📒 Files selected for processing (1)
  • .github/copilot-instructions.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
.github/copilot-instructions.md

[style] ~37-~37: To form a complete sentence, be sure to include a subject or ‘there’.
Context: ...ntity that can be related to an object. Can be a specific object, a wildcard, or a ...

(MISSING_IT_THERE)


[grammar] ~226-~226: Ensure spelling is correct
Context: ... **6. Adding permissions It's a common pratice to define specific permissions, that ca...

(QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1)

🪛 markdownlint-cli2 (0.17.2)
.github/copilot-instructions.md

74-74: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


82-82: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


94-94: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


104-104: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


117-117: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


129-129: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


145-145: Spaces inside code span elements

(MD038, no-space-in-code)

aaguiarz and others added 14 commits July 30, 2025 09:25
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Fixed minor issues and added instructions to install the CLI
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
Co-authored-by: Raghd Hamzeh <raghd.hamzeh@openfga.dev>
@aaguiarz aaguiarz requested review from dyeam0 and tylernix July 30, 2025 21:14
tylernix
tylernix previously approved these changes Jul 30, 2025
@aaguiarz aaguiarz merged commit 32cfe65 into main Jul 30, 2025
7 checks passed
@aaguiarz aaguiarz deleted the feat/copilot-instructions branch July 30, 2025 22:26
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.

4 participants