universal-audit-log
v0.2.0One hook on * that records every event on $ (tool calls, prompts, turns, other plugins' fs/http/process calls) as JSON lines with origin plugin and tier, duration and outcome, including denials. Buffered and flushed to a JSONL file through $.fs at the end of every turn.
By claude-code-templatesLicense: MIT31.6k GitHub starsUpdated 2 hours ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 0 skill or MCP entries
- Source updated
- Sep 24, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install universal-audit-log for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install universal-audit-log@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/davila7/claude-code-templatesClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is cli-tool/components/mods/observability/universal-audit-log/.
Plugin files
└── .claude-plugin/plugin.json
Plugin manifests1
{
"name": "universal-audit-log",
"version": "0.2.0",
"description": "One hook on * that records every event on $ (tool calls, prompts, turns, other plugins' fs/http/process calls) as JSON lines with origin plugin and tier, duration and outcome, including denials. Buffered and flushed to a JSONL file through $.fs at the end of every turn.",
"author": {
"name": "claude-code-templates",
"url": "https://www.aitmpl.com"
},
"repository": "https://github.com/davila7/claude-code-templates",
"license": "MIT",
"keywords": [
"mod",
"function-hooks",
"observability"
],
"userConfig": {
"path": {
"type": "string",
"title": "Log file",
"description": "JSONL file the audit lines are written to, relative to the working directory",
"default": ".claude/logs/mods-audit.jsonl"
},
"skipEvents": {
"type": "string",
"title": "Skipped events",
"description": "Comma-separated events not to record (default: render and log chatter)",
"default": ""
},
"flushEvery": {
"type": "number",
"title": "Flush every",
"description": "Write the buffered lines after this many events",
"default": 50
},
"maxBytes": {
"type": "number",
"title": "Max file size",
"description": "Keep the file under this many bytes, dropping the oldest lines",
"default": 2097152
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[universal-audit-log on Agent Plugins Marketplace](https://pluginsmp.com/plugins/universal-audit-log)