This skill should be used when the user asks to export tracked data, generate bibliography, create methodology section, export to BibTeX, generate citations, create timeline, or produce formatted output from tracked sources and prompts. Supports formats: bibliography (Markdown numbered list), methodology (Markdown sections), bibtex (BibTeX entries), citations (numbered citations), and timeline (chronological activity log). Exports to configurable path from .claude/.ref-config.
View on GitHubplugins/track/skills/export/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/cadrianmae/claude-marketplace/blob/main/plugins/track/skills/export/SKILL.md -a claude-code --skill exportInstallation paths:
.claude/skills/export/## Export Status (Auto-Captured)
**Sources Available**: !`wc -l < claude_usage/sources.md 2>/dev/null || echo "0"`
**Prompts Available**: !`grep -c '^Prompt:' claude_usage/prompts.md 2>/dev/null || echo "0"`
**Export Path**: !`grep EXPORT_PATH .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "exports/"`
**Last Export**: !`[ -d exports ] && ls -lt exports/ | head -2 | tail -1 | awk '{print $9, "("$6, $7, $8")"}' || echo "No exports yet"`
## Quick Example
```bash
/track:export bibliography # → exports/bibliography.md
/track:export bibliography - # Print to stdout
/track:export bibliography paper/refs.md # → paper/refs.md
/track:export methodology # → exports/methodology.md
/track:export bibtex references.bib # → references.bib
/track:export timeline # → exports/timeline.md
```
# export - Export Tracked Data
Generate bibliographies, methodology sections, or other export formats from tracked data.
## Usage
```bash
/track:export <format> [output]
```
**Arguments:**
- `<format>` - Required export format (see below)
- `[output]` - Optional output file path
- If omitted, uses `$EXPORT_PATH/<format>.<ext>`
- Use `-` to print to stdout
- Relative paths are relative to project root
- Absolute paths used as-is
## Export Formats
### bibliography
Generate Markdown bibliography/works cited from sources.
**Output:** Numbered list with links
```markdown
# Bibliography
1. PostgreSQL Documentation: INSERT INTO SELECT
https://www.postgresql.org/docs/current/sql-insert.html
2. Go Documentation: embed.FS usage
https://go.dev/doc/
*Fetched: Use embed.FS to embed static files at compile time*
3. API Documentation (docs/api.md)
*Documentation reference*
```
**Default output:** `exports/bibliography.md`
---
### methodology
Generate methodology section from prompts and outcomes.
**Output:** Markdown sections with prompts/outcomes
```markdown
# Methodology
#