원클릭으로
phase-status
Show current implementation phase status, test counts per app, and next steps for ex_ethclient development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show current implementation phase status, test counts per app, and next steps for ex_ethclient development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | phase-status |
| description | Show current implementation phase status, test counts per app, and next steps for ex_ethclient development. |
| user-invocable | true |
| allowed-tools | Bash, Glob, Grep, Read |
Generate a comprehensive status report of ex_ethclient development progress.
mix test from the project root and capture the output to get total test countsapps/<app>/test/**/*_test.exs@moduledoc)mix compile --warnings-as-errors 2>&1mix credo --strict --format oneline 2>&1 | tail -5# ex_ethclient Phase Status Report
## Test Summary
Total: X tests, Y failures
## App Status
| App | Status | Tests | Notes |
|-----|--------|-------|-------|
| eth_core | PRODUCTION | XX | All 5 tx types, RLP, signing |
| ... | ... | ... | ... |
## Phase Roadmap
- [x] Phase 1: Core Types & Signing
- [x] Phase 3: Networking (DiscV4, RLPx, eth/68)
- [ ] Phase 2: Storage (RocksDB NIF, MPT)
- [ ] Phase 2.5: EVM (revm NIF)
- [ ] Phase 3.5: Chain (block validation, state transitions)
- [ ] Phase 4: RPC (JSON-RPC, Engine API)
- [ ] Phase 5: Sync
## Next Steps
<List the 3-5 most important next tasks>
Compare ex_ethclient output with reference Ethereum implementations (geth, reth, ethrex) for the same input.
Fetch and summarize an Ethereum Improvement Proposal by number. Use when implementing protocol features or researching EIP specifications.
Run Ethereum official test fixtures (state tests, blockchain tests, MPT tests) against ex_ethclient modules.
Generate Rustler NIF boilerplate for a new native module. Creates Cargo.toml, lib.rs, and Elixir wrapper module.