command-group

Aggregate multiple sub-skills into a single AI context.

1|Updated Nov 27, 2025
One-click install
npx skills add https://github.com/fdshg693/ZENN --skill command-group
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: command-group
Source: https://github.com/fdshg693/ZENN/tree/main/skills/command-group
Command: npx skills add https://github.com/fdshg693/ZENN --skill command-group

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill solves the problem of needing to load multiple sub-skills into a single AI context in one go, avoiding repetitive prompts and fragmented context assembly.

Core Features & Use Cases

  • Dynamic discovery of sub-skills under sub_commands by frontmatter name.
  • Outputs each sub-skill with its absolute path and full SKILL.md content, ready for embedding.
  • Supports batch loading by listing multiple sub-skill names in one invocation and preserving the specified order.
  • Continues gracefully when a named sub-skill is not found, emitting a warning but not failing the whole operation.

Quick Start

Invoke the command with the sub-skill names you need, e.g., /command-group test1 test2 to load both SKILLs in a single context.

Frequently Asked Questions about command-group

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

FAQPage Schema
How do I load multiple sub-skills into a single AI context at once?

You can batch load multiple sub-skills into a single AI context by invoking the command-group with a list of names, which aggregates matching SKILL.md files and outputs their paths and content directly.

What happens if a requested sub-skill is not found during batch loading?

When a named sub-skill is not found during batch loading, the process emits a warning but continues gracefully, ensuring the missing skill does not abort the entire operation or block other skills from loading.

How are sub-skills discovered for inclusion in an AI session?

Sub-skills are discovered dynamically by running a shell script that recursively searches for SKILL.md files under the sub_commands directory, matching each file by its frontmatter name.

Can I preserve the order of sub-skills when loading them into a batch context?

Yes, you can preserve the specified order of sub-skills when loading them into a batch context by listing the sub-skill names in your desired sequence during a single invocation.

What is the best way to avoid repetitive prompts when assembling multiple skill contexts?

The best way to avoid repetitive prompts when assembling multiple skill contexts is to use a skill grouping command that dynamically discovers and embeds multiple SKILL.md files into one context in a single operation.