スキル一覧に戻る
alexborgognoni

db-explore

by alexborgognoni

RentPath is a rental property management platform built for European landlords, property managers, and tenants.

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

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

TaskTool
View schemadatabase-schema
Run queriesdatabase-query (SELECT only)
Eloquenttinker

Key Tables

TablePurpose
usersAuthentication
property_managersPM profiles (user_id, type, verified_at)
tenant_profilesTenant profiles (employment, docs)
propertiesListings (status, visibility)
applicationsTenant apps (status workflow)
leadsConversion tracking
application_invite_tokensAccess 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

UsageBehavior
/db-exploreSchema overview
/db-explore applicationsFocus on table
/db-explore schemaFull 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

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です