Documentation
¶
Overview ¶
Package source parses, normalizes, and classifies skill source references (git shorthand, full HTTPS/SSH, local path, url) into a canonical identity.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrInvalidSource = errors.New("invalid source")
ErrInvalidSource is returned when a source argument cannot be parsed.
Functions ¶
This section is empty.
Types ¶
type Ref ¶
type Ref struct {
Type Type
Original string
URL string
Owner string
Repo string
Path string
LocalPath string
}
Ref is a parsed, normalized source reference.
func Parse ¶
Parse classifies and normalizes a raw source argument.
Example ¶
package main
import (
"fmt"
"github.com/glapsfun/gskill/internal/source"
)
func main() {
ref, _ := source.Parse("github.com/acme/widgets/my-skill")
fmt.Println(ref.Type, ref.Owner, ref.Repo, ref.Path)
fmt.Println(ref.URL)
}
Output: git acme widgets my-skill https://github.com/acme/widgets.git
Click to show internal directories.
Click to hide internal directories.