ワンクリックで
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.