Agent Skill
2/7/2026

skill-creator

Specialized agentic skill designed to scaffold and generate new skills following the "Gold Standard" template. Trigger: "Create a new skill", "Generate skill", "Scaffold skill", "New skill template".

C
cr8297408
0GitHub Stars
2Views
npx skills add cr8297408/personal-agents-manager-tools

SKILL.md

Nameskill-creator
DescriptionSpecialized agentic skill designed to scaffold and generate new skills following the "Gold Standard" template. Trigger: "Create a new skill", "Generate skill", "Scaffold skill", "New skill template".

🧠 Personal Agents & Skills Manager

A curated collection of AI agent definitions and reusable skills for agentic coding assistants.

šŸ“ Repository Structure

personal-agents-manager-tools/
ā”œā”€ā”€ agents/                        # šŸ¤– Agent definitions (high-level, compose skills)
│   └── architecture/              # System design, ADRs, project auditing
│       ā”œā”€ā”€ AGENT.md
│       ā”œā”€ā”€ examples/
│       ā”œā”€ā”€ resources/
│       └── scripts/
│
ā”œā”€ā”€ skills/                        # šŸ”§ Standalone, reusable skills
│   ā”œā”€ā”€ skill_creator/             # Meta-skill: scaffolds new skills
│   ā”œā”€ā”€ nextjs-structure/          # Next.js project scaffolding & modular architecture
│   ā”œā”€ā”€ nextjs-auth-security/      # Authentication, authorization & security
│   ā”œā”€ā”€ nextjs-data-flow/          # Server Actions, data fetching, DAL patterns
│   ā”œā”€ā”€ nextjs-optimization/       # Core Web Vitals, SEO, performance
│   ā”œā”€ā”€ nextjs-scope-rule/         # Scope Rule for component placement
│   ā”œā”€ā”€ react-component-patterns/  # Advanced React patterns & composition
│   └── react-testing-qa/          # Testing with RTL, Vitest, accessibility
│
└── .gitignore

šŸ¤– Agents vs šŸ”§ Skills

ConceptDescriptionFile
SkillA focused, single-concern capability (e.g., "Set up Next.js structure")SKILL.md
AgentA high-level orchestrator that composes skills and handles cross-cutting concerns (e.g., "Architecture decisions")AGENT.md

Key Differences

  • Skills are atomic — they do one thing well.
  • Agents are composable — they orchestrate multiple skills and add higher-level reasoning.
  • Skills live in skills/, agents live in agents/.
  • An agent can reference skills via composed_skills in its frontmatter.

šŸš€ Quick Start

Using a Skill

Reference the skill path in your agentic coding assistant configuration:

skills/nextjs-structure/SKILL.md

Using an Agent

Reference the agent path:

agents/architecture/AGENT.md

Creating a New Skill

Use the skill_creator meta-skill:

> Create a new skill for [topic]

This will scaffold a complete skill following the Gold Standard template.

šŸ“ Standards

Skill Structure

my-skill/
ā”œā”€ā”€ SKILL.md       # Main instructions (required)
ā”œā”€ā”€ scripts/       # Helper scripts (optional)
ā”œā”€ā”€ examples/      # Reference implementations (optional)
└── resources/     # Templates and assets (optional)

Agent Structure

my-agent/
ā”œā”€ā”€ AGENT.md       # Main agent definition (required)
ā”œā”€ā”€ scripts/       # Helper scripts (optional)
ā”œā”€ā”€ examples/      # Reference implementations (optional)
└── resources/     # Templates and assets (optional)

šŸ“„ License

Apache-2.0

Skills Info
Original Name:skill-creatorAuthor:cr8297408