hugin-scaffold
Installation
SKILL.md
Hugin Agent Scaffold Generator
Generate starter files for a new Hugin agent by reading templates from this plugin and customizing them.
Arguments
Parse the user's arguments to extract:
- agent_name: Name for the agent (required, snake_case)
- type: One of
minimal,tool, orpipeline(default:minimal)
Example invocations:
/hugin-agent-creator:hugin-scaffold my_agent- Creates minimal agent/hugin-agent-creator:hugin-scaffold data_processor tool- Creates agent with custom tool/hugin-agent-creator:hugin-scaffold report_generator pipeline- Creates multi-stage pipeline
Implementation Steps
Step 1: Parse Arguments
Extract agent_name and type from user input. Validate agent_name is snake_case.