export-agent-tree

Export complete Birdhouse agent trees into a single markdown file with clickable links and transcripts.

36|5|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/Birdhouse-Labs/birdhouse --skill export-agent-tree-birdhouse-labs
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: export-agent-tree
Source: https://github.com/Birdhouse-Labs/birdhouse/tree/main/.agents/skills/internal/birdhouse/export-agent-tree
Command: npx skills add https://github.com/Birdhouse-Labs/birdhouse --skill export-agent-tree-birdhouse-labs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually copying conversation history from a multi-agent tree is tedious and error-prone. This Skill exports an entire Birdhouse agent tree, including hierarchy and every agent's transcript, into one shareable markdown file. ## Core Features & Use Cases - One-Call Tree Export: Uses the birdhouse_export_tree_markdown tool to generate a tree structure file, an agent data list, and per-agent markdown files in depth-first order. - Formatted Combined Output: Concatenates agent transcripts with emoji banners and clickable Birdhouse links, then adds a platform description header. - Automatic Delivery and Cleanup: Moves the final file to ~/Downloads and removes the temporary export directory. - Use Case: After a long multi-agent coding session, export the full tree rooted at a specific agent ID to archive or share the complete decision history with your team. ## Quick Start Export the full agent tree rooted at agent ID agent_ABC123 to a markdown file in my Downloads folder.

Frequently Asked Questions about export-agent-tree

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

FAQPage Schema
How do I export a full agent tree to markdown in Birdhouse?▼

Provide the root agent ID, then the skill calls birdhouse_export_tree_markdown to generate tree.md, agent_data.txt, and per-agent markdown files. These are concatenated with emoji banners into one file moved to ~/Downloads.

What does the exported agent tree markdown file contain?▼

The file contains a Birdhouse platform description, the agent tree structure with clickable birdhouse:agent links, and full transcripts for each agent separated by emoji banners in depth-first order.

Can I export only part of an agent tree instead of everything?▼

The export always includes all descendants of the provided root agent ID. To export a subtree, pass the ID of the intermediate agent you want as the new root.

Where does the exported agent tree file get saved?▼

The final markdown file is moved to ~/Downloads with the name birdhouse-agent-tree-{AGENT_ID}.md. The temporary working directory under tmp/ is deleted after the move.

Why is my agent tree export missing agents?▼

The export only includes agents that are descendants of the root agent ID you provided. Verify the root ID is correct and check the agent count returned by the birdhouse_export_tree_markdown tool response.