Skip to main content
Generalhashgraph-online

post-execute-audit

Record tool execution in AxonFlow audit trail after tool calls complete. Use after any tool call for compliance evidence.

Stars
336
Source
hashgraph-online/awesome-codex-plugins
Updated
2026-05-27
Slug
hashgraph-online--awesome-codex-plugins--post-execute-audit
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/hashgraph-online/awesome-codex-plugins/HEAD/plugins/getaxonflow/axonflow-codex-plugin/skills/post-execute-audit/SKILL.md -o .claude/skills/post-execute-audit.md

Drops the SKILL.md into .claude/skills/post-execute-audit.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

After tool calls complete, call the audit_tool_call MCP tool with:

  • tool_name: the tool that was called (e.g., "Bash", "Write")
  • input: the tool input (command, file content, etc.)
  • success: whether the tool call succeeded
  • output: summary of the result (truncate if large)

This creates a compliance-grade audit record with timestamp, policy context, and execution details.

Note: For Bash tool calls, this is handled automatically by the PostToolUse hook. Use this skill for other tool types that are not hook-governed.