Your Personal Gear Lending Tracker: Never Lose Track of a Borrowed Tool Again

Productivity beginner 6 min read

A well-organized pegboard of tools in a garage workshop

You lend your drill. Two months later you’re at the hardware store buying a new blade and wondering where your original bit set went. Your neighbor borrowed your WiFi extender for a weekend trip and it’s November now. Your brother borrowed your portable hard drive “for a day” and you’ve been working off your internal SSD ever since.

Sound familiar? Gear lending is one of those small social frictions that quietly compounds. The problem isn’t that you don’t want to lend things — it’s that nobody tracks what they lend. There’s no system. It just lives in your head, and your head is unreliable.

OpenClaw can be your gear librarian.

What This Solves

Lent-and-forgotten. That power washer you lent to your cousin in April. You remember it exists when you need it in July and it’s nowhere to be found. A lending tracker means you always know exactly where your things are.

Awkward follow-up conversations. “Hey, do you still have my…” is a fine sentence to automate. OpenClaw sends a friendly reminder after a configurable threshold — one week for a phone charger, one month for a tool, three months for a book.

Item accountability across your network. Over time you build a picture of who borrows what and returns it reliably. Maybe you lend your camera gear to one friend and your chainsaw to another. The system knows.

Protecting your stuff. Most people’s renter’s or homeowner’s insurance has coverage limits for borrowed equipment. If your $400 tool walks away, you want a record of who had it and when.

How It Works

1. Create Your Gear Inventory

Start with the things worth tracking — not every cable and adapter, but the items that have real value, are hard to replace, or tend to migrate:

# ~/lending/inventory.yaml
items:
  - id: dewalt-drill
    name: "DeWalt 20V Cordless Drill"
    category: power-tool
    value: 280
    condition: excellent
    notes: "Includes two batteries, charger, and bit set"

  - id: canon-r6
    name: "Canon EOS R6 Body"
    category: camera
    value: 2500
    condition: excellent
    notes: "With 32GB SD card — do not format"

  - id: makita-circular-saw
    name: "Makita 7-1/4\" Circular Saw"
    category: power-tool
    value: 180
    condition: good

  - id: wd-mypassport
    name: "WD My Passport 5TB (silver)"
    category: storage
    value: 130
    notes: "Contains all photo backups — critical"

  - id: dewalt-compressor
    name: "DeWalt Portable Air Compressor"
    category: power-tool
    value: 220
    condition: good

2. Log a Loan

When you lend something, a quick message to OpenClaw:

“Lent my Canon EOS R6 to Marcus for the weekend — he’s shooting a friend’s engagement photos.”

OpenClaw logs it with the date, borrower, stated duration, and purpose. It goes into ~/lending/loans.yaml:

loans:
  - id: loan-001
    item: canon-r6
    borrower: Marcus Chen
    borrower_contact: "@marcusc"
    lent_date: 2026-08-01
    expected_return: 2026-08-04
    purpose: "Engagement photos — Sofia & James"
    status: active
    notes: "He has his own 85mm lens"

  - id: loan-002
    item: wd-mypassport
    borrower: "Tyler (brother)"
    lent_date: 2026-06-10
    expected_return: 2026-06-11
    status: overdue
    reminder_count: 3
    notes: "Photo backups from 2025 — important"

3. Automated Check-ins

Set up a daily or weekly cron job that reviews outstanding loans:

# Cron: every Sunday at 10am
# OpenClaw checks:
# 1. Which loans are past expected return?
# 2. Which have had no update in 30+ days?
# 3. Which items have never been borrowed?

For overdue items, it sends you a summary:

Outstanding loans:

  • Canon R6 → Marcus Chen: was due back Aug 4, now 3 days overdue
  • WD My Passport → Tyler (brother): was due back Jun 11, now 57 days overdue
  • Makita Circular Saw → Jordan: no return date set, last update 45 days ago

Suggested action: “Hey, do you still have my portable hard drive? No rush, just want to make sure I know where it is.”

For new loans past a soft threshold (say, 75% of expected duration with no update), it prompts for confirmation:

“Marcus said he’d return the Canon R6 by Aug 4. Want to follow up?“

4. Return and Condition Log

When gear comes back, you log it:

“Canon R6 returned by Marcus. Condition: good, sensor clean, all accessories present.”

OpenClaw archives the loan record with a condition note. Over time you get a lending history per item — some things get borrowed constantly and might need attention, others sit untouched for years.

What You Need

  • OpenClaw with Telegram or your preferred channel
  • A simple YAML file for inventory and loans (we can make this more elaborate with a SQLite DB if you have dozens of items)
  • A cron job running daily or weekly to catch overdue items
  • The discipline to log loans when you make them — takes 30 seconds and pays off for months

Limitations

  • This works only if you actually log the loans. A system is only as good as its inputs.
  • It can’t physically retrieve your stuff — it just makes sure you know where it is and when to ask.
  • For high-value items (jewelry, expensive electronics), consider a separate record with serial numbers or photos.
  • If you’re lending to people who don’t use Telegram, the follow-up reminders are for you — you’ll need to do the asking yourself.

The Bigger Picture

Most people have a mental list of “things I lent that I haven’t gotten back.” It’s vague and uncomfortable. A lending tracker makes it concrete, removes the social awkwardness (you’re just asking because your system flagged it, not because you’re upset), and protects you when expensive equipment goes missing.

After a few months of logging, you’ll also start noticing patterns: which friends reliably return things, which items get borrowed constantly (maybe it’s worth buying a dedicated second unit), and which lending situations end badly. That’s genuinely useful data about your social network and your gear — data you currently have no way to collect.

Start with the three most-borrowed items in your home. Log them. You’ll never wonder where your drill bit set went again.

Want to try this with OpenClaw?

OpenClaw is free and open source. Get started at openclaw.ai

Try OpenClaw →