LLM-based AI powered Code Documentation Generator
Project description
Fluen: AI-Powered Code Documentation Generator
Fluen is a modern, LLM-powered documentation generator that understands your code. Point it at any git repository, and it will create comprehensive, intelligent documentation that captures not just the structure, but the intent and relationships within your codebase.
Quick Demo
✨ Features
- Language Agnostic: Works with any programming language - understands patterns, idioms, and best practices across different languages
- Intelligent Analysis: Uses LLMs to understand code purpose, relationships, and architectural patterns
- Git Integration: Works with any git repository, tracks changes, and updates documentation incrementally
- Rich Documentation: Generates both HTML and Markdown documentation with:
- Cross-referenced code elements
- Dependency graphs
- Public API documentation
- Code purpose analysis
- Framework detection
🚀 Quick Start
- Install Fluen:
pip install fluen
- Create a configuration file:
# Copy the example config
cp fluen_config.example.yml fluen_config.yml
# Edit the config file with your LLM provider settings
vim fluen_config.yml
- Generate documentation: The generate command analyzes the project and generates a code manifest.json file. We recommend you to first clone a repository and then run fluen from the root of your local repository.
# For local repository
fluen docs generate
# For remote repository
fluen docs generate --repo https://github.com/username/repo.git
Once the manifest.json generation succeeds, run the export command to export in html or markdown format
# Default export type configured in fluen_config.yml
fluen docs export
# Explicitly tell the export format type html/md
fluen docs export --type md
- View your documentation:
# Documentation will be available in ./docs directory
open docs/html/index.html
- Update your documentation
Fluen is designed to update documentation incrementally with git commits. However there might be scenarios where you need to fore an update. Simply use the
--forceflag
fluen docs generate --force
- Selective scanning (of sub directories)
In case you want Fluen to look at only a specific sub-directory, then use the
--scanflag
fluen docs generate --scan path:<your_sub_path>
You may use the --force flag to force updates
📖 Use Cases
1. Project Onboarding
Help new team members understand your codebase quickly with AI-generated documentation that explains not just what the code does, but why it does it.
2. Code Audits
Get a comprehensive view of your project's architecture, dependencies, and exposed APIs. Perfect for security audits and architectural reviews.
3. Technical Documentation
Generate and maintain up-to-date technical documentation without manual effort. Fluen tracks changes and updates only what's needed.
4. Legacy Code Understanding
Make sense of legacy codebases by letting Fluen analyze patterns, dependencies, and architectural decisions embedded in the code.
⚙️ Configuration
Fluen uses a YAML configuration file (fluen_config.yml) for customization. Here's a minimal configuration:
llm:
# Choose your provider: 'openai' or 'mistral' or 'ollama' for local use
provider: openai
api_key: your-api-key-here
model: gpt-3.5-turbo # or 'gpt-4o' for better results
# Output directory for generated documentation
output_dir: docs
# Documentation format
default_export_type: html # or 'md' for markdown
See fluen_config.example.yml for a complete configuration example with all available options.
🔧 Requirements
- Python 3.9 or higher
- Git
- An API key from OpenAI or Mistral AI (recommended providers)
🚧 Roadmap
Exciting features coming soon:
- Interactive code chat interface with project-wide search
- Enhanced code element descriptions and relationships
- PDF export
- Custom template support
- Plugin system
- CI/CD integration
🤝 Contributing
We welcome contributions! Whether it's bug reports, feature requests, or code contributions, please feel free to contribute.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Install development dependencies:
pip install -e ".[dev]"
- Make your changes
- Run tests:
pytest
- Submit a Pull Request
📄 License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
🙋♂️ Support
🌟 Show your support
Give a ⭐️ if this project helped you!
Made with ❤️ by Fluen using the Jiva Framework and Claude by Anthropic
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fluen-0.1.41.tar.gz.
File metadata
- Download URL: fluen-0.1.41.tar.gz
- Upload date:
- Size: 56.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92d5a88364054ff332eda8bff9d39a6b8f8d56182695894696689e422993332a
|
|
| MD5 |
caebb8a3d7c8a940f6d875b41e4d8d0c
|
|
| BLAKE2b-256 |
61b503105033bdd3d283e2ace2529ac422eb01a00d205e1ce705520de82c5345
|
File details
Details for the file fluen-0.1.41-py3-none-any.whl.
File metadata
- Download URL: fluen-0.1.41-py3-none-any.whl
- Upload date:
- Size: 64.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f2bbefc8c1f09e1fe2f09aaf9987732c753db54e8a10fbb20c4948696ea8d83
|
|
| MD5 |
261e36b577f63110ece12196c2025319
|
|
| BLAKE2b-256 |
060b36ed82a2ba5e3ba70e3ad9ee9768e2dd02c38a1e5f4435b2039e785bb678
|