TIDY Concierge

Concierge

TIDY Concierge

The Concierge combines our AI agent with 24/7 humans to help.

AI can make mistakes. Please verify important information.

Agent Skills

TIDY agent skills are pre-built instruction sets that teach AI agents how to manage properties through TIDY. Install a skill and your agent immediately understands how to schedule cleanings, manage turnovers, report maintenance issues, and more.

Quick Install

Install all TIDY skills with one command:

npx skills add TIDYAPP/tidy-agent-skills

Or install a specific skill:

# For vacation rental / short-term rental management
npx skills add TIDYAPP/tidy-agent-skills --skill tidy-vacation-rental

# For general cleaning & maintenance management
npx skills add TIDYAPP/tidy-agent-skills --skill tidy-cleaning-maintenance

Available Skills

tidy-vacation-rental

For: Airbnb hosts, VRBO managers, vacation rental operators, property managers with guest turnover.

This skill teaches your agent to:

  • Track guest reservations (check-in/check-out)
  • Auto-schedule turnover cleanings based on checkout times
  • Manage pre-arrival preparation and post-departure cleanup
  • Coordinate multi-property turnovers
  • Manage to-do checklists for turnovers

tidy-cleaning-maintenance

For: Homeowners, office managers, building managers — anyone who needs recurring cleaning or maintenance tracking without guest turnover cycles.

This skill teaches your agent to:

  • Book one-time or recurring cleanings
  • Report and track maintenance issues
  • Manage service professionals
  • Check availability and market pricing
  • Set up properties with access notes and parking info

Compatible Agents

TIDY skills work with any agent that supports the skills.sh ecosystem:

  • Claude Code
  • Codex CLI
  • Gemini CLI
  • Cursor
  • Claude Desktop
  • Windsurf
  • GitHub Copilot
  • OpenClaw

How Skills Work

Skills are markdown instruction files that get loaded into your agent's context. They contain:

  1. Workflow knowledge — How to think about property management tasks (e.g., "a guest checks out Saturday, schedule the turnover clean, prepare for Sunday check-in")
  2. API patterns — Which endpoints to call and in what order
  3. Authentication — How to handle the TIDY_API_TOKEN environment variable
  4. Example scenarios — Common requests with expected responses
Skills vs MCP: Skills teach your agent about TIDY workflows and best practices. The MCP server provides the actual tool connection. For the best experience, use both together.

Available On

MarketplaceInstall Method
skills.shnpx skills add TIDYAPP/tidy-agent-skills
SkillsMPAuto-discovered from GitHub
LobeHubSearch for "TIDY" in the marketplace
SkillHubSearch for "TIDY" in the marketplace
ClawHubSearch for "TIDY" in the marketplace

Authentication

Skills use the TIDY_API_TOKEN environment variable. Set it before starting your agent:

export TIDY_API_TOKEN=your-api-token

See the Authentication guide for how to obtain a token.

Next Steps