package main
type Engineer struct {
Name string
Location string
Focus []string
Building []string
Motto string
}
var iwen = Engineer{
Name: "iwen",
Location: "Shanghai, China",
Focus: []string{"Systems Programming", "AI Toolchain", "Infrastructure"},
Building: []string{
"dipt - Pull container images without installing Docker",
"apifox-mcp - Manage Apifox projects with AI assistants",
"HyperCode - Code orchestration and review loops for agent workflows",
"BanyanHub - Enterprise release management platform",
},
Motto: "精简高效,毫无冗余。",
}
func main() {
iwen.BuildUsefulThings()
}I build developer tools, systems software, and AI-assisted workflows, with most recent work centered on Go, Rust, automation, and platform integration.
|
|
|
|
|
|
HyperCode: agent-oriented code orchestration engine for execution, review, and validation loops.BanyanHub: enterprise release management platform focused on delivery flow and control.
精简高效,毫无冗余。




