skills/client-tracker/SKILL.md
Track client payment behavior and history
npx skillsauth add ticruz38/skills skills/client-trackerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Client Tracker skill provides comprehensive client relationship management with payment behavior tracking, credit risk scoring, and communication history.
cd skills/client-tracker
npm install
npm run build
# List all clients with summary
client-tracker list
# Get detailed client profile
client-tracker profile <client-id>
# View payment history
client-tracker payments <client-id>
# Check credit risk score
client-tracker risk <client-id>
# Add communication log entry
client-tracker log <client-id> "Discussed payment plan"
# View communication history
client-tracker communications <client-id>
# Get outstanding balances report
client-tracker balances
# Export client data
client-tracker export [path]
# Overall statistics
client-tracker stats
import { ClientTrackerSkill } from '@openclaw/client-tracker';
const tracker = new ClientTrackerSkill();
// Get client with payment stats
const client = await tracker.getClientProfile(clientId);
// Check credit risk
const risk = await tracker.getRiskScore(clientId);
// Add communication log
await tracker.addCommunication(clientId, {
type: 'call',
content: 'Discussed payment schedule',
});
@openclaw/invoices - For client and invoice datatesting
Suggest recipes based on dietary preferences, available ingredients, and cuisine preferences
development
Extract data from receipt photos using Google Vision API
business
QuickBooks Online integration for accounting sync - sync customers, invoices, and transactions with two-way sync and conflict resolution
testing
QuickBooks OAuth adapter for QuickBooks Online accounting integration. Built on top of auth-provider for secure token management with automatic refresh, multi-profile support, sandbox/production toggle, and health checks.