Date: November 18, 2025
Status: Approved Design
Category: Mobile Application - Entertainment
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
| // ab-batch-type: Fast keyboard typing for canvas-based web apps via agent-browser daemon. | |
| // Sends all keystrokes through the daemon's keyboard action (trusted CDP events, single event path). | |
| // | |
| // Usage: | |
| // node <this-script> "text" Tab "text" Enter ... # args mode | |
| // echo '"text" Tab "text" Enter ...' | node <this-script> # stdin mode (unlimited size) | |
| // | |
| // Stdin mode reads all input, splits on whitespace (respecting "quoted strings"), | |
| // and processes identically to arg mode. Use for large payloads that exceed shell | |
| // argument limits. |
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
| #!/bin/bash | |
| set -u | |
| set -o pipefail | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Convert to webp | |
| # @raycast.mode silent | |
| # Optional parameters: |
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
| #!/bin/bash | |
| CLAUDE_DIR="$HOME/.claude" | |
| SETTINGS="$CLAUDE_DIR/settings.json" | |
| ZAI_SETTINGS="$CLAUDE_DIR/settings_zai.json" | |
| # Renkler | |
| GREEN='\033[0;32m' | |
| BOLD='\033[1m' | |
| RESET='\033[0m' |
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
| #!/bin/bash | |
| ################################################################################ | |
| # AUTONOMOUS AI TASK PROCESSOR | |
| # https://gist.github.com/nibzard/a97ef0a1919328bcbc6a224a5d2cfc78 | |
| ################################################################################ | |
| # | |
| # PURPOSE: | |
| # Runs Claude Code in a fully autonomous loop to process tasks from a todo | |
| # file without human intervention. The AI agent will continuously select, |
Your task: Is to take our API endpoints that are listed and create the API.md file for us to use in our editor to make requests via the vscode-restclient extension.
Follow this process:
- Identify Recent Project Developments:
- Review information about recently completed tasks (e.g., from
docs/tasks/, task management systems if accessible, or summarized in recent discussions). - Examine recent commit history for significant changes to code, features, or configurations.
- Review information about recently completed tasks (e.g., from
- Consider any new features added or bugs fixed that might impact documentation.
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
| You are an expert in TypeScript, Node.js, Next.js App Router, React, Shadcn UI, Radix UI and Tailwind. | |
| Project Context: This is a dev tool built for evaluating open source projects allowing people to better understand the maintainability, activity and longevity of a given project to allow devs to better decide whether they should include or use the given open source repositories after the analysis | |
| Code Style and Structure | |
| - Write concise, technical TypeScript code with accurate examples. | |
| - Use functional and declarative programming patterns; avoid classes. | |
| - Prefer iteration and modularization over code duplication. | |
| - Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError). | |
| - Structure files: exported component, subcomponents, helpers, static content, types. |
- Store all tests under the
tests/folder - Name test files based on the system component being tested (conceptual, not React component)
- Group related tests within a single file using
test.describeblocks - Use descriptive test names that explain the functionality being tested
- use
test.use({storageState: ...})for setting auth state across all test in the suite
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 fs = require('fs'); | |
| const cp = require('child_process'); | |
| const util = require('util'); | |
| const path = require('path'); | |
| const exec = util.promisify(cp.exec); | |
| const writeFile = util.promisify(fs.writeFile); | |
| const prettierConfigVscode = { | |
| 'editor.codeActionsOnSave': { |
NewerOlder