원클릭으로
go-dev
Go development workflow — build, test, module management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Go development workflow — build, test, module management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Single-file HTML slide-deck template for Tao Te Ching chapter decks — ink-style, 10-page narrative, hand-rolled engine, reusable CSS variables and animation classes
Design or interpret dye process curves for woven synthetics, diagnose defects, and recommend colorfastness improvements with explicit trade-offs.
Identify woven synthetic fibers and explain their dyeing and finishing implications from lab clues, fabric specs, and supplier claims.
Compare finish systems, interpret SDS or trade names, assess PFAS and chemical compliance, and recommend substitutes for woven synthetics.
Reference knowledge for DWR system comparison, PFAS regulations, hazardous substance thresholds, and auxiliary chemical brand identification.
Reference knowledge for woven synthetic fiber identification, dye-class matching, process windows, and cost/energy structure.
| name | go-dev |
| version | 1.1.0 |
| description | Go development workflow — build, test, module management |
| prereq | references/SETUP.md |
| dependencies | {"skills":[]} |
# Build (verify compilation)
go build -o /dev/null .
# Build with output
go build -o <binary> .
# Run tests
go test ./...
# Run specific test
go test -run TestName ./package/
# Vet (static analysis)
go vet ./...
# Tidy dependencies
go mod tidy
# Add dependency
go get github.com/example/package@latest
# Check module
go mod verify
commander, mcp, llm)my_file.go)fmt.Errorf("context: %w", err)project/
├── main.go # Entry point
├── go.mod
├── go.sum
├── package1/ # Feature packages
│ ├── types.go # Types and interfaces
│ ├── logic.go # Core logic
│ └── helpers.go # Utilities
└── package2/
# Build with debug symbols
go build -gcflags="all=-N -l" .
# Print to stderr for debugging
fmt.Fprintf(os.Stderr, "debug: %v\n", value)
if err != nil {
return fmt.Errorf("operation failed: %w", err)
}
data, err := os.ReadFile(path)
if err != nil {
return err
}
err = os.WriteFile(path, data, 0644)
cmd := exec.Command("program", "arg1", "arg2")
cmd.Dir = workDir
out, err := cmd.CombinedOutput()
go build before committing to verify compilationreferences/SETUP.md for installation and PATH setupinit() functions unless absolutely necessary