skill-creator

Create Bog Agents skill packages with SKILL.md metadata and resource conventions.

3|Updated Mar 16, 2026
One-click install
npx skills add https://github.com/bogware/bog-agents --skill skill-creator-bogware
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/bogware/bog-agents/tree/main/libs/cli/examples/skills/skill-creator
Command: npx skills add https://github.com/bogware/bog-agents --skill skill-creator-bogware

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you create, structure, and improve Bog Agents skills by explaining what goes into a skill package and how to make it discoverable and useful at runtime.

Core Features & Use Cases

  • Skill structure guidance: Clarifies the required SKILL.md frontmatter (name and description) plus optional scripts, references, and assets, with guidance on what each resource type is for.
  • Context-efficient writing patterns: Provides principles for concise SKILL.md bodies, progressive disclosure, and when to split content into references to reduce context bloat.
  • End-to-end creation workflow: Walks through planning, initialization, implementation, validation, and iteration so skills work in practice.
  • Use cases: Ideal when you need to scaffold a new skill, update an existing one, validate that its metadata is correct, or learn how skill loading and precedence work.

Quick Start

Tell the agent: "Create a Bog Agents skill skeleton for my workflow, including a correct SKILL.md frontmatter description with clear triggers and a suggested directory layout for scripts, references, and assets."

Frequently Asked Questions about skill-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new agent skill with YAML frontmatter?

To scaffold an agent skill, create a SKILL.md file with required YAML frontmatter containing name and description fields, then organize optional bundled resources like scripts, references, and assets into a suggested directory layout.

What is the best way to structure agent skill packages for context management?

The best way to structure skill packages for context management is using progressive disclosure: keep SKILL.md bodies concise and split extensive content into separate references to reduce context bloat during agent runtime loading.

How does skill validation and loading precedence work for bundled resources?

Skill validation checks that required SKILL.md metadata is correct, while loading precedence determines how optional bundled resources like scripts, references, and assets are organized and loaded into the agent context at runtime.

Can I update an existing skill workflow without breaking its metadata?

Yes, you can update an existing skill workflow by iterating on its implementation while preserving the required YAML frontmatter fields, ensuring the skill remains discoverable and operational during the validation phase.

When should I split skill content into references instead of the SKILL.md body?

You should split content into references when the SKILL.md body becomes too large for efficient context management, applying progressive disclosure principles to keep the main body concise and reduce context bloat for the agent.