Jump to related tools in the same category or review the original source on GitHub.

Clawdbot Tools @massiveadam Updated 2/26/2026

Workspace OpenClaw Skill - ClawHub

Do you want your AI agent to automate Workspace workflows? This free skill from ClawHub helps with clawdbot tools tasks without building custom tools from scratch.

What this skill does

Replication of the "Gork" assistant functionality within OpenClaw.

Install

npx clawhub@latest install workspace

Full SKILL.md

Open original

Gork Legacy Skill

Replication of the "Gork" assistant functionality within OpenClaw.

Features

  • Task Management: AI-powered task extraction from notes and Slack.
  • Daily Note Automation: Automated rollover of incomplete tasks and template generation.
  • Sync Integrations:
    • Slack: Sync DMs and mentions into the vault.
    • Strava: Sync fitness activities and HR zone metrics.
    • Harvest: Start/stop timers and summarize billable hours.

Configuration (TOOLS.md)

Add these to your TOOLS.md:

### Gork Skill
- SLACK_USER_TOKEN: xoxp-...
- STRAVA_CLIENT_ID: ...
- STRAVA_CLIENT_SECRET: ...
- STRAVA_REFRESH_TOKEN: ...
- HARVEST_ACCESS_TOKEN: ...
- HARVEST_ACCOUNT_ID: ...
- OBSIDIAN_VAULT_PATH: /home/adam/.openclaw/workspace/vault

Database Schema (SQL)

The skill uses a local SQLite database gork.db with the following tables:

  • tasks: Centralized task store.
  • strava_activities: Fitness history.
  • note_processing_log: Audit trail for vault changes.

Logic Implementation

Task Rollover

Instead of modifying files directly via shell scripts, the OpenClaw agent uses the read and write tools to:

  1. Identify the previous day's daily note.
  2. Extract lines matching - [ ].
  3. Prepend them to the "Overdue" section of today's note.

Sync Logic

  • Slack: Periodic poll via web_fetch or a dedicated Python script (as seen in legacy).
  • Strava/Harvest: REST API calls to fetch data and update the local DB.

File Conflict Resolution

To avoid Obsidian sync conflicts:

  1. Atomic Writes: Always read the current file content before writing.
  2. Buffer Scratch: Users write to a "Scratch" section; OpenClaw clears it only after successful processing and commit.
  3. External DB: Tasks are mirrored in SQLite to ensure no loss if a file sync fails.
Original URL: https://github.com/openclaw/skills/blob/main/skills/massiveadam/workspace

Related skills

If this matches your use case, these are close alternatives in the same category.