-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloom.json
More file actions
55 lines (55 loc) · 1.35 KB
/
floom.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "Hook Stats",
"description": "Analyze your Claude Code bash command log.",
"manifest_version": "2.0",
"runtime": "python",
"python_dependencies": [],
"secrets_needed": [],
"actions": {
"analyze": {
"label": "Analyze Log",
"description": "Parse a Claude Code bash-commands.log and return top commands, git stats, and per-day activity.",
"inputs": [
{
"name": "log_content",
"label": "bash-commands.log content",
"type": "textarea",
"required": true,
"description": "Paste the contents of ~/.claude/bash-commands.log (each line begins with a [timestamp] prefix)."
}
],
"outputs": [
{
"name": "total",
"label": "Total Commands",
"type": "number"
},
{
"name": "today",
"label": "Today",
"type": "number"
},
{
"name": "top_commands",
"label": "Top Commands",
"type": "json"
},
{
"name": "git",
"label": "Git Operations",
"type": "json"
},
{
"name": "per_day",
"label": "Per Day (last 7)",
"type": "json"
},
{
"name": "report",
"label": "Report",
"type": "text"
}
]
}
}
}