Documentation
¶
Overview ¶
Package embedded provides access to files embedded into the loom binary. This ensures critical configuration files are always available, even when the binary is distributed separately from the source tree.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var GuideYAML []byte
GuideYAML contains the default guide agent configuration. Guide is the helper agent that discovers and recommends agents based on user needs.
var SkillsTaxonomyYAML []byte
SkillsTaxonomyYAML is the default seed taxonomy the skills importer's classifier consults when --classify is set without an explicit --taxonomy file. Edit embedded/taxonomy.yaml to change defaults; users extending Loom for their own domains should copy the file rather than editing this one.
var WeaverCreationSkillYAML []byte
WeaverCreationSkillYAML contains the weaver-creation skill configuration.
var WeaverFromScratchSkillYAML []byte
WeaverFromScratchSkillYAML wires the weaver-from-scratch skill (slash: /from-scratch). Fallback when no preset/template fits.
var WeaverPresetsSkillYAML []byte
WeaverPresetsSkillYAML wires the weaver-presets skill (slash: /preset).
var WeaverTemplatesSkillYAML []byte
WeaverTemplatesSkillYAML wires the weaver-templates skill (slash: /template).
var WeaverYAML []byte
WeaverYAML contains the default weaver agent configuration. Weaver is the meta-agent that orchestrates other agents and manages complex workflows.
Functions ¶
func GetGuide ¶ added in v1.1.0
func GetGuide() []byte
GetGuide returns the embedded guide.yaml content.
func GetSkillsTaxonomy ¶ added in v1.3.0
func GetSkillsTaxonomy() []byte
GetSkillsTaxonomy returns the embedded taxonomy.yaml content.
func GetStartHere ¶
func GetStartHere() []byte
GetStartHere returns the base ROM (START_HERE.md) content. This delegates to pkg/agent/rom_loader.go which is the single source of truth for ROM files. The ROM is embedded from pkg/agent/roms/START_HERE.md at compile time.
func GetWeaverCreationSkill ¶ added in v1.2.0
func GetWeaverCreationSkill() []byte
GetWeaverCreationSkill returns the embedded weaver-creation.yaml skill content.
func GetWeaverFromScratchSkill ¶ added in v1.3.0
func GetWeaverFromScratchSkill() []byte
GetWeaverFromScratchSkill returns the embedded weaver-from-scratch.yaml content.
func GetWeaverPresetsSkill ¶ added in v1.3.0
func GetWeaverPresetsSkill() []byte
GetWeaverPresetsSkill returns the embedded weaver-presets.yaml content.
func GetWeaverTemplatesSkill ¶ added in v1.3.0
func GetWeaverTemplatesSkill() []byte
GetWeaverTemplatesSkill returns the embedded weaver-templates.yaml content.
Types ¶
This section is empty.