SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill hugo-new명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
| name | hugo-new |
| description | > Use when this capability is needed. |
Create new Hugo content files using the project's archetypes. Archetypes are content templates that Hugo applies when creating new pages with hugo new,
ensuring consistent frontmatter and body structure.
Before creating content, discover what archetypes are available in the project. Check these locations in order of priority:
archetypes/ in the project root (highest priority)themes/<theme-name>/archetypes/ or module pathsList all archetype files to understand available content types:
Glob: archetypes/*.md
Glob: themes/*/archetypes/*.md
Read each archetype to understand the frontmatter fields and body scaffold it provides.
Hugo selects archetypes based on the content path's first directory segment (the "section"):
hugo new posts/my-post.md → looks for archetypes/posts.mdhugo new articles/my-article.md → looks for archetypes/articles.mdarchetypes/default.md if no section-specific archetype existsUse --kind to override automatic archetype selection:
hugo new --kind gallery posts/my-gallery.md
This is essential when:
Before running hugo new, check the existing content directory to understand the project's path conventions:
Glob: content/**/*.md
Common patterns to look for:
content/posts/my-post.mdcontent/posts/2026/0208-my-post.mdcontent/posts/my-post/index.md (allows co-located assets)content/posts/2026/my-post/index.mdMatch the existing convention when constructing the path for hugo new.
Run hugo new with the determined path:
hugo new <section>/<path>.md
# or with explicit archetype:
hugo new --kind <archetype-name> <section>/<path>.md
Page bundles: To create a page bundle (directory with index.md), use:
hugo new <section>/<slug>/index.md
After creation, read the generated file and fill in or adjust frontmatter fields and body content as needed.
After creating content:
Archetypes support Go template actions evaluated once at creation time. The most commonly used variables:
| Template Variable | Description |
|---|---|
{{ .Name }} | Filename without extension |
{{ .Date }} | Current date in RFC 3339 format |
For the complete list of template variables and string functions, see references/archetype-mechanics.md.
.md archetype is NOT used for .markdown targets and vice versa. Match the file extension.content/ to the archetype name. Use --kind to override.hugo new to avoid mismatched templates or inconsistent paths.For detailed archetype mechanics and advanced usage:
references/archetype-mechanics.md - Detailed archetype resolution logic, template variables, and advanced patternsConverted and distributed by TomeVault — claim your Tome and manage your conversions.