← Back to list

db-explore
by alexborgognoni
RentPath is a rental property management platform built for European landlords, property managers, and tenants.
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: db-explore description: Safe database exploration using Laravel Boost tools. Use for querying data, understanding schema, checking records, and debugging data issues. Auto-triggers on "query database", "check data", "find records", "database query", "show me the data".
Database Exploration
Tools
| Task | Tool |
|---|---|
| View schema | database-schema |
| Run queries | database-query (SELECT only) |
| Eloquent | tinker |
Key Tables
| Table | Purpose |
|---|---|
| users | Authentication |
| property_managers | PM profiles (user_id, type, verified_at) |
| tenant_profiles | Tenant profiles (employment, docs) |
| properties | Listings (status, visibility) |
| applications | Tenant apps (status workflow) |
| leads | Conversion tracking |
| application_invite_tokens | Access control |
Common Queries
SQL (database-query):
SELECT status, COUNT(*) FROM applications GROUP BY status;
SELECT * FROM users WHERE email = 'test@example.com';
Eloquent (tinker):
User::with(['propertyManager', 'tenantProfile'])->find(1);
Application::where('status', 'submitted')->count();
Property::withCount('applications')->orderByDesc('applications_count')->take(10)->get();
Arguments
| Usage | Behavior |
|---|---|
/db-explore | Schema overview |
/db-explore applications | Focus on table |
/db-explore schema | Full schema |
/db-explore "status = 'draft'" | Run condition |
Safety
database-query= read-only (SELECT, SHOW, EXPLAIN, DESCRIBE)- Always use LIMIT
- Use tinker with approval for writes
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

