Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- name: clawback description: Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- ClawBack A complete git workflow for AI agents. Five modes: **Commit** (default), **Checkpoint** (before risk), **Rollback** (when things break), **Isolate** (worktree for risky parallel work), and **Release Hygiene** (before publishing this skill). Mode 1: Commit (Default W
git clone https://github.com/sene1337/clawback.gitOverall rank
#53
Adoption
19 GitHub stars
Trust
Unknown
Freshness
Feb 24, 2026
Freshness
Last checked Feb 24, 2026
Best For
clawback is best for consume, resume workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- name: clawback description: Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- ClawBack A complete git workflow for AI agents. Five modes: **Commit** (default), **Checkpoint** (before risk), **Rollback** (when things break), **Isolate** (worktree for risky parallel work), and **Release Hygiene** (before publishing this skill). Mode 1: Commit (Default W Capability contract not published. No trust telemetry is available yet. 19 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Sene1337
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/sene1337/clawback.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Sene1337
Protocol compatibility
OpenClaw
Adoption signal
19 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
cd $(git rev-parse --show-toplevel) git add -A # or specific files git commit -m "type: what changed — why"
text
type: concise description of what changed — why (if not obvious)
text
feat: replace Chatterbox with Piper TTS — 30x faster, Chatterbox took 30+ seconds fix: Safari AudioContext — init on user gesture, not on chunk arrival docs: add social consensus spec for benchmark governance refactor: split voice handler into separate STT and TTS modules chore: update .gitignore, remove tracked log files
text
e3ce305 fix: Safari AudioContext — init on user gesture, not on chunk arrival a2b1f09 feat: replace Chatterbox with Piper TTS — 30x faster 6fc28af fix: resample 48kHz→16kHz for Whisper, cast float64→float32 b8d9e12 feat: add LaunchAgent for auto-start on boot
text
- Run `git status --short` in workspace. If dirty, commit each changed file with a descriptive message.
bash
bash scripts/checkpoint.sh "reason for checkpoint"
Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- name: clawback description: Git workflow for AI agents — commit-as-you-go, checkpoint/rollback, worktree isolation, and release hygiene. --- ClawBack A complete git workflow for AI agents. Five modes: **Commit** (default), **Checkpoint** (before risk), **Rollback** (when things break), **Isolate** (worktree for risky parallel work), and **Release Hygiene** (before publishing this skill). Mode 1: Commit (Default W
A complete git workflow for AI agents. Five modes: Commit (default), Checkpoint (before risk), Rollback (when things break), Isolate (worktree for risky parallel work), and Release Hygiene (before publishing this skill).
This is your primary mode. Commit after every logical unit of work — one fix, one feature, one config change. Your git log should read like a changelog.
cd $(git rev-parse --show-toplevel)
git add -A # or specific files
git commit -m "type: what changed — why"
No script needed. Keep friction near zero so you commit more, not less.
Follow Conventional Commits:
type: concise description of what changed — why (if not obvious)
Types:
| Type | When |
|------|------|
| feat: | New capability or feature |
| fix: | Bug fix |
| docs: | Documentation only |
| refactor: | Code change that neither fixes a bug nor adds a feature |
| chore: | Maintenance, dependencies, config, cleanup |
| perf: | Performance improvement |
Examples:
feat: replace Chatterbox with Piper TTS — 30x faster, Chatterbox took 30+ seconds
fix: Safari AudioContext — init on user gesture, not on chunk arrival
docs: add social consensus spec for benchmark governance
refactor: split voice handler into separate STT and TTS modules
chore: update .gitignore, remove tracked log files
Rules from How to Write a Git Commit Message:
Your git history IS your debug log. If you commit properly during work:
e3ce305 fix: Safari AudioContext — init on user gesture, not on chunk arrival
a2b1f09 feat: replace Chatterbox with Piper TTS — 30x faster
6fc28af fix: resample 48kHz→16kHz for Whisper, cast float64→float32
b8d9e12 feat: add LaunchAgent for auto-start on boot
That tells the full story. Each change is individually revertable. The daily log becomes a 5-line summary referencing commit hashes — not a 70-line debugging transcript. Detail lives in git (free, searchable, zero boot tokens), not in memory files (expensive, reloads every session).
*.log, logs/)Behavioral rules decay after context compaction. This section provides mechanical enforcement for the "one fix, one commit" discipline.
Add to your HEARTBEAT.md:
- Run `git status --short` in workspace. If dirty, commit each changed file with a descriptive message.
This runs every heartbeat cycle (typically 30 min on a lighter model). Cost is near-zero — one shell command. If uncommitted changes exist, commit them before doing anything else.
The commit rule works when it's fresh in context. After compaction, it drifts — you batch changes, forget to commit, and git log stops being a reliable record. When that happens:
The heartbeat check catches drift automatically. It's a safety net, not a replacement for committing in the moment.
"commit various changes" is useless in git log. If you're doing a catch-up commit, take the time to split and describe each change.git log --oneline -20 is your first move, not your notes.Same as before. Use before any operation you'd regret if it failed.
bash scripts/checkpoint.sh "reason for checkpoint"
Returns a commit hash — your rollback point.
update.run or config.applybash scripts/rollback.sh <commit-hash> "what broke" "why it broke" "which principle it tests" [--prompted]
Reverts to checkpoint (including cleaning untracked files created after it) AND appends a regression entry to docs/ops/regressions.md.
All four reason arguments are required. You can't rollback without logging what went wrong. Failures are data.
The --prompted flag marks the regression as 🔴 (human-caught). Default is 🟢 (self-caught). Be honest — the ratio is the scorecard.
docs/ops/regressions.md — loaded on demand, NOT pinned at bootdocs/ops/regression-archive.md — auto-rotated when active exceeds 10Auto-appended to docs/ops/regressions.md:
N. 🟢 **<what broke>** (<date>) — <what broke> → <why> → Rolled back to <hash>. Tests "<principle>".
Use a separate worktree when you need isolation: large refactors, risky migrations, or parallel feature streams.
bash scripts/worktree.sh create feat-branch-name
bash scripts/worktree.sh list
bash scripts/worktree.sh path feat-branch-name
cd "$(bash scripts/worktree.sh path feat-branch-name)"
bash scripts/worktree.sh cleanup)git worktree add directly. Use scripts/worktree.sh so .worktrees/ handling stays consistent.bash scripts/worktree.sh remove <branch> --prune-branch (add --force-branch only when intentionally discarding unmerged work).ClawBack itself needs strict version control. Before publishing this repo, validate release metadata:
bash scripts/release-check.sh [base-ref]
The check enforces:
VERSION exists and is valid semverVERSION is bumped versus base-ref when skill files changeCHANGELOG.md is updated and includes a section for the current VERSIONFor full policy and checklist, see references/versioning.md.
Daily logs (memory/YYYY-MM-DD.md) are standup updates, not debug transcripts.
### Project Name
- What changed (reference commit hashes for detail)
- What's blocked
- What's next
Max 5 lines per project. If a fix needs documentation for future reference, write it in the relevant docs/ file — not the daily log.
| Detail | Where it goes |
|--------|--------------|
| "Fixed X, working now" | Daily log (1 line + commit hash) |
| Step-by-step debugging | Git commit messages (already there if you committed as you went) |
| How a system works / config details | docs/ file |
| Decision and reasoning | Daily log (2-3 lines) or decision ledger |
| Error messages, stack traces | Nowhere persistent — they served their purpose |
Bad (50 lines for one project):
### openclaw-voice
- Tried Chatterbox TTS, took 30+ seconds per response
- Found Piper TTS, installed via pip
- Had to fix ONNX runtime dependency
- Piper works but output is 22kHz, need to resample
- Fixed resampling with scipy
- Then Safari wouldn't play audio
- Safari needs user gesture for AudioContext
- Fixed by initializing on button click
- Then Whisper was getting garbled input
- Input was 48kHz, Whisper expects 16kHz
- Added resampling in the receive path too
- Now it works end to end
...
Good (4 lines):
### openclaw-voice
- Two-way voice working: Piper TTS + Whisper STT, Safari frontend (`a2b1f09`..`b8d9e12`)
- Key fixes: AudioContext user gesture init, 48→16kHz resampling for Whisper
- Pending: LaunchAgent for auto-start, VAD chunk size fix
Your context window is a finite, non-renewable resource within a session. Treat it like RAM — fill it and you crash.
If a tool result is large and you need the data, write it to a file immediately. Don't hold it in context hoping to use it later. Extract what you need, save it, move on.
Your context window varies by model. As a rule of thumb:
contextTokens and compaction.reserveTokensFloor valuesYou're about to blow context if:
Every workspace should have these in .gitignore:
*.log
logs/
*.pyc
__pycache__/
node_modules/
.env
*.secret
*.key
data/
If you find a log file or runtime artifact tracked in git, remove it:
git rm --cached path/to/file.log
echo "path/to/file.log" >> .gitignore
git commit -m "chore: remove tracked log file, update .gitignore"
Before pushing any skill repo to GitHub, read and follow docs/ops/skill-publishing.md (canonical). Keep ClawBack's teaching copy in sync by running bash /Users/seneschal/.openclaw/workspace/scripts/sync-skill-publishing-sop.sh after any SOP change. Never push from the workspace root — workspace git is local-only.
Before publishing updates to this skill, follow references/versioning.md and run:
bash scripts/release-check.sh
For long-running and batch operations, see references/crash-recovery.md — covers ephemeral log avoidance, manifest-driven batches, git checkpoint protocol, detached execution, and Plan → Track → Verify.
| Situation | Action |
|-----------|--------|
| Just finished a fix | git commit -m "fix: what — why" |
| Just added a feature | git commit -m "feat: what — why" |
| About to do something risky | bash scripts/checkpoint.sh "reason" |
| Something broke after a change | bash scripts/rollback.sh <hash> "what" "why" "principle" |
| Need isolated parallel work | bash scripts/worktree.sh create <branch> |
| Need to cleanup old worktrees | bash scripts/worktree.sh cleanup |
| Preparing to publish skill updates | bash scripts/release-check.sh [base-ref] |
| Writing daily log | Max 5 lines/project, reference commits, target 60-80 lines total |
| Found a log file in git | git rm --cached, add to .gitignore |
git rev-parse --show-topleveldocs/ops/regressions.md (auto-created if missing).worktrees/ via scripts/worktree.shscripts/release-check.shMachine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/sene1337-clawback/snapshot"
curl -s "https://xpersona.co/api/v1/agents/sene1337-clawback/contract"
curl -s "https://xpersona.co/api/v1/agents/sene1337-clawback/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/sene1337-clawback/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/sene1337-clawback/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/sene1337-clawback/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/sene1337-clawback/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/sene1337-clawback/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/sene1337-clawback/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:58:41.114Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "consume",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "resume",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:consume|supported|profile capability:resume|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Sene1337",
"href": "https://github.com/sene1337/clawback",
"sourceUrl": "https://github.com/sene1337/clawback",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/sene1337-clawback/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/sene1337-clawback/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "19 GitHub stars",
"href": "https://github.com/sene1337/clawback",
"sourceUrl": "https://github.com/sene1337/clawback",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/sene1337-clawback/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/sene1337-clawback/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to clawback and adjacent AI workflows.