Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
698dad7
feat(ai_commit_review): adds agentic commit review hook
MattDonnellySoftrams Nov 4, 2025
1ead072
docs(opencode): adding documentation on using opencode and created ag…
MattDonnellySoftrams Nov 4, 2025
b4b5a19
fix(opencode): incorporating prompt from pr review agent
MattDonnellySoftrams Nov 4, 2025
12cbfbe
fix(opencode): adjusting hook location
MattDonnellySoftrams Nov 4, 2025
5be0090
fix(opencode): adjusting hook location
MattDonnellySoftrams Nov 4, 2025
c9e1326
adding pre-push instructions
MattDonnellySoftrams Nov 14, 2025
d8d9d4b
preparing for merge with origin repo
MattDonnellySoftrams Nov 14, 2025
26dd719
improving readme and ai commit review output
MattDonnellySoftrams Nov 14, 2025
b5df7df
Merge branch 'main' into agentic-commit-review
JoshuaSeidel Nov 18, 2025
f17ede3
Adding Bedrock support and setting AI hook to opt-in
MattDonnellySoftrams Dec 1, 2025
f5f54c2
adding internal opencode config file for forced universal configuration
MattDonnellySoftrams Dec 1, 2025
76d033d
adding temp opencode config file
MattDonnellySoftrams Dec 1, 2025
18328ef
setting model and provider ids
MattDonnellySoftrams Dec 1, 2025
3b1f07a
going back to file config in repo
MattDonnellySoftrams Dec 1, 2025
436e82b
Update README.md
MattDonnellySoftrams Dec 1, 2025
2cc6791
using only examples config file
MattDonnellySoftrams Dec 1, 2025
7cf638d
docs(ai): fixing install docs
MattDonnellySoftrams Dec 12, 2025
185a812
fixing docs and bedrock integration
MattDonnellySoftrams Dec 12, 2025
dcf819f
another fix
MattDonnellySoftrams Dec 12, 2025
2dbc30d
fixing documentation, bedrock guide
MattDonnellySoftrams Dec 12, 2025
e10b775
setting copilot to default
MattDonnellySoftrams Dec 12, 2025
ce48e7d
adding xai to blcoked providers
MattDonnellySoftrams Dec 12, 2025
5d6f459
fixing fail closed instead of fail open, requires ai signoff
MattDonnellySoftrams Dec 12, 2025
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
13 changes: 13 additions & 0 deletions .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,19 @@
files: \.(yaml|yml|json)$
require_serial: false

# =============================================================================
# AI-POWERED VALIDATION HOOKS
# =============================================================================

- id: ai_commit_check
name: AI-powered commit validation
entry: ai_commit_check
language: python
pass_filenames: false
stages: [manual]
require_serial: true
additional_dependencies: ['opencode-ai>=0.1.0a36', 'rich>=13.7.0']

# =============================================================================
# SECURITY SCANNING HOOKS
# =============================================================================
Expand Down
Loading