
Beeper
- 46 installs
- 6.5k repo stars
- Updated August 3, 2026
- steipete/agent-scripts
Helps with ai & agent building tasks during AI-assisted development.
About
beeper is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- beeper
- AI & Agent Building
- AI-coding skill
Beeper by the numbers
- 46 all-time installs (skills.sh)
- +3 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #7,539 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/steipete/agent-scripts --skill beeperAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 46 |
|---|---|
| repo stars | ★ 6.5k |
| Last updated | August 3, 2026 |
| Repository | steipete/agent-scripts ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Beeper
Use this for local Beeper history questions, especially vague contact hints across iMessage/WhatsApp bridges.
Source
- DB:
~/Library/Application Support/BeeperTexts/index.db - FTS:
mx_room_messages_fts
Start by inspecting accounts/rooms before broad searching.
Workflow
1. Identify likely account/bridge/room from accounts, participants, and room tables. 2. Use FTS for text discovery. 3. Narrow by date, participant, and room. 4. Report room/account names, date spans, and confidence.
Useful probes:
sqlite3 "$HOME/Library/Application Support/BeeperTexts/index.db" \
"select * from accounts limit 20;"sqlite3 "$HOME/Library/Application Support/BeeperTexts/index.db" \
"select rowid, content from mx_room_messages_fts where mx_room_messages_fts match 'query' limit 20;"Keep results local; this DB can contain private messages.