suckytraces 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 ADDED
@@ -0,0 +1,12 @@
1
+ # suckytraces
2
+
3
+ Sniffs out missing trace coverage in local coding-agent logs.
4
+
5
+ ```bash
6
+ npx suckytraces
7
+ npx suckytraces --days 7
8
+ npx suckytraces --json
9
+ ```
10
+
11
+ NPC: **Trace Goblin**. 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, "suckytraces", { name: "suckytraces", version: "0.1.0" }).catch((error) => {
5
+ const message = error instanceof Error ? error.message : String(error);
6
+ console.error(`suckytraces: ${message}`);
7
+ process.exitCode = 1;
8
+ });
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "suckytraces",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Sniffs out missing trace coverage in local coding-agent logs.",
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
+ "suckytraces": "bin/suckytraces.js"
20
+ },
21
+ "dependencies": {
22
+ "agentwaste-core": "0.1.0"
23
+ },
24
+ "files": [
25
+ "bin",
26
+ "README.md"
27
+ ]
28
+ }