skills/buffer-time/SKILL.md
Auto-add buffers between meetings for travel time and preparation
npx skillsauth add ticruz38/skills skills/buffer-timeInstall 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.
Automatically add buffer time between calendar meetings for travel, preparation, and decompression.
import { BufferTimeSkill } from '@openclaw/buffer-time';
const buffers = new BufferTimeSkill();
// Configure default buffer (15 minutes)
await buffers.setDefaultBuffer(15);
// Add a meeting with buffer
await buffers.scheduleWithBuffer({
summary: 'Client Meeting',
start: { dateTime: '2024-01-15T10:00:00' },
end: { dateTime: '2024-01-15T11:00:00' },
location: 'Downtown Office',
bufferMinutes: 30 // Extra buffer for this meeting
});
// Analyze existing meetings for missing buffers
const gaps = await buffers.findMissingBuffers();
// Close connection
await buffers.close();
# Status check
npx @openclaw/buffer-time status
# Set default buffer
npx @openclaw/buffer-time set-default 15
# Check existing meetings for buffer gaps
npx @openclaw/buffer-time analyze
# Add buffers to existing meetings
npx @openclaw/buffer-time apply --dry-run
testing
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.