KS
Killer-Skills

crdt — how to use crdt how to use crdt, crdt vs expense trackers, crdt setup guide, what is crdt, crdt alternative to mint, crdt install for web developers, crdt best practices for financial management, crdt and TypeScript integration, crdt crypto random UUID

v1.0.0
GitHub

About this Skill

Perfect for Finance Management Agents needing advanced expense tracking capabilities with draft-style mutations and unique ID generation. crdt is a web application designed to track financial transactions using TypeScript and crypto.randomUUID() for unique ID generation

Features

Utilizes draft-style mutations for efficient state updates
Employs crypto.randomUUID() for unique transaction ID generation
Supports soft deletes by setting deletedAt timestamps
Imports types from schema.ts for consistent data modeling
Enforces change tracking by mutating state in place

# Core Topics

bentefay bentefay
[0]
[0]
Updated: 3/6/2026

Quality Score

Top 5%
39
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add bentefay/moneyflow/crdt

Agent Capability Analysis

The crdt MCP Server by bentefay is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use crdt, crdt vs expense trackers, crdt setup guide.

Ideal Agent Persona

Perfect for Finance Management Agents needing advanced expense tracking capabilities with draft-style mutations and unique ID generation.

Core Value

Empowers agents to manage finances effectively using draft-style mutations, providing change tracking and utilizing crypto.randomUUID() for ID generation, while following strict guidelines for soft deletes and state mutations.

Capabilities Granted for crdt MCP Server

Mutating transaction states in place for accurate expense tracking
Generating unique IDs for new transactions using crypto.randomUUID()
Implementing soft deletes by setting deletedAt timestamps

! Prerequisites & Limits

  • Requires strict adherence to draft-style mutation guidelines
  • Must use crypto.randomUUID() for ID generation
  • Only utilizes soft deletes, never removing documents
Project
SKILL.md
1.0 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

CRDT Guidelines

Critical: Draft-Style Mutations Only

typescript
1// CORRECT - mutate in place 2setState((state) => { 3 state.transactions[id] = transaction; 4}); 5 6// WRONG - returning new objects breaks change tracking 7setState((state) => ({ 8 ...state, 9 transactions: { ...state.transactions, [id]: transaction }, 10}));

Rules

  • Import types from schema.ts, don't redeclare
  • Soft deletes: Set deletedAt timestamp, never remove from document
  • Use crypto.randomUUID() for IDs, Date.now() for timestamps

Schema Pattern

typescript
1export const entitySchema = schema.LoroMap({ 2 id: schema.String({ required: true }), 3 // ... fields 4 deletedAt: schema.Number(), // 0 = not deleted, >0 = timestamp 5});

React Hooks

  • useActiveTransactions() - excludes soft-deleted
  • useTransactions() - includes soft-deleted
  • useVaultAction() - for mutations

Sync

  • Updates encrypted before leaving client
  • Loro handles versioning via version vectors
  • Conflicts: last-write-wins per field

Related Skills

Looking for an alternative to crdt or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication