openclaw/clawhub · Archived

convex-retention

Use when adding or changing ClawHub Convex tables, TTL fields, cleanup crons, retention policy, auth/session cleanup, metric dedupe cleanup, or deprecated table removal

First seen Jul 10, 2026

Installation

$ npx skills add openclaw/clawhub --skill convex-retention

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from openclaw/clawhub · top by installs.

npx skills add openclaw/clawhub

Browse all from openclaw/clawhub

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 9.3K
License LICENSE
Default branch main
Open issues 38
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,791 B
  • docs SUMMARY.md 192 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Convex Retention

Overview

ClawHub retention is code-owned. Every current Convex table must be classified in convex/lib/retentionPolicy.ts, and ephemeral tables need an indexed, bounded cleanup path unless their lifecycle is handled by usage-time validation or a documented component.

Checklist

  • Use clawhub-convex and read convex/_generated/ai/guidelines.md first.
  • Add every new schema table to RETENTION_POLICIES; the Record<TableNames, RetentionPolicy> type

is the enforcement gate.

  • For ephemeral tables, prefer an explicit expiration field plus index, then prune with .withIndex()

and .take(...).

  • For new generic TTL tables, prefer expirationTime to match Convex Auth. Keep existing expiresAt,

dayStart, and processedAt fields unless that table already needs a real migration.

  • Use RETENTIONSTANDARDBATCH_SIZE for ordinary retention jobs. Keep incident-tested special cases,

such as skillStatEvents, on their documented caps.

  • Cron jobs should schedule bounded cleanup entrypoints only. Large one-off production migrations or

destructive backfills still start with convex-migration-helper.

  • Do not bulk-clear active auth state. Expired authSessions and authRefreshTokens are pruned by

convex/retention.ts.

Verification

  • Add or update focused tests for policy classification and cleanup behavior.
  • Run the focused Vitest slice for touched cleanup modules.
  • Run bunx convex codegen after schema/API changes.
  • Run a real Convex runtime check such as bunx convex dev --once --typecheck=disable.