@@ -29,10 +29,10 @@ jobs:
2929 - uses : actions/checkout@v4
3030
3131 - name : Gödel Code Review
32- uses : epochcoreqcs/godel-code-review @v2
32+ uses : Jvryan92/integrity-gate-action @v2
3333 with :
3434 swarm-review : ' true'
35- swarm-agents : ' 8'
35+ swarm-agents : ' 8' # Free tier - 8 agents
3636` ` `
3737
3838## Inputs
4646| `signature-verify` | Enable signature verification | `true` |
4747| `merkle-validate` | Enable Merkle tree validation | `true` |
4848| `fail-on-warning` | Fail on warnings | `false` |
49- | `license-key` | Pro/Enterprise license key | `''` |
49+ | `license-key` | Team/Business/Enterprise license key | `''` |
50+ | **AWS Options** | | |
51+ | `aws-bedrock` | Use AWS Bedrock for AI review | `false` |
52+ | `aws-bedrock-model` | `claude-3-sonnet`, `claude-3-haiku`, `titan-express` | `claude-3-haiku` |
53+ | `aws-security-hub` | Export findings to Security Hub | `false` |
54+ | `aws-region` | AWS region | `us-east-1` |
5055
5156# # Outputs
5257
@@ -116,19 +121,45 @@ Errors: 0
116121
117122| Tier | Agents | Features | Price |
118123|------|--------|----------|-------|
119- | **Community** | 8 | Basic review, local fallback | Free |
120- | **Pro** | 26 | Full swarm, priority API | $29/mo |
121- | **Enterprise** | 52 | All agents, SLA, custom policies | $199/mo |
124+ | **Open Source** | 8 | Basic review, local fallback | **Free forever** |
125+ | **Team** | 16 | Full swarm, AWS Bedrock integration | **$9/mo** |
126+ | **Business** | 32 | Priority API, Security Hub export | **$29/mo** |
127+ | **Enterprise** | 52 | All agents, SLA, custom policies | **$99/mo** |
128+
129+ > 💡 **AWS Partner Discount**: 20% off with active AWS account - use code `AWS-PARTNER-2026`
130+
131+ ### AWS Integration
132+ - ✅ **AWS Bedrock** - Claude/Titan model support for AI review
133+ - ✅ **AWS Security Hub** - Export findings automatically
134+ - ✅ **AWS CodePipeline** - Native integration
135+ - ✅ **AWS CodeGuru** - Complementary analysis
136+ - ✅ **AWS Partner Network** - Verified ISV Partner (S-0084812)
122137
123138## Advanced Usage
124139
140+ ### AWS Bedrock + Security Hub Integration
141+
142+ ```yaml
143+ - uses: Jvryan92/integrity-gate-action@v2
144+ with:
145+ swarm-review: 'true'
146+ swarm-agents: '16'
147+ aws-bedrock: 'true'
148+ aws-bedrock-model: 'claude-3-haiku'
149+ aws-security-hub: 'true'
150+ aws-region: 'us-east-1'
151+ env:
152+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
153+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
154+ ```
155+
125156### Deep Security Scan
126157
127158``` yaml
128- - uses: epochcoreqcs/godel-code-review @v2
159+ - uses : Jvryan92/integrity-gate-action @v2
129160 with :
130161 mode : ' deep'
131- swarm-agents: '26 '
162+ swarm-agents : ' 32 '
132163 review-depth : ' thorough'
133164 fail-on-warning : ' true'
134165 license-key : ${{ secrets.EPOCHCORE_LICENSE }}
0 commit comments