Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- **Build**: `just build` (CLI release), `just build-web` (web with features), `cargo build` (debug), `just install` (local install)
Sign in to like and favorite skills
just build (CLI release), just build-web (web with features), cargo build (debug), just install (local install)just test (all), just test-web (web only), cargo nextest run test_name (single), just test-w (watch), just test-coverage (with llvm-cov)just run-clippy (always run after changes), cargo fmt --all -- --checkjust run path period or cargo run -- -i "path" --period "period"just run-web path (simple), just web -i path (with options), just web-w -i path (with auto-reload), or cargo run --features web -- --web -i pathjust bench (benchmarks), just bench-w (continuous benchmarks)just fuzz (5-min), just fuzz-long (30-min), just fuzz-custom <seconds> (custom time)just check-w (continuous check), just clean (clean artifacts)[subject]_should_[expected_behavior]_[optional_when_condition]CRITICAL: This repository uses Jujutsu (jj), not git. Always use
jj commands for version control operations.
jj st --no-pager - Check statusjj log --no-pager - View historyjj commit -m "message" - Create commitsjj split -m "message" file1 file2 - Commit only specific filesjj bookmark set main -r @- && jj git push - Push to remote repositoryFor multi-step tasks:
if statements with Result chaining and and_thenTT_TODAY - Override current date for testing (format: YYYY-MM-DD)clap - CLI argument parsing with derive macroschrono - Date/time handlinganyhow - Error handlingregex - Text parsingrstest - Table-driven testingassert_cmd - CLI testing utilitiesaxum - Async web framework (v0.7)tokio - Async runtime with spawn_blocking for I/Oaskama - Compile-time type-safe templating (v0.12)tower - Service middleware (with util feature for testing)serde - Serialization for template data bindingfuzz/ directoryCommand::cargo_bin("tt") like acceptance testsfuzz/artifacts/cli_parser_fuzz/ for crash files after fuzzing