mirror of
https://github.com/runbear-io/beardrive.git
synced 2026-08-25 08:08:08 +02:00
15 lines
582 B
Go
15 lines
582 B
Go
// Package plugin embeds the shipped agent assets — currently the `beardrive`
|
|||
|
|
// skill — so the CLI can install them into any agent that reads SKILL.md.
|
||
|
|
// The file embedded here is the same one the Claude Code plugin ships
|
||
|
|
// (plugin/skills/beardrive/SKILL.md): one canonical copy, no drift.
|
||
|
|
package plugin
|
||
|
|
|
||
|
|
import _ "embed"
|
||
|
|
|
||
|
|
// SkillMD is the beardrive skill: YAML frontmatter (name + description) plus
|
||
|
|
// the instructions body, the cross-agent SKILL.md format Claude Code, Codex,
|
||
|
|
// Gemini CLI, and Hermes all read.
|
||
|
|
//
|
||
|
|
//go:embed skills/beardrive/SKILL.md
|
||
|
|
var SkillMD string
|