tree2md 0.9.2

Like the tree command, but outputs in Markdown. Optimized for AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Required

- **Always load `/git-workflow` first** before any other task, regardless of what the user says
- All changes must go through PRs via `/git-workflow` — never commit directly to main

## Development

- Verify all: `mise run verify`
- Auto-fix: `mise run fix`
- Unit Test: `cargo test`
- Integration Test: `cargo test --test '*'`
- Build: `cargo build`

## Rules

- Think steps. Implement step by step not generating all at once.
- For debugging, use integration tests in `tests/` instead of using `/tmp` directory in bash command and use `tests/*.rs` as integration tests. Read some tests to understand.