mirror of
https://github.com/droidrun/droidrun.git
synced 2026-05-23 07:40:37 +00:00
Move all root-level doc pages (overview, quickstart, features, concepts, guides, sdk) into docs/v4/ to match the versioning pattern used by v1/v2/v3. Update docs.json navigation and all internal cross-references to use /v4/ prefix. Fix broken anchor link in app-cards.mdx.
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
---
|
|
title: 'Reference'
|
|
description: 'Complete API reference for Droidrun components and tools'
|
|
---
|
|
|
|
## Overview
|
|
|
|
The Droidrun SDK provides a comprehensive set of APIs for building mobile automation workflows with AI agents. This reference documentation covers all major components and tools.
|
|
|
|
---
|
|
|
|
## Core Components
|
|
|
|
<CardGroup cols={2}>
|
|
<Card title="DroidAgent" icon="bot" href="./droid-agent">
|
|
Main agent coordinator with multi-agent orchestration
|
|
</Card>
|
|
<Card title="ADB Tools" icon="smartphone" href="./adb-tools">
|
|
Android device control via ADB
|
|
</Card>
|
|
<Card title="iOS Tools" icon="monitor-smartphone" href="./ios-tools">
|
|
iOS device control and automation
|
|
</Card>
|
|
<Card title="Base Tools" icon="wrench" href="./base-tools">
|
|
Abstract base classes for tool implementations
|
|
</Card>
|
|
</CardGroup>
|
|
|
|
---
|
|
|
|
## Configuration
|
|
|
|
<Card title="Configuration API" icon="settings" href="./configuration">
|
|
DroidrunConfig API and YAML configuration reference
|
|
</Card>
|
|
|
|
---
|
|
|
|
## API Documentation
|
|
|
|
Detailed API documentation for each component is available in the sections linked above. Each page includes:
|
|
|
|
- Class/function signatures
|
|
- Parameter descriptions
|
|
- Return types
|
|
- Usage examples
|
|
- Best practices
|
|
|
|
For conceptual guides and tutorials, see the [Guides](/v4/guides/overview) section.
|