Agent skill
time-tracking-common-issues
Sub-skill of time-tracking: Common Issues.
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/business/productivity/time-tracking/common-issues
SKILL.md
Common Issues
Common Issues
Issue: 403 Forbidden (Toggl)
# Check API token
curl -u "YOUR_TOKEN:api_token" "https://api.track.toggl.com/api/v9/me"
# Ensure token has proper permissions
# Regenerate token at: https://track.toggl.com/profile
Issue: Empty response (RescueTime)
# Check if data exists for date range
# RescueTime only has data when the client is running
# Verify API key
curl "https://www.rescuetime.com/anapi/data?key=YOUR_KEY&format=json"
Issue: Time zone issues
# Always use UTC for Toggl API
from datetime import datetime, timezone
start = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S.000Z")
Issue: Duration calculation
# Running entries have negative duration
entry = toggl.get_current_entry()
if entry and entry.get("duration", 0) < 0:
# Calculate actual duration
start = datetime.fromisoformat(entry["start"].replace("Z", "+00:00"))
duration = (datetime.now(timezone.utc) - start).total_seconds()
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?