Back to list
gabrielwithappy

skill-architect

by gabrielwithappy

1🍴 0📅 Jan 25, 2026

SKILL.md


name: skill-architect description: Facilitates the creation and refactoring of Agent Skills compliant with the official specification. Use this to scaffold new skills or audit existing ones. license: MIT metadata: author: agent-starter version: '1.0' allowed-tools: Bash(python:*) Read Write tags: 30_Resources

Skill Architect

This skill automates the creation of new Agent Skills and provides standards for refactoring existing ones to ensure compliance with the Agent Skills Specification.

Purpose

Creating a new skill requires following a specific directory structure, naming convention, and frontmatter format. This skill abstracts those details into a simple command, allowing you to focus on the skill logic. It also provides reference checklists for auditing.

Usage

Creating a New Skill

To generate a new skill, use the provided Python script. You need to provide a name (kebab-case) and a description.

python .claude/skills/skill-architect/scripts/create.py "my-new-skill" --description "Description of what it does"

The script will:

  1. Validate the name against the spec.
  2. Create the folder structure (scripts/, references/, assets/).
  3. Generate SKILL.md with the required frontmatter.

Refactoring an Existing Skill

To refactor a skill:

  1. Read the standards checklist at .claude/skills/skill-architect/references/standards.md.
  2. Compare the target skill's SKILL.md and folder structure against the checklist.
  3. Make necessary edits manually or using file editing tools.

Instructions

  1. Scaffold: Run the create.py script.

    python .claude/skills/skill-architect/scripts/create.py <skill-name> -d "<description>"
    
  2. Populate:

    • Consult Guidelines: Read references/instruction_authoring.md for best practices on writing clear instructions.
    • Edit SKILL.md: Add detailed usage steps, examples, and edge case handling to the generated file.
    • Add Scripts: Create necessary scripts in the scripts/ directory, following the "Solve, don't punt" pattern.
  3. Verify:

    • Check SKILL.md frontmatter for completeness.
    • validation against references/standards.md.

Example

Command:

python .claude/skills/skill-architect/scripts/create.py "data-fetcher" -d "Fetches data from API"

Output:

  • Creates .claude/skills/data-fetcher/
  • Creates .claude/skills/data-fetcher/SKILL.md
  • Creates .claude/skills/data-fetcher/scripts/example.py

References

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon