Files
forge/AGENTS.md
2025-11-24 18:38:21 +08:00

722 B

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

go build ./...

Run Tests

go test ./...

Run Single Test

go test -run TestName ./path/to/package

Lint

go vet ./...

Format Code

go fmt ./...

Tidy Dependencies

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