Documentation
¶
Overview ¶
Package parser provides SKILL.md file parsing functionality. It extracts YAML frontmatter and markdown body content from skill files according to the Agent Skills Specification.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ParseError ¶
type ParseError struct {
Path string // Path to the file that failed to parse
Err error // Underlying error
}
ParseError represents an error that occurred during skill file parsing.
func (*ParseError) Error ¶
func (e *ParseError) Error() string
func (*ParseError) Unwrap ¶
func (e *ParseError) Unwrap() error
type Parser ¶
type Parser struct{}
Parser handles SKILL.md file parsing operations.
func (*Parser) Parse ¶
Parse reads and parses a SKILL.md from the given reader. The path parameter is used for error context only.
func (*Parser) ParseBytes ¶
ParseBytes parses SKILL.md content from bytes. The path parameter is used for error context only.
Click to show internal directories.
Click to hide internal directories.