Conversation
|
The latest Buf updates on your PR. Results from workflow Buf / buf (pull_request).
|
|
Only question (discussing with other folks) is if we want this in a Agents.md vs cursor rules (so that it’s ai tool independent - cursor, Claude code, codex etc) |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3013 +/- ##
=======================================
Coverage 58.40% 58.40%
=======================================
Files 2110 2110
Lines 175009 175009
=======================================
Hits 102213 102213
Misses 63767 63767
Partials 9029 9029
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
masih
left a comment
There was a problem hiding this comment.
My recommendation is to:
- Use
AGENTS.mdinstead. - Have one in root of the repo.
- Have specialised MD files in each corresponding root package. then mention them in root.
evmrpc/RPC.md
Outdated
| @@ -0,0 +1,21 @@ | |||
| --- | |||
| globs: ["evmrpc/**"] | |||
There was a problem hiding this comment.
Name this file (annd EVM.md) AGENTS.md? similar to all other files in package level.
Essentially, the file name AGENTS.md in any hierarchy captures the agentic context, where the hierarchy makes it progressively specialised to the context itself.
AGENTS.md
Outdated
| # EVM | ||
| For context about EVM on Sei, refer to `x/evm/EVM.md`. | ||
|
|
||
| # EVM RPC | ||
| For EVM RPC specs, refer to `evmrpc/RPC.md`. |
There was a problem hiding this comment.
The beauty of convention means less explicit config needed; which fits the fuzzy world of agentic interaction very well (and won't go out of date quickly if we forget to update it):
| # EVM | |
| For context about EVM on Sei, refer to `x/evm/EVM.md`. | |
| # EVM RPC | |
| For EVM RPC specs, refer to `evmrpc/RPC.md`. | |
| When working within a specific package, always check for and read any AGENTS.md file in that package directory before making changes. These contain domain-specific architecture decisions, conventions, and constraints that supplement this top-level guide. |
Describe your changes and provide context
Add markdown contexts that are automatically attached whenever an agent works on relevant EVM files.
Testing performed to validate your change
n/a