Skip to content
Closed
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
29 changes: 29 additions & 0 deletions .github/workflows/manki.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Manki Review

on:
pull_request:
types: [opened, synchronize]
issue_comment:
types: [created, edited]
pull_request_review:
types: [submitted]

permissions:
contents: read
pull-requests: write
issues: write
id-token: write

concurrency:
group: manki-${{ github.event_name }}-${{ github.event.pull_request.number || github.event.issue.number || github.run_id }}
cancel-in-progress: false

jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: manki-review/manki@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
18 changes: 18 additions & 0 deletions .manki.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Manki — AI Code Review Configuration
# https://github.com/manki-review/manki

auto_review: true
auto_approve: true

exclude_paths:
- "*.lock"
- "fuzz/**"

instructions: |
This is a Rust implementation of the Dash cryptocurrency protocol.
Pay special attention to:
- Consensus-critical code paths — changes here can cause chain splits
- FFI safety for C/Swift bindings in dash-spv-* crates
- Proper error handling — prefer Result over unwrap/expect in library code
- DIP (Dash Improvement Proposal) compliance for protocol changes
- Memory safety in hash/crypto implementations
Loading