com um clique
go-dev
Go development workflow — build, test, module management
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Go development workflow — build, test, module management
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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