tooltantrum 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/bin/tooltantrum.js +8 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# tooltantrum
|
|
2
|
+
|
|
3
|
+
Roasts failed tool calls, unresolved failures, and retry drama.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx tooltantrum
|
|
7
|
+
npx tooltantrum --days 7
|
|
8
|
+
npx tooltantrum --json
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
NPC: **Retry Possum**. This package is one tiny slice of the `agentmess` local agent scanner.
|
|
12
|
+
It runs locally, reports aggregate metrics, and does not upload transcripts or print raw secret values.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { runToolCli } from "agentwaste-core/cli";
|
|
3
|
+
|
|
4
|
+
runToolCli(process.argv, "tooltantrum", { name: "tooltantrum", version: "0.1.0" }).catch((error) => {
|
|
5
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
6
|
+
console.error(`tooltantrum: ${message}`);
|
|
7
|
+
process.exitCode = 1;
|
|
8
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tooltantrum",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Roasts failed tool calls, unresolved failures, and retry drama.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ai",
|
|
8
|
+
"agents",
|
|
9
|
+
"cli",
|
|
10
|
+
"developer-tools",
|
|
11
|
+
"observability",
|
|
12
|
+
"codex",
|
|
13
|
+
"claude"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"tooltantrum": "bin/tooltantrum.js"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"agentwaste-core": "0.1.0"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"bin",
|
|
26
|
+
"README.md"
|
|
27
|
+
]
|
|
28
|
+
}
|