Skip to content

Commit c3f26cc

Browse files
EpochCoreEpochCore
authored andcommitted
v2.1.0: AWS Bedrock + Security Hub integration, affordable pricing
- Added AWS Bedrock integration (Claude/Titan models) - Added AWS Security Hub findings export - New pricing: Free/$9/$29/$99 (was $29/$199) - AWS Partner discount code: AWS-PARTNER-2026 - Partner ID: S-0084812
1 parent 05c1d75 commit c3f26cc

2 files changed

Lines changed: 57 additions & 10 deletions

File tree

README.md

Lines changed: 39 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -46,7 +46,12 @@ jobs:
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 }}

action.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 'Gödel Code Review'
2-
description: 'AI-powered code review using 52-agent OpusSwarm consensus. Includes cryptographic signatures, Merkle tree validation, and OPA policy compliance. Part of the EpochCore Quantum ecosystem.'
3-
author: 'EpochCore Quantum'
2+
description: 'AI-powered code review with AWS Bedrock + 52-agent OpusSwarm. Exports to AWS Security Hub. Cryptographic signatures, Merkle validation, OPA policies. AWS Partner Verified (S-0084812).'
3+
author: 'EpochCore Quantum - AWS Partner'
44
branding:
55
icon: 'git-pull-request'
66
color: 'purple'
@@ -46,6 +46,22 @@ inputs:
4646
description: 'Swarm review depth: quick, standard, or thorough'
4747
required: false
4848
default: 'standard'
49+
aws-bedrock:
50+
description: 'Use AWS Bedrock for AI review (requires AWS credentials)'
51+
required: false
52+
default: 'false'
53+
aws-bedrock-model:
54+
description: 'Bedrock model: claude-3-sonnet, claude-3-haiku, titan-express'
55+
required: false
56+
default: 'claude-3-haiku'
57+
aws-security-hub:
58+
description: 'Export findings to AWS Security Hub'
59+
required: false
60+
default: 'false'
61+
aws-region:
62+
description: 'AWS region for Bedrock/Security Hub'
63+
required: false
64+
default: 'us-east-1'
4965

5066
outputs:
5167
integrity-score:

0 commit comments

Comments
 (0)