Quickstart =============================================================================== Installation ------------------------------------------------------------------------------- Add the ByteCode Solutions marketplace, then install the plugin: .. code-block:: bash claude plugin marketplace add https://gitlab.com/bytecode-solutions/core/core-claude.git claude plugin install core-claude To update to the latest version: .. code-block:: bash claude plugin update core-claude@bytecode-solutions To uninstall: .. code-block:: bash claude plugin uninstall core-claude@bytecode-solutions After installing, add the declarative deny rules to each project's ``.claude/settings.json``: .. code-block:: 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.