소스 정보
- 저장소
- chchchadzilla/before-anything-else
- 최근 소스 활동
- 2026년 8월 14일 15:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/chchchadzilla/before-anything-else --skill github-safe-push명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | github-safe-push |
| description | Push GitHub remotes without leaking tokens or paths. |
| version | 0.1.0 |
| author | Chad Keith |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["GitHub","git","push","secrets","identity"],"related_skills":["github-auth","github-pr-workflow"]}} |
How Chad Keith's agent pushes. Auth setup lives in github-auth. PR lifecycle lives in github-pr-workflow. This skill is the push itself: identity, leak scan, remote hygiene, then git push.
git push, first-time origin, or "publish this repo".env holds GITHUB_TOKEN / GITHUB_USERNAMEDon't use for: creating a PAT, gh auth login, or opening a PR. Load github-auth or github-pr-workflow for those.
Commits and shipped author fields say Chad Keith. Nothing else.
| Field | Value |
|---|---|
git user.name | Chad Keith |
git user.email | chad@conversatrait.com |
SKILL.md / plugin.yaml / LICENSE author | Chad Keith |
Do not write Hermes Agent, Nous, a machine hostname, or a local username into author fields. Do not put C:\Users\..., /c/Users/..., or %USERPROFILE% into README, .env.example, comments, or commit messages.
Set identity local to the repo unless the user asked for global:
terminal(command="git config user.name \"Chad Keith\" && git config user.email \"chad@conversatrait.com\"")
git on PATH.env, $HERMES_HOME/.env, or gh auth — never from chat, never echoedOn Windows with git-bash, terminal is MSYS. Pass native C:/Users/<user>/... paths to git -C, not /c/Users/<user>/....
git rev-parse --show-toplevel). Criterion: one repo, expected name.user.name / user.email to the table above if missing. Criterion: git log -1 --format='%an <%ae>' would show Chad Keith.git status + git diff + git ls-files.env, *.pem, id_rsa, or any file matching a GitHub token regex (ghp_, github_pat_, gho_, ghu_, ghs_) is staged or already trackedclean or the push did not run.https://user:token@github.com/.... If origin is missing, add https://github.com/<owner>/<repo>.git from .env GITHUB_USERNAME + GITHUB_REPO (no defaults that bake one person into the script). Criterion: git remote get-url origin has no @ before github.com on HTTPS.gh if gh auth status worksgit remote set-url with the token in it
Criterion: push succeeded and .git/config still has a clean URL.git status -sb and git ls-files | grep -E '\\.env$' (expect not tracked). Criterion: branch tracks origin; .env still untracked.READMEs and examples look like any other project:
$HERMES_HOME, ~/.hermes, %LOCALAPPDATA%/hermes, /path/to/clonehttps://github.com/<owner>/<repo>.git or this project's real homepage URL — not a home-directory checkoutGITHUB_TOKEN=, GITHUB_USERNAME=your-github-username.git/config.credential.helper store writes a plaintext token to disk. Prefer askpass for a one-shot push.keys from .env is fine. Printing values is not.git -C /c/Users/<user>/... fails. Use C:/Users/<user>/... for native git..env.example that contains a real username unless it is clearly a placeholder.git remote get-url origin is credential-freegit ls-files does not include .envauthor is Chad Keith <chad@conversatrait.com>C:\Users\ or /c/Users/ home path