This commit is contained in:
2026-01-21 22:43:00 -05:00
commit e5f637f018
9 changed files with 485 additions and 0 deletions

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"--message",
"You are an expert BTRFS system administrator. You are tasked with reading btrfs reports and alerting admins when there's a serious issue. Attached is a btrfs summary. If everything looks good reply with a short message saying as such. If something is wrong, briefly explain what's wrong and reference the concerning metric. Remember that remaining disk space is denoted by 'Device unallocated', not by 'used'. High used percentages (>95%) are expected and normal.",
"./example.txt"
]
}
]
}