write-markdown-output

Write content to timestamped Markdown files with UTC-based filenames.

Updated Nov 11, 2025
One-click install
npx skills add https://github.com/libertininick/chain-reaction --skill write-markdown-output
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: write-markdown-output
Source: https://github.com/libertininick/chain-reaction/tree/main/.claude/skills/write-markdown-output
Command: npx skills add https://github.com/libertininick/chain-reaction --skill write-markdown-output

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill enables automated persistence of agent outputs by writing content to a UTC-timestamped Markdown file, ensuring durable records of plans, reviews, and decisions.

Core Features & Use Cases

  • Write content to timestamped Markdown files in a designated directory.
  • Automatically create output directories and generate UTC-based filenames for consistent organization.
  • Use Case: After an agent generates a plan or log, store it locally for auditing, handoff, or future reference.

Quick Start

uv run python .claude/skills/write-markdown-output/scripts/write_markdown_output.py
-s "example-plan"
-c "# Plan\n\nThis is an example plan."
-o ".claude/agent-outputs/plans"

Frequently Asked Questions about write-markdown-output

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save agent outputs as timestamped Markdown files automatically?

To save agent outputs as timestamped Markdown files, run the included Python script with a slug, content, and output directory to generate a UTC-dated Markdown file for durable records.

What is the best way to log agent plans and decisions locally for auditing?

Logging agent plans and decisions locally requires writing content to a Markdown file with a UTC timestamp, which creates a durable record for auditing or handoff in a designated directory.

Do I need any external dependencies to write Markdown outputs with Python?

No external dependencies are required to write Markdown outputs with this script. You only need the Python environment and the script itself to create output directories and generate timestamped files.

How does the UTC timestamp filename generation work for Markdown output files?

UTC timestamp filename generation works by creating a standardized filename based on the current UTC time when the script runs, ensuring consistent organization of agent output Markdown files.

Can I use this script to create output directories for agent workflows if they don't exist?

Yes, you can use this script to create output directories for agent workflows. It automatically generates the designated output directory and saves the Markdown file if the path does not exist.

Why use a timestamped Markdown file for storing AI agent reviews and plans?

Using a timestamped Markdown file for storing AI agent reviews and plans ensures automated persistence of outputs, preventing data loss and providing consistent organization for future reference.