Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/loud-clouds-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@trymeka/computer-provider-anchor-browser": patch
"@trymeka/computer-provider-scrapybara": patch
"@trymeka/computer-provider-core": patch
"@trymeka/computer-provider-e2b": patch
"@trymeka/ai-provider-vercel": patch
"@trymeka/core": patch
---

Remove explicit screenshot tool - not implemented
10 changes: 2 additions & 8 deletions packages/ai-provider-vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/ai-provider-vercel"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/ai-provider-vercel#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
10 changes: 2 additions & 8 deletions packages/computer-provider-anchor-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/computer-provider-anchor-browser"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/computer-provider-anchor-browser#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
10 changes: 2 additions & 8 deletions packages/computer-provider-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/computer-provider-core"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/computer-provider-core#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
10 changes: 2 additions & 8 deletions packages/computer-provider-e2b/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/computer-provider-e2b"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/computer-provider-e2b#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
10 changes: 2 additions & 8 deletions packages/computer-provider-scrapybara/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/computer-provider-scrapybara"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/computer-provider-scrapybara#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
10 changes: 2 additions & 8 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@
"access": "public"
},
"description": "TODO: Add description",
"keywords": [
"trymeka"
],
"keywords": ["trymeka"],
"repository": {
"type": "git",
"url": "git+https://github.com/trymeka/agent.git",
"directory": "packages/agent"
},
"license": "MIT",
"homepage": "https://github.com/trymeka/agent/tree/main/packages/agent#readme",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"files": ["dist", "!dist/**/*.map", "README.md"],
"exports": {
".": {
"typescript": "./src/index.ts",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/ai/prompts/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ You can interact with the application using these computer actions:
- **scroll**: Scroll at specific coordinates with scroll_x and scroll_y values
- **keypress**: Press specific key combinations
- **type**: Type text at the current cursor position (text must not be empty)
- **screenshot**: Take a screenshot of the current state
- **drag**: Drag along a path of coordinates
- **move**: Move cursor to specific coordinates

NOTE: Screenshots are taken automatically after every action - you don't need to explicitly request them.

## PLANNING INTEGRATION

When using the computer_action tool, you must provide planning information as part of each action:
Expand Down
Loading