Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/golang-workflow:errorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Wrapping errors with context → see [wrapping/](wrapping/)
func ProcessFile(path string) error {
f, err := os.Open(path)
if err != nil {
return fmt.Errorf("open %s: %w", path, err)
}
defer f.Close()
if err := parse(f); err != nil {
return fmt.Errorf("parse %s: %w", path, err)
}
return nil
}
npx claudepluginhub jamesprial/claude-plugins --plugin golang-workflowCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.