commitment-tracker
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".
Install / Use
npx skills add netanel-abergel/pa-skillsInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Skill content
View source on GitHubname: commitment-tracker description: 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.
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:
- Scan your reply for trigger words above
- If found → execute the committed action now (send the message, update the file, etc.)
- Only after execution → include the result in your reply (e.g. "שלחתי ✅" not "אשלח")
- 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".
Related Skills
career-ops
72.3kOpen-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
ai-job-search
43.5kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.6kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
guizang-ppt-skill
26.7kAI-agent Skill for generating polished HTML slide decks: editorial magazine and Swiss layouts, image prompts, social covers, and a WebGL/low-power presentation runtime.
Security Score
Audited on Invalid Date
