Package-level declarations

Types

Link copied to clipboard
data class Frontmatter(val name: String, val description: String, val license: String? = null, val compatibility: String? = null, val allowedTools: String? = null, val metadata: Map<String, String> = emptyMap())

Represents the frontmatter of a skill, containing metadata about the skill.

Link copied to clipboard
class NewFileSystemSource(skillsBaseDir: String) : SkillSource

JVM implementation of SkillSource using standard File I/O.

Link copied to clipboard
interface SkillSource

Core interface for accessing skill components.

Link copied to clipboard
class SkillSourceException(message: String, cause: Throwable? = null) : Exception

The exception type returned by SkillSource methods.