Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "deployshield",
"description": "Production safety guardrails for Claude Code",
"owner": {
"name": "Matan Ryngler",
"url": "https://github.com/matanryngler"
},
"plugins": [
{
"name": "deployshield",
"description": "Production safety guardrails that block write/mutating operations on cloud, database, IaC, and deployment CLIs.",
"version": "1.1.0",
"source": "./",
"author": {
"name": "Matan Ryngler",
"url": "https://github.com/matanryngler"
}
}
]
}
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,16 @@ DeployShield uses a quote-aware parser that correctly handles:

## Installation

### As a plugin directory
### Via Plugin Marketplace (recommended)

Register the marketplace and install:

```bash
claude --plugin-dir /path/to/deployshield
claude plugin marketplace add matanryngler/deployshield
claude plugin install deployshield@deployshield
```

### In your project

Clone or copy into your project and reference it:
### Manual

```bash
git clone https://github.com/matanryngler/deployshield.git
Expand All @@ -90,13 +91,12 @@ claude --plugin-dir ./deployshield

### Verify it's working

Launch with debug mode to confirm hooks are registered:
Start a new Claude Code session and try a write command — it should be blocked:

```bash
claude --plugin-dir /path/to/deployshield --debug
```

You should see DeployShield's SessionStart hook fire, and any write commands will be blocked with a clear message.
> kubectl delete pod my-pod
# => Blocked: kubectl 'delete' is not in the safe-list for kubernetes
```

## Project Structure

Expand Down
5 changes: 5 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".claude-plugin/marketplace.json",
"jsonpath": "$.plugins[0].version"
}
]
}
Expand Down
Loading