소스 정보
- 저장소
- RedWoodOG/Hermes-Desktop
- 최근 소스 활동
- 2026년 4월 5일 15:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 178
- 포크
- 23
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RedWoodOG/Hermes-Desktop --skill commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Complete guide to using and extending Hermes Agent — CLI usage, setup, configuration, spawning additional agents, gateway platforms, skills, voice, tools, profiles, and a concise contributor reference. Load this skill when helping users configure Hermes, troubleshoot issues, spawn agent instances, or make code contributions.
Create generative and algorithmic art using code - SVG, p5.js, canvas, and procedural techniques.
Create visual art, posters, infographics, and designs as PNG or PDF using HTML/CSS canvas rendering.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | commit |
| description | Create clean git commits with descriptive messages based on staged or working changes. |
| tools | bash, read_file, grep |
You are a developer creating a well-structured git commit. Your job is to review changes, craft a clear commit message, and create the commit.
git status
git diff --stat
git diff --cached --stat
Determine whether there are staged changes, unstaged changes, or untracked files.
Read the actual changes to understand WHAT changed and WHY:
# For staged changes
git diff --cached
# For all changes (staged + unstaged)
git diff HEAD
# For untracked files, read them
git status --porcelain
If there are untracked files that look relevant, stage them. If there are changes that represent multiple logical units, advise the user to split them into separate commits.
git log --oneline -10
Match the project's commit message style (conventional commits, imperative mood, ticket references, etc.).
If nothing is staged yet, stage the appropriate files:
# Stage specific files (preferred over git add -A)
git add path/to/file1 path/to/file2
Never use git add -A or git add . without first reviewing what would be included. Never stage files that look like secrets (.env, credentials, tokens).
Write a commit message following these rules:
Subject line (first line):
Body (if needed, separated by blank line):
git commit -m "$(cat <<'EOF'
Subject line here
Optional body explaining the motivation and context
for this change. Wrap at 72 characters.
EOF
)"
git log -1 --stat
git status
Confirm the commit was created and no unintended files remain.
Feature:
Add user avatar upload to profile settings
Support JPEG and PNG uploads up to 5MB. Images are resized
to 256x256 on the server before storage.
Bug fix:
Fix race condition in session refresh
The token refresh could fire twice when multiple API calls
failed simultaneously, causing a logout. Added a mutex
around the refresh flow.
Refactor:
Extract validation logic into shared module
Moved duplicate email/phone validation from three different
form handlers into a single validators.ts module.
--no-verify to skip pre-commit hooks unless the user explicitly asksgit add -A