A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Regal is a linter and language server for Rego, bringing your policy development experience to the next level!
Regal is a linter, debugger and language server for Rego, making your Rego magnificent, and you the ruler of rules!
With its extensive set of linter rules, documentation and editor integrations, Regal is the perfect companion for policy development, whether you're an experienced Rego developer or just starting out.

regal
adj : of notable excellence or magnificence : splendid
I really like that at each release of Regal I learn something new! Of all the linters I'm exposed to, Regal is probably the most instructive one.
— Leonardo Taccari, NetBSD
Reviewing the Regal rules documentation. Pure gold.
— Dima Korolev, Miro
Such an awesome project!
— Shawn McGuire, Atlassian
I am really impressed with Regal. It has helped me write more expressive and deterministic Rego.
— Jimmy Ray, Boeing
See the adopters file for more Regal users.
# macOS
brew install regal
# linux x86
curl -L -o regal https://github.com/open-policy-agent/regal/releases/latest/download/regal_Linux_x86_64
chmod 755 ./regal
# windows
Invoke-WebRequest -Uri "https://github.com/open-policy-agent/regal/releases/latest/download/regal_Windows_x86_64.exe" -OutFile "regal.exe"
Manual installation commands:
MacOS (Apple Silicon)
curl -L -o regal "https://github.com/open-policy-agent/regal/releases/latest/download/regal_Darwin_arm64"
MacOS (x86_64)
curl -L -o regal "https://github.com/open-policy-agent/regal/releases/latest/download/regal_Darwin_x86_64"
Linux (arm64)
curl -L -o regal "https://github.com/open-policy-agent/regal/releases/latest/download/regal_Linux_arm64"
chmod 755 ./regal
Docker
docker pull ghcr.io/open-policy-agent/regal:latest
Please see Packages for a list of package repositories which distribute Regal.
See all versions, and checksum files, at the Regal releases page, and published Docker images at the packages page.
First, author some Rego!
package authz
default allow = false
allow if {
isEmployee
"developer" in input.user.roles
}
isEmployee if regex.match("@acmecorp\\.com$", input.user.email)
Next, run regal lint pointed at one or more files or directories to have them linted.
regal lint policy/
Rule: non-raw-regex-pattern
Description: Use raw strings for regex patterns
Category: idiomatic
Location: policy/authz.rego:12:27
Text: isEmployee if regex.match("@acmecorp\\.com$", input.user.email)
Documentation: https://www.openpolicyagent.org/projects/regal/rules/idiomatic/non-raw-regex-pattern
Rule: use-assignment-operator
Description: Prefer := over = for assignment
Category: style
Location: policy/authz.rego:5:1
Text: default allow = false
Documentation: https://www.openpolicyagent.org/projects/regal/rules/style/use-assignment-operator
Rule: prefer-snake-case
Description: Prefer snake_case for names
Category: style
Location: policy/authz.rego:12:1
Text: isEmployee if regex.match("@acmecorp\\.com$", input.user.email)
Documentation: https://www.openpolicyagent.org/projects/regal/rules/style/prefer-snake-case
1 file linted. 3 violations found.
Note If you're running Regal on an existing policy library, you may want to disable the
stylecategory initially, as it will likely generate a lot of violations. You can do this by passing the--disable-category styleflag toregal lint.
Linting from the command line is a great way to get started with Regal, and even for some experienced developers the preferred way to work with the linter. However, not only is Regal a linter, but a full-fledged development companion for Rego development!
Integrating Regal in your favorite editor means you'll get immediate feedback from the linter as you work on your policies. More than that, it'll unlock a whole new set of features that leverage Regal's language server, like context-aware completion suggestions, informative tooltips on hover, or go-to-definition.
Elevate your policy development experience with Regal in VS Code, Neovim, Zed, Helix and more on our Editor Support page!
To learn more about the features provided by the Regal language server, see the Language Server page.
To ensure Regal's rules are enforced consistently in your project or organization, we've made it easy to run Regal as part of your builds. See the docs on Using Regal in your build pipeline to learn more about how to set up Regal to lint your policies on every commit or pull request.
Now that you're up and running with Regal, take a look around some of our documentation to get a feel for the different features and capabilities of Regal.
Please see Regal's Documentation Site for the canonical documentation of Regal.
Contributing contains information about how to hack on Regal itself.

Regal is currently in beta. End-users should not expect any drastic changes, but any API may change without notice. If you want to embed Regal in another project or product, please reach out!
The current Roadmap items are all related to the preparation for Regal 1.0:
If there's something you'd like to have added to the roadmap, either open an issue, or reach out in the community Slack!
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
English-first Korean equity intelligence MCP — DART filings, foreign-holder 5%-rule flows, activist filings, KRX news. F
Unity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control sc