Rename project to DroidClaw

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-06 17:51:08 +05:30
parent caa7c9a371
commit 76b7bce405
14 changed files with 17 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/**
* Action execution module for Android Action Kernel.
* Action execution module for DroidClaw.
* Handles all ADB commands for interacting with Android devices.
*
* Supported actions:

View File

@@ -1,5 +1,5 @@
/**
* Configuration management for Android Action Kernel.
* Configuration management for DroidClaw.
* Bun natively loads .env files — no dotenv needed.
*/

View File

@@ -1,5 +1,5 @@
/**
* Constants for Android Action Kernel.
* Constants for DroidClaw.
* All magic strings, URLs, and fixed values in one place.
*/

View File

@@ -1,5 +1,5 @@
/**
* Android Action Kernel - Main Agent Loop (TypeScript/Bun Edition)
* DroidClaw - Main Agent Loop (TypeScript/Bun Edition)
*
* An AI agent that controls Android devices through the accessibility API.
* Uses LLMs to make decisions based on screen context.
@@ -202,7 +202,7 @@ async function runAgent(goal: string, maxSteps?: number): Promise<void> {
console.log("Screen resolution: using default 1080x2400 swipe coords");
}
console.log("Android Action Kernel Started");
console.log("DroidClaw Started");
console.log(`Goal: ${goal}`);
console.log(`Provider: ${Config.LLM_PROVIDER} (${Config.getModel()})`);
console.log(`Max steps: ${steps} | Step delay: ${Config.STEP_DELAY}s`);

View File

@@ -1,5 +1,5 @@
/**
* LLM Provider module for Android Action Kernel.
* LLM Provider module for DroidClaw.
* Supports OpenAI, Groq, AWS Bedrock, and OpenRouter (via Vercel AI SDK).
*
* Phase 3: Real multimodal vision (image content parts)

View File

@@ -1,5 +1,5 @@
/**
* Session logging for Android Action Kernel.
* Session logging for DroidClaw.
* Writes incremental .partial.json after each step (crash-safe),
* and a final .json summary at session end.
*/

View File

@@ -1,5 +1,5 @@
/**
* XML Sanitizer for Android Action Kernel.
* XML Sanitizer for DroidClaw.
* Parses Android Accessibility XML and extracts interactive UI elements
* with full state information and parent-child hierarchy context.
*/