Jump to related tools in the same category or review the original source on GitHub.

Git & GitHub @trypto1019 Updated 2/15/2026

🚀 Arc Skill Gitops OpenClaw Plugin & Skill | ClawHub

Looking to integrate Arc Skill Gitops into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate git & github tasks instantly, without having to write custom tools from scratch.

What this skill does

Automated deployment, rollback, and version management for agent workflows and skills.

Install

npx clawhub@latest install arc-skill-gitops

Full SKILL.md

Open original
Metadata table.
namedescriptionuser invocable
arc-skill-gitopsAutomated deployment, rollback, and version management for agent workflows and skills.true

SKILL.md content below is scrollable.

Agent GitOps

Automated deployment and rollback for agent workflows. Track skill versions, deploy with confidence, roll back when things break.

Why This Exists

Agents install and update skills constantly. When an update breaks something, you need to:

  1. Know what changed
  2. Roll back fast
  3. Track which version was stable

This skill manages that lifecycle.

Commands

Initialize tracking for a skill

python3 {baseDir}/scripts/gitops.py init --skill ~/.openclaw/skills/my-skill/

Snapshot the current state (before updating)

python3 {baseDir}/scripts/gitops.py snapshot --skill ~/.openclaw/skills/my-skill/ --tag "pre-update"

Deploy a skill update (snapshots current state first)

python3 {baseDir}/scripts/gitops.py deploy --skill ~/.openclaw/skills/my-skill/ --tag "v1.1"

List all snapshots for a skill

python3 {baseDir}/scripts/gitops.py history --skill ~/.openclaw/skills/my-skill/

Roll back to a previous snapshot

python3 {baseDir}/scripts/gitops.py rollback --skill ~/.openclaw/skills/my-skill/ --tag "pre-update"

Check status of all tracked skills

python3 {baseDir}/scripts/gitops.py status

Run pre-deploy checks (integrates with arc-skill-scanner if available)

python3 {baseDir}/scripts/gitops.py check --skill ~/.openclaw/skills/my-skill/

Data Storage

Snapshots and metadata are stored in ~/.openclaw/gitops/.

How It Works

  1. init creates a git repo in the skill directory (if not already one) and records it in the tracking manifest
  2. snapshot commits the current state with a tag
  3. deploy takes a pre-deploy snapshot, then commits the new state
  4. rollback restores a tagged snapshot using git checkout
  5. check runs arc-skill-scanner (if installed) as a pre-deploy gate
  6. history shows all tagged snapshots with timestamps
  7. status shows all tracked skills and their current/latest versions

Tips

  • Always snapshot before updating a skill manually
  • Use deploy instead of manual updates — it snapshots automatically
  • Combine with arc-skill-scanner for security-gated deployments
  • Tags should be descriptive: "v1.2", "pre-security-patch", "stable-2026-02-15"
Original Repository URL: https://github.com/openclaw/skills/blob/main/skills/trypto1019/arc-skill-gitops
Latest commit: https://github.com/openclaw/skills/commit/1c55e680cbf7581adeb5a97dfa1bcfee1c09932e

Related skills

If this matches your use case, these are close alternatives in the same category.

agent-commons

Consult, commit, extend, and challenge reasoning chains in the Agent Commons - a shared reasoning layer for AI agents.

agent-team-orchestration

Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.

agentdo

Post tasks for other AI agents to do, or pick up work from the AgentDo task queue (agentdo.dev). Use when: (1) you need something done that you can't do yourself (scraping, data collection, image conversion, research, verification), (2) you want to offer your skills to other agents, (3) you need a human for a physical or judgment task. Triggers on: 'post a task', 'find work', 'agentdo', 'task queue', 'get another agent to', 'I need help with', 'outsource this'.

agentgate

API gateway for personal data with human-in-the-loop write approval. Connects agents to GitHub, Bluesky, Google Calendar, Home Assistant, and more — all through a single API with safety controls.

airadar

Distill the signal around AI-native tools/apps and their GitHub home bases: fast-growing, hyped, well-funded projects plus repos with rapidly rising stars or trending status. Use when the user asks for a focused pulse on AI tooling, emergent apps, or repo movements that could meaningfully reshape workflows or standards.

alex-session-wrap-up

End-of-session automation that commits unpushed work, extracts learnings, detects patterns, and persists rules. Uses gpt-4o-mini for pattern detection. Runs at session end or on-demand.