Skip to content

developer tools

Nicolas Cravino edited this page Apr 15, 2026 · 7 revisions

id: developer-tools title: Developer Tools tags: [python, cli, mcp, ocr, llm, openai] created: 2026-04-11 updated: 2026-04-13 freshness: fresh

Developer Tools

Summary

The Developer Tools category spans 7 repositories covering code intelligence (GitNexus Fleet), AI-powered documentation and diagram generation (AutoGen Doc Generator, AutoGen Mermaid Generator), document format conversion (OllamaPDF2Markdown, Word-to-Markdown Converter), repository packaging (RepoBundle), and media utilities (Animated GIF Creator). The AutoGen-based tools share a common pyautogen 0.3.1 foundation, while the format converters address the recurring need to move content between formats for LLM ingestion pipelines.

Key claims

  • GitNexus Fleet indexes repositories into KuzuDB graph databases capturing functions, classes, files, call graphs, imports, and community structure. ^src:gitnexus-fleet
  • The tool runs in three phases: parallel cloning (5 workers), parallel indexing (3 workers via GitNexus), and MCP server + HTTP dashboard startup. ^src:gitnexus-fleet
  • Queries are served via MCP (stdio protocol) supporting query, impact analysis, context retrieval, and Cypher graph queries. ^src:gitnexus-fleet
  • AutoGen Doc Generator uses pyautogen 0.3.1 GroupChat with specialized agents (code analyst, documentation writer, quality reviewer) to auto-generate comprehensive documentation from any codebase. ^src:autogen-doc-generator
  • AutoGen Mermaid Generator uses a similar GroupChat pattern with a coder agent, manager agent, and Autogen manager to generate Mermaid diagrams from source code with quality-gated iterations. ^src:autogen-mermaid-generator
  • OllamaPDF2Markdown converts PDF pages to images then processes them through Ollama multimodal models (Mistral Small 3.1 24B) with intermediate saves every 5 pages for crash resilience. ^src:ollama-pdf2markdown
  • RepoBundle serializes an entire Git repository (text + binary files) into a single human-readable text file using only Python stdlib — no external dependencies. ^src:repobundle
  • Word-to-Markdown Converter preserves heading hierarchy, bullet lists, and table structures when converting .docx to Markdown. ^src:word-to-markdown-converter
  • Animated GIF Creator supports both image-folder-to-GIF and MOV-to-GIF workflows with automatic resizing and configurable frame duration. ^src:animated-gif-creator

Open questions

  • Could GitNexus Fleet's graph indices feed into the org wiki for automated cross-repo dependency mapping?
  • Could AutoGen Doc Generator + AutoGen Mermaid Generator be composed into a single documentation pipeline?
  • Is OllamaPDF2Markdown superseded by the Qwen-based OCR tools in local-inference-mlx for Apple Silicon users?

Related

  • local-inference-mlx (complementary local AI tooling; OllamaPDF2Markdown overlaps with Qwen VL OCR)
  • agentic-frameworks (AutoGen tools share agent orchestration patterns; potential integration with DeepAgent Azure CLI)

Articles

Sources

Clone this wiki locally