{
  "schemaVersion": "1.0",
  "item": {
    "slug": "git-auto",
    "name": "Git Auto",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/mupengi-bot/git-auto",
    "canonicalUrl": "https://clawhub.ai/mupengi-bot/git-auto",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/git-auto",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-auto",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "GUIDE.md",
      "SKILL.md",
      "run.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "git-auto",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:26:45.246Z",
      "expiresAt": "2026-05-07T00:26:45.246Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-auto",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-auto",
        "contentDisposition": "attachment; filename=\"git-auto-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "git-auto"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/git-auto"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/git-auto",
    "agentPageUrl": "https://openagent3.xyz/skills/git-auto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/git-auto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/git-auto/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "git-auto",
        "body": "Git Workspace Automation — Streamline daily Git operations with intelligent defaults. Status checks, smart commits, safe pushes, and diff analysis in one skill."
      },
      {
        "title": "When to Use",
        "body": "Check workspace status across multiple repos\nGenerate meaningful commit messages from staged changes\nPush with safety checks (branch protection, conflict detection)\nView formatted logs and diffs\nBatch operations across monorepo subdirectories"
      },
      {
        "title": "status",
        "body": "# Show concise workspace status\ngit-auto status\n# Multi-repo status scan\ngit-auto status --all\n\nReturns: modified files, untracked files, branch info, ahead/behind count."
      },
      {
        "title": "commit",
        "body": "# Auto-generate commit message from diff\ngit-auto commit\n# With explicit message\ngit-auto commit -m \"feat: add user auth\"\n# Commit specific files\ngit-auto commit -f \"src/auth.ts,src/types.ts\"\n\nBehavior:\n\nRuns git diff --staged to analyze changes\nGenerates conventional commit message (feat/fix/refactor/docs/chore)\nValidates message format before committing\nShows commit hash and summary"
      },
      {
        "title": "push",
        "body": "# Push current branch with safety checks\ngit-auto push\n# Force push (with confirmation)\ngit-auto push --force\n\nSafety checks:\n\nWarns if pushing to main/master directly\nChecks for upstream conflicts\nVerifies remote exists"
      },
      {
        "title": "log",
        "body": "# Last 10 commits, formatted\ngit-auto log\n# Last N commits\ngit-auto log -n 20\n# Filter by author\ngit-auto log --author \"name\""
      },
      {
        "title": "diff",
        "body": "# Staged changes\ngit-auto diff\n# Working directory changes\ngit-auto diff --unstaged\n# Between branches\ngit-auto diff main..feature-branch"
      },
      {
        "title": "Smart Commit Message Format",
        "body": "Uses Conventional Commits:\n\nfeat: — New feature\nfix: — Bug fix\nrefactor: — Code restructuring\ndocs: — Documentation only\nchore: — Maintenance tasks\ntest: — Adding/updating tests"
      },
      {
        "title": "Integration",
        "body": "Works with any Git repository. No configuration needed — auto-detects .git directory and current branch. Pairs well with code-review skill for pre-commit analysis."
      },
      {
        "title": "Error Handling",
        "body": "SituationBehaviorNot a git repoClear error message with suggestionMerge conflictsShows conflict files, suggests resolutionNo staged changesPrompts to stage or shows unstaged changesAuth failureSuggests credential refreshDetached HEADWarns and suggests creating branch"
      }
    ],
    "body": "git-auto\n\nGit Workspace Automation — Streamline daily Git operations with intelligent defaults. Status checks, smart commits, safe pushes, and diff analysis in one skill.\n\nWhen to Use\nCheck workspace status across multiple repos\nGenerate meaningful commit messages from staged changes\nPush with safety checks (branch protection, conflict detection)\nView formatted logs and diffs\nBatch operations across monorepo subdirectories\nCommands\nstatus\n# Show concise workspace status\ngit-auto status\n# Multi-repo status scan\ngit-auto status --all\n\n\nReturns: modified files, untracked files, branch info, ahead/behind count.\n\ncommit\n# Auto-generate commit message from diff\ngit-auto commit\n# With explicit message\ngit-auto commit -m \"feat: add user auth\"\n# Commit specific files\ngit-auto commit -f \"src/auth.ts,src/types.ts\"\n\n\nBehavior:\n\nRuns git diff --staged to analyze changes\nGenerates conventional commit message (feat/fix/refactor/docs/chore)\nValidates message format before committing\nShows commit hash and summary\npush\n# Push current branch with safety checks\ngit-auto push\n# Force push (with confirmation)\ngit-auto push --force\n\n\nSafety checks:\n\nWarns if pushing to main/master directly\nChecks for upstream conflicts\nVerifies remote exists\nlog\n# Last 10 commits, formatted\ngit-auto log\n# Last N commits\ngit-auto log -n 20\n# Filter by author\ngit-auto log --author \"name\"\n\ndiff\n# Staged changes\ngit-auto diff\n# Working directory changes\ngit-auto diff --unstaged\n# Between branches\ngit-auto diff main..feature-branch\n\nSmart Commit Message Format\n\nUses Conventional Commits:\n\nfeat: — New feature\nfix: — Bug fix\nrefactor: — Code restructuring\ndocs: — Documentation only\nchore: — Maintenance tasks\ntest: — Adding/updating tests\nIntegration\n\nWorks with any Git repository. No configuration needed — auto-detects .git directory and current branch. Pairs well with code-review skill for pre-commit analysis.\n\nError Handling\nSituation\tBehavior\nNot a git repo\tClear error message with suggestion\nMerge conflicts\tShows conflict files, suggests resolution\nNo staged changes\tPrompts to stage or shows unstaged changes\nAuth failure\tSuggests credential refresh\nDetached HEAD\tWarns and suggests creating branch"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mupengi-bot/git-auto",
    "publisherUrl": "https://clawhub.ai/mupengi-bot/git-auto",
    "owner": "mupengi-bot",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/git-auto",
    "downloadUrl": "https://openagent3.xyz/downloads/git-auto",
    "agentUrl": "https://openagent3.xyz/skills/git-auto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/git-auto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/git-auto/agent.md"
  }
}