You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/nextjs/content/blog/ai-native-ethereum-stack.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,23 +24,21 @@ We added Cursor rules to Scaffold-ETH 2 as an early way to give agents project c
24
24
25
25
### Skills over scripts
26
26
27
+
We've started stripping out custom skills wherever we find that a model just naturally handles the task better.
28
+
27
29
**/add-extension** Adding a Scaffold-ETH extension used to mean resolving `package.json` conflicts through hundreds of lines of template processing code. We replaced it with `/add-extension`, a simple agent skill built to work across different harnesses. `Node.js` handles the deterministic operations (fetching, copying), while the AI handles the judgment calls (merging).
28
30
29
-
**/pr-create** Same pattern for developer workflow. `/pr-create` is a markdown file that tells an agent how to inspect the diff, format the PR body, and open it via `gh`. No custom script. No alias. Just context.
31
+
**/pr-create** Same pattern for developer workflow. `/pr-create` is a markdown file that tells an agent how to inspect the diff, format the PR body, and open it via `gh`. No custom script, no alias, just context.
30
32
31
-
We've started stripping out custom scripts wherever we find that a model just naturally handles the task better.
33
+
The same pattern extends to Ethereum protocol knowledge. SE-2 now has a library of domain skills: `erc-20`, `erc-721`, `eip-5792`, `cip-712`, `siwe`, `ponder`, `solidity-security`, `defi-protocol-templates`. Each is a focused context file the agent loads before touching that part of the stack. No hunting for docs or hallucinated ABIs. The agent knows the protocol before it writes the first line.
32
34
33
35
### AI-assisted code review
34
36
35
37
Code review is a perfect fit for AI judgment.
36
38
37
39
Take [Grumpy Carlos](https://github.com/technophile-04/grumpy-carlos-personality-fetcher): a Claude Code subagent with a review personality inferred from scraped BuidlGuidl PR history. Drop it in `.claude/agents/`, ask for a review, and it responds exactly the way Carlos would: specific, strict, no vague feedback.
38
40
39
-
---
40
-
41
-
The right context, structured for an AI to use, produces better output than general AI applied to problems without context.
42
-
43
-
Security stays deterministic. Wallet interactions, transaction signing, and key management require hard boundaries. An agent making onchain transactions autonomously is an attack surface. That problem isn't solved yet.
41
+
> Human review is still important, but AI review is a great first pass.
0 commit comments