# Sentrik [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/maxgerhardson/sentrik-community  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/sentrik

## Description
Governance runtime for AI-generated code. Enforce compliance and security standards.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `uvx` (confidence: high):

```json
"mcpServers": {
  "sentrik": {
    "command": "uvx",
    "args": ["sentrik"]
  }
}
```

## Documentation & README

<p align="center">
  <h1 align="center">Sentrik</h1>
  <p align="center"><strong>Governance runtime for AI-generated code</strong></p>
  <p align="center">Scan, gate, and trace compliance automatically — before it ships.</p>
</p>

<p align="center">
  <a href="https://sentrik.dev">Website</a> &bull;
  <a href="https://docs.sentrik.dev">Docs</a> &bull;
  <a href="https://github.com/maxgerhardson/sentrik-community/discussions">Community</a> &bull;
  <a href="https://sentrik.dev/pricing">Pricing</a>
</p>

---

## What is Sentrik?

Sentrik is a CLI + dashboard that enforces coding standards, compliance rules, and security policies on every commit. Built for teams using AI coding agents (Claude Code, Cursor, Copilot) where code is generated faster than humans can review it.

**The problem:** AI agents write code that *works* but may violate security policies, compliance requirements, or architectural standards. Nobody catches it until audit time.

**The solution:** Sentrik scans every change against regulatory standards (OWASP, SOC 2, HIPAA, PCI-DSS, FDA IEC 62304, and more), gates PRs that fail, and generates audit-ready evidence.

## Install

```bash
pip install sentrik
```

Installing gives you the free tier immediately — 6 standards packs, 193 rules, no license key or sign-up. Paid tiers are activated with a license key from [hello@sentrik.dev](mailto:hello@sentrik.dev).

## Quick Start

```bash
# 1. Initialize your project (auto-detects language, frameworks, CI)
sentrik init

# 2. Scan your code
sentrik scan

# 3. Enforce the gate in CI (exit 1 on failure)
sentrik gate

# 4. Launch the dashboard
sentrik dashboard
```

## Free Tier (forever, no credit card)

Sentrik includes **6 standards packs** with **193 rules** for free:

| Pack | Rules | What it catches |
|------|-------|-----------------|
| **OWASP Top 10** | 69 | SQL injection, XSS, auth flaws, SSRF, and more |
| **SOC 2** | 30 | Trust services criteria for security & availability |
| **Python Security** | 18 | eval/exec, pickle, subprocess, Django/Flask vulns |
| **Go Security** | 15 | Injection, crypto misuse, unsafe, concurrency bugs |
| **Supply Chain Security** | 26 | SLSA, SBOM, dependency integrity, AI tool supply chain |
| **C/C++ Coding Standards** | 35 | Modern C/C++ safety and security practices |

Plus built-in commands at every tier:
- `sentrik scan` / `sentrik gate` - Scan and enforce
- `sentrik vulns` - Dependency vulnerability scanning (CVEs)
- `sentrik sbom` - Software bill of materials
- `sentrik secrets` - Hardcoded secrets detection
- `sentrik dashboard` - Web UI with findings, charts, and reports
- `sentrik threat-model` - STRIDE threat analysis
- `sentrik quality-score` - Code quality scoring (0-100)

## Paid Tiers

| | Free | Team | Organization |
|---|---|---|---|
| Standards packs | 6 (193 rules) | 18 (475 rules) | 24 (595 rules) |
| OWASP, SOC 2, Supply Chain, C/C++ | Yes | Yes | Yes |
| HIPAA, PCI-DSS, ISO 27001, GDPR | - | Yes | Yes |
| FDA IEC 62304, NIST, CMMC, Cloud IaC | - | Yes | Yes |
| MISRA-C, DO-178C, ISO 26262 | - | - | Yes |
| Vulnerability scanning | Yes | Yes | Yes |
| Dashboard | Yes | Yes | Yes |
| Work item reconciliation | - | Yes | Yes |
| Custom rule packs | 5 | 25 | 100 |
| Parallel scanning | - | - | Yes |
| Governance & audit log | - | - | Yes |

Paid tiers are available by contacting [hello@sentrik.dev](mailto:hello@sentrik.dev) — see [sentrik.dev/pricing](https://sentrik.dev/pricing).

## CI/CD Integration

### GitHub Actions (Marketplace)

```yaml
# .github/workflows/sentrik.yml
name: Sentrik Gate
on: [pull_request]
jobs:
  gate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - uses: maxgerhardson/sentrik-community@v1
```

That's it — one line. The action auto-detects PR context, runs the gate, uploads SARIF to GitHub Code Scanning, and attaches the findings report as an artifact.

**With options:**

```yaml
      - uses: maxgerhardson/sentrik-community@v1
        with:
          packs: "owasp-top-10,soc2,supply-chain-security"
          fail-on: "critical,high"
          license-key: ${{ secrets.SENTRIK_LICENSE_KEY }}
```

**Using outputs:**

```yaml
      - uses: maxgerhardson/sentrik-community@v1
        id: sentrik
      - run: echo "Found ${{ steps.sentrik.outputs.findings-count }} findings"
        if: always()
```

### GitLab CI

```yaml
sentrik:
  image: maxgerhardson/sentrik:latest
  script:
    - sentrik gate --git-range "origin/main...HEAD"
  rules:
    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
```

### Azure Pipelines

```yaml
- script: |
    pip install sentrik
    sentrik gate --git-range "origin/main...HEAD"
  displayName: Sentrik Gate
```

## AI Agent Integration

Sentrik works as an MCP server for AI coding agents:

```bash
# Start MCP server for Claude Code, Cursor, VS Code
sentrik mcp-server
```

The MCP server gives AI agents real-time access to compliance rules, scan results, and remediation guidance — so they write compliant code from the start.

## Example Configurations

### Starter (web app)

```yaml
# .sentrik/config.yaml
standards_packs:
  - owasp-top-10
  - supply-chain-security
gate:
  fail_on:
    - critical
    - high
```

### Healthcare / Medical Device

```yaml
standards_packs:
  - owasp-top-10
  - hipaa
  - fda-iec-62304
  - supply-chain-security
gate:
  fail_on:
    - critical
    - high
    - medium
```

### Fintech

```yaml
standards_packs:
  - owasp-top-10
  - pci-dss
  - soc2
  - supply-chain-security
gate:
  fail_on:
    - critical
    - high
```

### Government / Defense

```yaml
standards_packs:
  - owasp-top-10
  - nist-800-53
  - cmmc
  - supply-chain-security
gate:
  fail_on:
    - critical
    - high
    - medium
```

## Community

- **[Discussions](https://github.com/maxgerhardson/sentrik-community/discussions)** - Ask questions, share tips, show what you've built
- **[Issues](https://github.com/maxgerhardson/sentrik-community/issues/new/choose)** - Report bugs or request features
- **[Documentation](https://docs.sentrik.dev)** - Full CLI reference, configuration guide, API docs

## Support

| Channel | For |
|---------|-----|
| [GitHub Discussions](https://github.com/maxgerhardson/sentrik-community/discussions) | Questions, ideas, community help |
| support@sentrik.dev | Direct support (paid tiers) |
| sales@sentrik.dev | Pricing and licensing |

## License

Proprietary. Free tier available forever with no credit card required.

