48 lines
722 B
Markdown
48 lines
722 B
Markdown
# AGENTS.md
|
|
|
|
This file provides guidance to Qoder (qoder.com) when working with code in this repository.
|
|
|
|
## Project Overview
|
|
|
|
This is a Go project (`yizhisec.com/hsv2/forge`) using Go 1.25.2.
|
|
|
|
## Development Commands
|
|
|
|
### Build
|
|
```bash
|
|
go build ./...
|
|
```
|
|
|
|
### Run Tests
|
|
```bash
|
|
go test ./...
|
|
```
|
|
|
|
### Run Single Test
|
|
```bash
|
|
go test -run TestName ./path/to/package
|
|
```
|
|
|
|
### Lint
|
|
```bash
|
|
go vet ./...
|
|
```
|
|
|
|
### Format Code
|
|
```bash
|
|
go fmt ./...
|
|
```
|
|
|
|
### Tidy Dependencies
|
|
```bash
|
|
go mod tidy
|
|
```
|
|
|
|
## Architecture
|
|
|
|
The codebase structure has not yet been established. As the project grows, update this section with:
|
|
- Main package organization
|
|
- Key architectural patterns
|
|
- Important design decisions
|
|
- Module relationships
|