Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
git-sync - Skill - OpenSmartRoute
Skillv1.0.0
git-sync
Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes.
Imported from toilahuongg/Shopify-Agents-Kit (.claude/skills/git-sync/SKILL.md). Install upstream with npx skills add toilahuongg/Shopify-Agents-Kit --skill git-sync. Copyright stays with the author.
Git Sync
Sync local branch with remote using rebase.
Fetch the latest changes from the remote repository.
Command: git fetch origin
Pull and rebase the current branch on top of the remote branch.
Command: git pull origin HEAD --rebase
If there are conflicts, resolve them, then git rebase --continue.
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# after Install: the listing is in your workspace's routing pool - a plan picks it for its slot
curl -s -X POST https://api.opensmartroute.ai/api/v1/route -H 'Authorization: Bearer $OSR_API_KEY' -H 'Content-Type: application/json' -d '{"text": "...", "plan": true}'
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
{
"ocm": "1",
"id": "toilahuongg-shopify-agents-kit-git-sync",
"kind": "skill",
"name": "git-sync",
"description": "Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes.",
"publisher": "toilahuongg",
"version": "1.0.0",
"capabilities": {
"domains": [
"coding"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/toilahuongg/Shopify-Agents-Kit",
"path": ".claude/skills/git-sync/SKILL.md",
"ref": "45435b102792576f19d31cbdc9a414f48b74db8d",
"url": "https://github.com/toilahuongg/Shopify-Agents-Kit/blob/45435b102792576f19d31cbdc9a414f48b74db8d/.claude/skills/git-sync/SKILL.md",
"key": "toilahuongg/Shopify-Agents-Kit/.claude/skills/git-sync/SKILL.md"
},
"allowed_tools": [
"Bash(git:*)"
]
},
"instructions": "# Git Sync\n\nSync local branch with remote using rebase.\n\n1. Fetch the latest changes from the remote repository.\n - Command: `git fetch origin`\n\n2. Pull and rebase the current branch on top of the remote branch.\n - Command: `git pull origin HEAD --rebase`\n - If there are conflicts, resolve them, then `git rebase --continue`.",
"cost": {
"context_tokens": 83
}
}
Fetch it by URL: GET /api/v1/registry/toilahuongg-shopify-agents-kit-git-sync/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.