File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ # CLAUDE.md - Guidelines for Agentic Coding
2
+
3
+ ## Build/Run/Test Commands
4
+ - ** Build WASM binary** : ` task build ` or ` make build `
5
+ - ** Generate code** : ` task gen ` or ` make generate `
6
+ - ** Run tests** : ` task test `
7
+ - ** Run single test** : ` go test -v ./path/to/package -run TestName `
8
+ - ** Development workflow** : ` task ` (runs test, generate, build sequence)
9
+
10
+ ## Code Style Guidelines
11
+ - ** Formatting** : Standard Go formatting with ` gofmt `
12
+ - ** Imports** : Group standard library, third-party, and project imports
13
+ - ** Types** : Use descriptive type names; alias complex types (e.g., ` type Vault = *echo.Echo ` )
14
+ - ** Error Handling** : Always check errors; wrap with context when propagating
15
+ - ** Naming** :
16
+ - Packages: lowercase, concise nouns (e.g., ` handlers ` , ` models ` )
17
+ - Interfaces: action+er (e.g., ` Querier ` )
18
+ - Variables: camelCase for local, PascalCase for exported
19
+ - ** Structure** : Follow Go's standard project layout
20
+ - ** Comments** : Add godoc comments for all exported functions/types
21
+ - ** WASM Context** : Use internal/context package for WASM-specific context
You can’t perform that action at this time.
0 commit comments