一键导入
git-ops
Manage Git repositories within the workspace. Check status, commit changes, view diffs, and create branches.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Git repositories within the workspace. Check status, commit changes, view diffs, and create branches.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create, modify, and analyze PowerPoint presentations (.pptx) using standard Python libraries.
Create animated GIFs optimized for Slack (small file size, loop, transparency) using Python libraries like imageio and Pillow.
Generate structured JSON theme configurations for UI components, presentations, or documents. Supports color palettes, typography, and spacing.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends AI capabilities with specialized knowledge, workflows, or tool integrations.
Suite of tools for creating elaborate, multi-component AnyCowork HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
| name | git-ops |
| description | Manage Git repositories within the workspace. Check status, commit changes, view diffs, and create branches. |
| license | Apache-2.0 |
This skill provides utilities for interacting with Git repositories directly from the workspace.
git (command-line tool)git status
# Add specific files
git add path/to/file.ext
# Or add all changes
git add .
# Commit with message
git commit -m "feat: implement user login"
# Unstaged changes
git diff
# Staged changes
git diff --staged
# Create new branch
git branch feature/new-api
# Switch to branch
git checkout feature/new-api
# Or create and switch in one command
git checkout -b feature/new-api
# Concise log
git log --oneline -n 5
git status or git diff first to avoid unintended inclusions.