git
Git operations with conventional commits. Use for staging, committing, pushing, PRs, merges. Auto-splits commits by type/scope. Security scans for secrets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git operations with conventional commits. Use for staging, committing, pushing, PRs, merges. Auto-splits commits by type/scope. Security scans for secrets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Build high-converting SaaS affiliate programs with 20-40% commissions, KOL/KOC partnerships, and fraud prevention. Covers platform selection (PartnerStack, FirstPromoter, Rewardful), commission structures (recurring vs one-time, tiered), influencer outreach strategies, FTC/GDPR compliance, risk management, and case studies (Dropbox 3900%, PayPal 100M users). Use for designing affiliate programs, recruiting partners, optimizing conversion rates, preventing fraud, or scaling referral revenue.
Prompt + image gen. 6000+ examples. Dual-option: Standard (Flash) or Creative (Pro). Generate infographics, thumbnails, avatars, product shots with Nano Banana.
Implement features end-to-end with smart intent detection. Accepts natural language or plan paths. Auto-routes to appropriate workflow (fast, auto, parallel, code).
Tạo một Claude skill mới theo đúng chuẩn Agent Skills. Dùng khi người dùng muốn tạo skill, tạo claude skill, hoặc thêm khả năng mới cho Claude trong project này.
Fast codebase scouting using parallel agents. Use for file discovery, task context gathering, quick searches across directories. Supports internal (Explore) and external (Gemini/OpenCode) agents.
Tạo bộ kịch bản video TikTok affiliate hoàn chỉnh (5 video) cho một sản phẩm. Dùng khi cần viết script, kịch bản, lời thoại cho video TikTok bán hàng affiliate.
| name | git |
| description | Git operations with conventional commits. Use for staging, committing, pushing, PRs, merges. Auto-splits commits by type/scope. Security scans for secrets. |
| version | 1.0.0 |
Execute git workflows via git-manager subagent to isolate verbose output.
Activate context-engineering skill.
IMPORTANT:
cm: Stage files & create commitscp: Stage files, create commits and pushpr: Create Pull Request [to-branch] [from-branch]
to-branch: Target branch (default: main)from-branch: Source branch (default: current branch)merge: Merge [to-branch] [from-branch]
to-branch: Target branch (default: main)from-branch: Source branch (default: current branch)| Task | Reference |
|---|---|
| Commit | references/workflow-commit.md |
| Push | references/workflow-push.md |
| Pull Request | references/workflow-pr.md |
| Merge | references/workflow-merge.md |
| Standards | references/commit-standards.md |
| Safety | references/safety-protocols.md |
| Branches | references/branch-management.md |
| GitHub CLI | references/gh-cli-guide.md |
git add -A && git diff --cached --stat && git diff --cached --name-only
Scan for secrets before commit:
git diff --cached | grep -iE "(api[_-]?key|token|password|secret|credential)"
If secrets found: STOP, warn user, suggest .gitignore.
NOTE: Search for related issues on GitHub and add to body.
Split commits if:
Single commit if:
git commit -m "type(scope): description"
✓ staged: N files (+X/-Y lines)
✓ security: passed
✓ commit: HASH type(scope): description
✓ pushed: yes/no
| Error | Action |
|---|---|
| Secrets detected | Block commit, show files |
| No changes | Exit cleanly |
| Push rejected | Suggest git pull --rebase |
| Merge conflicts | Suggest manual resolution |
references/workflow-commit.md - Commit workflow with split logicreferences/workflow-push.md - Push workflow with error handlingreferences/workflow-pr.md - PR creation with remote diff analysisreferences/workflow-merge.md - Branch merge workflowreferences/commit-standards.md - Conventional commit format rulesreferences/safety-protocols.md - Secret detection, branch protectionreferences/branch-management.md - Naming, lifecycle, strategiesreferences/gh-cli-guide.md - GitHub CLI commands reference