Skip to content

Commit 0780bda

Browse files
author
Prad N
committed
docs: add coding conventions for agentic coding
1 parent 7ad5002 commit 0780bda

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

CONVENTIONS.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

0 commit comments

Comments
 (0)