Scope map
What is in and out of scope, read from the scope note.
Local-first · Solidity & DeFi
Arkheionx turns scope, value flow, protocol behavior, invariants, and local evidence into focused review lanes before report writing.
No RPC. No live-chain scanning. No auto-submit. Human review required.
arkheionx review . --scope-file scope.md The problem
Large Solidity repositories are easy to review randomly.
Arkheionx gives the review a structure before anyone writes a finding: what is in scope, where value moves, which assumptions matter, and what local evidence is still missing.
Workflow
Start from the actual review rules.
Map where assets enter, move, and exit.
Capture the promises the system appears to rely on.
Prioritize where a human should inspect first.
Turn hypotheses into local tests with kill conditions.
Check whether local proof actually supports the claim.
Block weak, out-of-scope, or under-proven candidates.
One command
The review command writes a local review pack with Markdown for humans and JSON for tools.
arkheionx review . --scope-file scope.md --out .arkheionx/review Add a protocol lens for a protocol-aware deep dive:
arkheionx review . --scope-file scope.md --lens fixed-credit-market --out .arkheionx/review Install from source:
curl -fsSL https://arkheionx.dev/install.sh | bash Outputs
What is in and out of scope, read from the scope note.
Where assets enter, move, and exit the system.
How contracts and roles touch each other.
A prioritized order for a human to inspect.
Local test ideas, each with a kill condition.
Behavior promises captured as review context.
The economic conditions expected to hold.
How to grade whether a test proves its task.
A gate for weak or out-of-scope candidates.
A model-agnostic brief for AI-assisted review.
Safety boundary
It helps structure review evidence before a human makes that call. It does not confirm vulnerabilities, and it does not assign final severity.
Review lanes are not findings.
No RPC or live-chain scanning by default.
Candidates need local proof before report writing.
Arkheionx does not submit reports or assign final severity.
arkheionx review . --scope-file scope.md