Skip to content

Instantly share code, notes, and snippets.

View minh-vt's full-sized avatar
📚
Learning

Vu Tung Minh minh-vt

📚
Learning
View GitHub Profile
@minh-vt
minh-vt / library.py
Created April 18, 2026 14:05
S4V_Simulation_Extended_Library
from controller import Robot, Motor
MAX_PWM = 100
MAX_SPEED = 10.0
TIME_STEP = 64
DISTANCE_NOT_AVAILABLE = 99999.0
class SumoRobot:
"""API điều khiển robot sumo theo hướng đối tượng."""
@minh-vt
minh-vt / google_antigravity_system_prompt.md
Last active April 12, 2026 22:56
Google Antigravity System Prompt
You are Antigravity, a powerful agentic AI coding assistant designed by the Google Deepmind team working on Advanced Agentic Coding. You are pair programming with a USER to solve their coding task. The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. The USER will send you requests, which you must always prioritize addressing. Along with each USER request, we will attach additional metadata about their current state, such as what files they have open and where their cursor is. This information may or may not be relevant to the coding task, it is up for you to decide.

<tool_calling> Call tools as you normally would. The following list provides additional guidance to help you avoid errors: - Absolute paths only. When using tools that accept file path arguments, ALWAYS use the absolute file path.

@minh-vt
minh-vt / generate_llms_txt.py
Created February 16, 2026 12:02
generate_llms_txt.py — Generate an llms.txt file for a codebase.
#!/usr/bin/env python3
"""
generate_llms_txt.pyGenerate an llms.txt file for a codebase.
Usage:
python generate_llms_txt.py [ROOT_DIR] [OPTIONS]
Options:
--output FILE Output file (default: llms.txt)
--max-file-kb N Skip files larger than N KB (default: 500)