Explore a Repository
Prompts to understand a project's structure, recent changes, and current state.
Browse the Codebase
"Show me the directory structure of
my-org/api"
"What's in the
src/services/directory?"
"Read the file
src/config.tsinmy-org/api"
json
{
"action": "tree",
"project_id": "my-org/api",
"path": "",
"per_page": 50
}json
{
"action": "tree",
"project_id": "my-org/api",
"path": "src/services",
"per_page": 50
}json
{
"action": "content",
"project_id": "my-org/api",
"file_path": "src/config.ts"
}View Recent Changes
"Show me the last 10 commits in
my-org/api"
"What changed in the
mainbranch this week?"
"Who committed to
my-org/apitoday?"
json
{
"action": "list",
"project_id": "my-org/api",
"per_page": 10
}json
{
"action": "list",
"project_id": "my-org/api",
"since": "2025-01-20T00:00:00Z",
"per_page": 20
}json
{
"action": "list",
"project_id": "my-org/api",
"author": "[email protected]",
"per_page": 10
}Inspect a Specific Commit
"Show me the details of commit
abc1234inmy-org/api"
"What files changed in the last commit?"
json
{
"action": "get",
"project_id": "my-org/api",
"sha": "abc1234",
"stats": true
}json
{
"action": "diff",
"project_id": "my-org/api",
"sha": "abc1234",
"per_page": 20
}Check Project Activity
"What happened in
my-org/apirecently?"
"Show me push events from the last week"
json
{
"action": "project",
"project_id": "my-org/api",
"per_page": 20
}json
{
"action": "project",
"project_id": "my-org/api",
"event_action": "pushed",
"per_page": 20
}Next Steps
- Check Status — Monitor MRs and pipelines
- Code Review Prompts — Start reviewing code
