CO

Ensures every promise made in a conversation is fulfilled instantly, preventing forgotten tasks.

Install

mkdir -p .claude/skills/commitment-tracker && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13449" && unzip -o skill.zip -d .claude/skills/commitment-tracker && rm skill.zip

Installs to .claude/skills/commitment-tracker

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Enforce immediate execution of any commitment made in a reply. Use this skill before finalizing ANY reply that contains a promise to act — phrases like "אדווח", "אעדכן", "אשלח", "אחזור אליך", "I'll send", "I'll report", "I'll follow up", "I'll update". Prevents the agent from saying it will do something and then not doing it.
327 charsno explicit “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • Scan replies for commitment trigger words.
  • Execute committed actions immediately before sending a reply.
  • Include the result of the action in the reply.
  • Rewrite replies if an action cannot be executed immediately.
  • Log pending commitments to a file for fault tolerance.

How it works

Before finalizing a reply, the skill scans for specific commitment phrases and, if found, forces the immediate execution of the promised action, then includes the result in the reply.

Inputs & outputs

You give it
A reply containing a commitment phrase like "I'll send" or "אדווח".
You get back
A reply that confirms the immediate execution of the promised action, or a revised reply explaining why the action cannot be completed.

When to use commitment-tracker

  • Enforcing completion of promised reports
  • Ensuring messages are sent when promised
  • Updating stakeholders in real-time
  • Preventing deferred follow-up tasks

About this skill

Commitment Tracker

The Rule

If your reply contains a commitment → execute it NOW, before sending the reply.

No deferred promises. No "I'll do it after". Either do it in this turn, or don't say it.

Commitment Trigger Words

Hebrew: אדווח, אעדכן, אשלח, אוסיף, אחזור אליך, אבדוק ואחזור, אתעדכן, אשאיר הודעה, אעביר

English: I'll send, I'll report, I'll update, I'll follow up, I'll check, I'll let you know, I'll message, I'll notify

Protocol

Before finalizing any reply:

  1. Scan your reply for trigger words above
  2. If found → execute the committed action now (send the message, update the file, etc.)
  3. Only after execution → include the result in your reply (e.g. "שלחתי ✅" not "אשלח")
  4. If you can't execute now → rewrite the reply to not promise it (say "לא יכולה לשלוח כרגע כי X")

Anti-Patterns

❌ "אדווח לנתנאל" → without actually messaging him
❌ "אעדכן את הקבוצה" → without actually sending to the group
❌ "אשלח לך סיכום" → without actually sending it

Correct Pattern

✅ Execute the action → then report: "עדכנתי את נתנאל ✅"
✅ If blocked: "לא יכולה לשלוח כי אין לי את ה-JID — צריכה עזרה"

Fault Tolerance — Intent Log

Before executing any commitment, write an intent record to prevent loss on gateway crash:

COMMITMENTS=/path/to/workspace/data/commitments.jsonl
mkdir -p $(dirname $COMMITMENTS)
echo "{\"ts\":\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\",\"action\":\"DESCRIBE_ACTION\",\"target\":\"TARGET\",\"status\":\"pending\"}" >> $COMMITMENTS

After successful execution, mark done:

# Append a done record (simpler than editing in-place)
echo "{\"ts\":\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\",\"action\":\"DESCRIBE_ACTION\",\"target\":\"TARGET\",\"status\":\"done\"}" >> $COMMITMENTS

Recovery — On Every Session Start / Heartbeat

Scan for unresolved commitments:

python3 -c "
import json
log = '/path/to/workspace/data/commitments.jsonl'
try:
    lines = [json.loads(l) for l in open(log)]
    done_actions = {l['action'] for l in lines if l.get('status')=='done'}
    pending = [l for l in lines if l.get('status')=='pending' and l['action'] not in done_actions]
    if pending:
        for p in pending: print(f\"PENDING: {p['action']} → {p['target']} (since {p['ts']})\")
except FileNotFoundError:
    pass
"

If any pending found → execute immediately and close the loop with the owner.

Cleanup — Delete Done Entries

After recovery scan, remove all done entries — they served their purpose:

python3 -c "
import json
log = '/path/to/workspace/data/commitments.jsonl'
try:
    lines = [json.loads(l) for l in open(log)]
    pending_only = [l for l in lines if l.get('status') != 'done']
    with open(log, 'w') as f:
        for l in pending_only: f.write(json.dumps(l)+'\\n')
except FileNotFoundError:
    pass
"

File only ever contains unresolved commitments — stays near-zero in normal operation.

Scope

Applies to ALL surfaces: DMs, groups, internal actions, cross-PA messages.
No exceptions for "it's obvious" or "they'll understand".

Limitations

  • Applies to all surfaces including DMs, groups, internal actions, and cross-PA messages.

How it compares

This skill prevents deferred promises by requiring immediate action and confirmation within the same turn, unlike a manual process where actions might be forgotten or delayed.

Compared to similar skills

commitment-tracker side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
commitment-tracker (this skill)03moReviewBeginner
pptx3936moReviewAdvanced
nano-pdf632moReviewBeginner
video-downloader1017moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

pptx

anthropics

Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks

393763

nano-pdf

openclaw

Edit PDFs with natural-language instructions using the nano-pdf CLI.

63300

video-downloader

ComposioHQ

Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.

101255

youtube-transcript

michalparkola

Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.

68277

using-superpowers

obra

Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists

95205

browser-automation

browserbase

Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications. Triggers include "browse", "navigate to", "go to website", "extract data from webpage", "screenshot", "web scraping", "fill out form", "click on", "search for on the web". When taking actions be as specific as possible.

39230

Search skills

Search the agent skills registry