소스 정보
- 저장소
- deathrashed/agents
- 최근 소스 활동
- 2026년 7월 28일 18:05
- 감지된 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/deathrashed/agents --skill git명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git |
| description | Git operations with security scan and auto-commit (Git Manager Agent) |
Git operation:
Request: {{args}}
| Command | Action | Time |
|---|---|---|
/git cm | Commit with auto-message | 10-15s |
/git cp | Commit + Push | 15-20s |
/git merge | Merge branches | 10-20s |
/git status | Review changes | 5s |
/git pr | Generate PR summary | 30s |
git diff --staged
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Use Case |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
refactor | Code restructuring |
perf | Performance improvement |
test | Adding tests |
chore | Maintenance (deps, config) |
style | Formatting (no code change) |
// API Keys
const API_KEY = "sk-1234567890abcdef";
// Database URLs
const DB_URL = "postgres://user:pass@host/db";
// OAuth Tokens
const TOKEN = "ghp_xxxxxxxxxxxx";
// AWS Credentials
const AWS_SECRET = "wJalrXUtnFEMI/K7MDENG/bPxRf";
const API_KEY = process.env.API_KEY;
const DB_URL = process.env.DATABASE_URL;
| Check | Status | Details |
|---|---|---|
| API Keys | ✅/❌ | file.ts:42 |
| DB Credentials | ✅/❌ | - |
| OAuth Tokens | ✅/❌ | - |
| Private Keys | ✅/❌ | - |
Block commit if secrets detected!
For complex changes across multiple files:
feat(dashboard): add interactive chart component
- Add Chart.tsx with D3 integration
- Update Dashboard.tsx to include chart
- Add chart styles in styles.css
- Update tests for new component
git status # 1. Review changes
git add . # 2. Stage files
/git cm # 3. Auto-commit
git log -1 # 4. Verify
/git cp # 5. Push (optional)
git pull --rebase origin main
# Resolve conflicts if any
/git cp # Retry push
Before pushing, automatically run:
Running pre-push checks...
✓ TypeScript: No errors
✓ Lint: Passed
✓ Tests: All passed (if fast)
✓ Security: No sensitive files
Safe to push.
⚠ Warning: Remote has changes
Remote branch has X new commits.
Options:
1. Pull and rebase: git pull --rebase
2. Pull and merge: git pull
3. Cancel push
❌ Error: Would require force push
Your branch is behind 'origin/main' by X commits.
Options:
1. Pull and rebase: git pull --rebase
2. Create new branch
3. Cancel
Never force push to main/master without explicit approval!
git add src/auth/*
/git cm # Commits only auth
git add src/components/*
/git cm # Separate UI changes
/git merge feature-branch into main
# Workflow:
# 1. Checkout target branch
# 2. Merge source branch
# 3. Resolve conflicts if any
# 4. Commit merge
# 5. Push if requested
## Summary
[Brief description of changes]
## Changes Made
- ✅ Feature: [description]
- 🐛 Fix: [description]
- ♻️ Refactor: [description]
## Files Changed
- `src/file1.ts` - [description]
- `src/file2.ts` - [description]
## Test Plan
- [ ] Unit tests pass
- [ ] Manual testing on localhost
- [ ] No TypeScript errors
- [ ] No lint warnings
## Screenshots (if UI changes)
[Attach screenshots]
## Checklist
- [ ] Code follows project conventions
- [ ] Documentation updated
- [ ] No breaking changes
/git pr # PR to main
/git pr develop # PR to develop
/git pr --draft # Draft PR
Key Takeaway: Clean commit history with security-first automation. No leaked secrets, no AI attribution.