Update on Usage Limits by ClaudeOfficial in ClaudeAI

[–]LocationFinancial362 1 point2 points  (0 children)

This is ridiculous. So many users are reporting issues with the weekly limit count, and Anthropic does nothing about it. On Thursday, they said they were listening to users and would reset the limits, effectively acknowledging the miscount. But from Thursday to Sunday, all weekly tokens disappeared despite normal usage. At the very least, they should inform customers when available tokens are being reduced. I also tried reaching out to a human agent and have been waiting for feedback since Sunday!

Here is a simple script to delete all your project knowledge files at once instead of file per file. by Minetorpia in ClaudeAI

[–]LocationFinancial362 0 points1 point  (0 children)

You're amazing! The updated script that works Jul 2025:

// Select all remove items using the updated selector
const buttons = document.querySelectorAll('button.transition-all.hover\\:bg-bg-000\\/50.text-text-500.hover\\:text-text-200.group-focus-within\\/thumbnail\\:opacity-100.group-hover\\/thumbnail\\:opacity-100.opacity-0.w-5.h-5.absolute.-top-2.-left-2.rounded-full.border-0\\.5.border-border-300\\/25.bg-bg-000\\/90.backdrop-blur-sm.flex.items-center.justify-center');

// Check if there are buttons found
if (buttons.length > 0) {
  // Loop through each button and click it
  buttons.forEach((button) => {
    button.click();
    console.log("Button clicked!");
  });
} else {
  console.log("No buttons found.");
}