chl03ks/shut-up-and-code
8 stars · Last commit 2026-08-14
Load-bearing comments only. Stops Claude Code narrating your code back to you in comments.
README preview
# shut-up-and-code
**Load-bearing comments only.** A Claude Code plugin that stops the agent narrating your code back to you.
Claude comments reflexively. Most of what it writes restates the line below it — or, on anything exported, swells into a doc block that restates the signature and pastes in whatever context it was handed. A rule in `CLAUDE.md` doesn't reliably stop either. This ships that rule as a skill instead — as something Claude can load on its own, or that gets injected at the top of every session.
## The difference
Before:
```ts
// Function to calculate the total price
function calculateTotal(items: Item[], taxRate: number): number {
// Initialize the sum
let sum = 0;
// Loop through all the items
for (const item of items) {
// Add the item price to the sum
sum += item.price;
}