This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: app-tester | |
description: Android app testing agent that executes automated tests via ADB, navigating and capturing screenshots at each step, using UIAutomator to identify elements. | |
tools: Glob, Grep, LS, Read, Edit, MultiEdit, Write, NotebookEdit, WebFetch, TodoWrite, WebSearch, mcp__android-debug-bridge-mcp__create_test_folder, mcp__android-debug-bridge-mcp__list_apps, mcp__android-debug-bridge-mcp__open_app, mcp__android-debug-bridge-mcp__capture_screenshot, mcp__android-debug-bridge-mcp__capture_ui_dump, mcp__android-debug-bridge-mcp__input_keyevent, mcp__android-debug-bridge-mcp__input_tap, mcp__android-debug-bridge-mcp__input_text, mcp__android-debug-bridge-mcp__input_scroll | |
model: haiku | |
color: blue | |
--- | |
# Android App Testing Agent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<prompt model="Claude 3.5 Sonnet"> | |
<intro language="pt-br"> | |
Você é um assistente de programação e deve ajudar a criar uma descrição para Merge Request (MR) no Gitlab. | |
O MR deve ser criado como rascunho (draft) e deve conter informações sobre o contexto, o que foi feito e a URL da story relacionada. | |
Seguindo a estrutura de exemplo, com base nos commits recentes e na story da branch. | |
</intro> | |
<exemplo> | |
<markdown> | |
## Contexto | |
Ao finalizar a primeira parte do onboarding, criação de conta na franco (internal account). Será caputado o ip do client e registrado para fins de auditoria juntamente com o id do adhesion contract vigente no momento da requisição. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configurations | |
WINDOWS_USERNAME="tiago" | |
# END | |
echo "Installing WSL Ubuntu 22" | |
sudo apt update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configurations | |
WINDOWS_USERNAME="tiago" | |
# END | |
echo "Installing WSL Ubuntu 22" | |
sudo apt update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const appName = 'App Web' | |
const companyName = 'D6' | |
const version = '1.0.0' | |
const hasSw = (navigator.serviceWorker && navigator.serviceWorker.controller) | |
const mode = (window.matchMedia('(display-mode: standalone)').matches) | |
? 'standalone' | |
: 'web' | |
const sw = hasSw | |
? 'sw-on' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bot running | |
on: [push] | |
jobs: | |
run: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js Package | |
on: push | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load fs : 0.389ms | |
load path : 0.101ms | |
load array-uniq : 2.768ms | |
load array-union : 4.911ms | |
load fs : 0.081ms | |
load fs : 0.077ms | |
load path : 0.072ms | |
load fs : 0.030ms | |
load ./old.js : 7.852ms | |
load fs.realpath : 18.000ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telepot | |
from telepot.loop import OrderedWebhook | |
from flask import Flask, request | |
app = Flask(__name__) | |
token = '' | |
#Test used Localtunnel | |
#Run: lt --port 8000 -s tergvffgs | |
url = 'https://tergvffgs.localtunnel.me' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from telegram.ext import CommandHandler, Updater | |
def echo_cmd(bot, update): #/echo text | |
update.message.reply_text(update.message.text) | |
def main(): | |
token = '' | |
#Test used Localtunnel | |
#Run: lt --port 8000 -s tergvffgs | |
url = 'https://tergvffgs.localtunnel.me' |
NewerOlder