Quickstart#

Installation#

Add the ByteCode Solutions marketplace, then install the plugin:

claude plugin marketplace add https://gitlab.com/bytecode-solutions/core/core-claude.git
claude plugin install core-claude

To update to the latest version:

claude plugin update core-claude@bytecode-solutions

To uninstall:

claude plugin uninstall core-claude@bytecode-solutions

After installing, add the declarative deny rules to each project’s .claude/settings.json:

{
  "permissions": {
    "deny": [
      "Read(**/.env*)",
      "Grep(**/.env*)",
      "Bash(cat */.env*)",
      "Bash(cat .env*)"
    ]
  }
}

Note

This step is required for every project. The plugin hook alone is not sufficient, permissions.deny cannot be distributed via a plugin and must be applied manually.