10000 GitHub - azrilaiman2003/augment-vip: remove augmentcode free trial account limit
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

azrilaiman2003/augment-vip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

18 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Augment VIP

License Version

A utility toolkit for Augment VIP users, providing tools to manage and clean VS Code databases. Now with Python-based cross-platform compatibility!

Tested on Mac Os Vscode Status : Working Last Tested : 4 June 2025 1:50PM GMT8+

πŸš€ Features

  • Database Cleaning: Remove Augment-related entries from VS Code databases
  • Telemetry ID Modification: Generate random telemetry IDs for VS Code to enhance privacy
  • Cross-Platform Support: Works on Windows, macOS, and Linux
  • Python-Based: Uses Python for better cross-platform compatibility
  • Virtual Environment: Isolates dependencies to avoid conflicts
  • Safe Operations: Creates backups before making any changes
  • User-Friendly: Clear, color-coded output and detailed status messages

πŸ“‹ Requirements

  • Python 3.6 or higher
  • No external system dependencies required (all managed through Python)

πŸ’» Installation

One-Line Install

You can install with a single command using curl:

curl -fsSL https://raw.githubusercontent.com/azrilaiman2003/augment-vip/main/install.sh -o install.sh && chmod +x install.sh && ./install.sh

This will:

  1. Download the installation script
  2. Make it executable
  3. Check for Python 3.6 or higher
  4. Create a new augment-vip directory in your current location
  5. Download the Python installer and package files
  6. Set up a Python virtual environment
  7. Install the package in the virtual environment
  8. Prompt you if you want to run the database cleaning and telemetry ID modification tools
  9. Run the selected tools automatically

Installation Options

You can also run the installation script with options to automatically run the cleaning and ID modification tools:

# Install and run database cleaning
curl -fsSL https://raw.githubusercontent.com/azrilaiman2003/augment-vip/python/install.sh -o install.sh && chmod +x install.sh && ./install.sh --clean

# Install and modify telemetry IDs
curl -fsSL https://raw.githubusercontent.com/azrilaiman2003/augment-vip/python/install.sh -o install.sh && chmod +x install.sh && ./install.sh --modify-ids

# Install and run all tools
curl -fsSL https://raw.githubusercontent.com/azrilaiman2003/augment-vip/python/install.sh -o install.sh && chmod +x install.sh && ./install.sh --all

# Show help
curl -fsSL https://raw.githubusercontent.com/azrilaiman2003/augment-vip/python/install.sh -o install.sh && chmod +x install.sh && ./install.sh --help

Repository Install

If you prefer to clone the entire repository:

git clone https://github.com/azrilaiman2003/augment-vip.git
cd augment-vip
python install.py

Manual Installation

If you prefer to set up manually:

# Clone the repository
git clone https://github.com/azrilaiman2003/augment-vip.git
cd augment-vip

# Create a virtual environment
python -m venv .venv

# Activate the virtual environment
# On Windows
.venv\Scripts\activate
# On macOS/Linux
source .venv/bin/activate

# Install the package
pip install -e .

πŸ”§ Usage

Clean VS Code Databases

To remove Augment-related entries from VS Code databases:

# If using the virtual environment (recommended)
.venv/bin/augment-vip clean  # macOS/Linux
.venv\Scripts\augment-vip clean  # Windows

# If installed globally
augment-vip clean

This will:

  • Detect your operating system
  • Find VS Code database files
  • Create backups of each database
  • Remove entries containing "augment" from the databases
  • Report the results

Modify VS Code Telemetry IDs

To change the telemetry IDs in VS Code's storage.json file:

# If using the virtual environment (recommended)
.venv/bin/augment-vip modify-ids  # macOS/Linux
.venv\Scripts\augment-vip modify-ids  # Windows

# If installed globally
augment-vip modify-ids

This will:

  • Locate the VS Code storage.json file
  • Generate a random 64-character hex string for machineId
  • Generate a random UUID v4 for devDeviceId
  • Create a backup of the original file
  • Update the file with the new random values

Run All Tools

To run both tools at once:

# If using the virtual environment (recommended)
.venv/bin/augment-vip all  # macOS/Linux
.venv\Scripts\augment-vip all  # Windows

# If installed globally
augment-vip all

πŸ“ Project Structure

augment-vip/
β”œβ”€β”€ .venv/                  # Virtual environment (created during installation)
β”œβ”€β”€ augment_vip/            # Main package
β”‚   β”œβ”€β”€ __init__.py         # Package initialization
β”‚   β”œβ”€β”€ cli.py              # Command-line interface
β”‚   β”œβ”€β”€ db_cleaner.py       # Database cleaning functionality
β”‚   β”œβ”€β”€ id_modifier.py      # Telemetry ID modification functionality
β”‚   └── utils.py            # Utility functions
β”œβ”€β”€ install.py              # Python installation script
β”œβ”€β”€ install.sh              # Bash wrapper for Python installer
β”œβ”€β”€ README.md               # This file
β”œβ”€β”€ requirements.txt        # Package dependencies
└── setup.py                # Package setup script

πŸ” How It Works

The database cleaning tool works by:

  1. Finding Database Locations: Automatically detects the correct paths for VS Code databases based on your operating system.

  2. Creating Backups: Before making any changes, the tool creates a backup of each database file.

  3. Cleaning Databases: Uses SQLite commands to remove entries containing "augment" from the databases.

  4. Reporting Results: Provides detailed feedback about the operations performed.

πŸ› οΈ Troubleshooting

Common Issues

Python Not Found

[ERROR] Python 3 is not installed or not in PATH

Install Python 3.6 or higher:

Permission Denied

[ERROR] Permission denied

Make sure the scripts are executable:

chmod +x install.sh

No Databases Found

[WARNING] No database files found

This may occur if you haven't used VS Code on your system, or if it's installed in non-standard locations.

🀝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ“œ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ“ž Contact

Azril Aiman - me@azrilaiman.my

Project Link: https://github.com/azrilaiman2003/augment-vip


Made with ❀️ by Azril Aiman

About

remove augmentcode free trial account limit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0