ソース情報
- リポジトリ
- deathrashed/agents
- ソースの最終更新活動
- 2026年7月28日 18:05
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/deathrashed/agents --skill gitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Control the in-app Browser for opening, navigating, inspecting visible or interactive page state, clicking, typing, screenshots, and local web testing. It can have existing signed-in sessions. For semantic operations on linked resources, prefer a purpose-built connector, API, or CLI when available.
Control the user's Chrome browser for tasks that depend on existing Chrome state: tabs, logged-in sessions, or extensions. Prefer purpose-built connectors, APIs, or CLIs when available.
Control local Mac apps through Computer Use for tasks that require reading or operating app UI. Prefer purpose-built connectors, APIs, or CLIs when available.
| 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.