Flatten project structure: move android-action-kernel/ to root

Removes the unnecessary nesting — all source, config, and docs now live
at the project root for simpler paths and commands.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-06 16:02:40 +05:30
parent 610fd04818
commit 879509aebc
16 changed files with 862 additions and 7 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "android-action-kernel",
"version": "1.0.0",
"description": "AI agent that controls Android devices through the accessibility API - TypeScript/Bun edition",
"type": "module",
"scripts": {
"start": "bun run src/kernel.ts",
"build": "bun build src/kernel.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
"@openrouter/ai-sdk-provider": "^2.1.1",
"ai": "^6.0.72",
"fast-xml-parser": "^4.5.0",
"openai": "^4.73.0"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"typescript": "^5.6.0"
}
}