Automated documentation generation, code extraction, and project management for Python projects.
Socratic Docs provides a comprehensive toolkit for generating, managing, and organizing project documentation. It automates the tedious process of creating documentation artifacts and managing project structure through git integration.
-
CodeExtractor - Extract and analyze source code
- Parse Python modules and classes
- Extract function signatures and docstrings
- Generate code inventories
- Support for package analysis
-
DocumentationGenerator - Generate comprehensive documentation
- Auto-generate README.md with project overview
- Create API reference documentation
- Generate architecture documentation
- Produce setup and installation guides
-
MultiFileCodeSplitter - Split large codebases into organized files
- Organize code by module/package
- Generate file structure
- Support for custom naming conventions
- Preserve code relationships
-
ProjectTemplateGenerator - Create project scaffolding
- Generate boilerplate project structures
- Create standardized layouts
- Support multiple project types
- Include configuration files
-
ArtifactSaver - Save documentation and artifacts
- Write files to disk
- Organize by directory
- Support multiple formats (markdown, text, code)
- Create index files
-
GitRepositoryManager - Manage git repositories
- Initialize repositories
- Add and commit files
- Track documentation changes
- Integrate with version control
-
GitInitializer - Setup git for projects
- Initialize new repositories
- Configure git settings
- Create initial commits
- Setup .gitignore files
pip install socratic-docs# With git integration
pip install socratic-docs[all]from socratic_docs import CodeExtractor, DocumentationGenerator, ArtifactSaver
# Step 1: Extract code information
extractor = CodeExtractor()
code_info = extractor.extract_from_package("my_package")
# Step 2: Generate documentation
generator = DocumentationGenerator()
docs = generator.generate_all(code_info)
# docs contains README.md, API.md, ARCHITECTURE.md, SETUP.md
# Step 3: Save artifacts
saver = ArtifactSaver(output_dir="./docs_output")
saver.save_documents(docs)
saver.create_index()from socratic_docs import ProjectTemplateGenerator
generator = ProjectTemplateGenerator()
template = generator.generate_template(
project_name="my_awesome_project",
project_type="library",
description="An awesome Python library",
author="Your Name"
)from socratic_docs import (
GitInitializer,
CodeExtractor,
DocumentationGenerator,
GitRepositoryManager,
ArtifactSaver
)
# Initialize a new git repository
git_init = GitInitializer(repo_path="./my_project")
git_init.initialize()
# Extract code and generate docs
extractor = CodeExtractor()
code_info = extractor.extract_from_package("my_package")
generator = DocumentationGenerator()
docs = generator.generate_all(code_info)
# Save and commit
saver = ArtifactSaver(output_dir="./my_project/docs")
saver.save_documents(docs)
git_mgr = GitRepositoryManager(repo_path="./my_project")
git_mgr.add_files("docs/")
git_mgr.commit("docs: Add auto-generated documentation")from socratic_docs import MultiFileCodeSplitter
splitter = MultiFileCodeSplitter()
result = splitter.split_by_module(
input_file="monolithic_app.py",
output_dir="./modular_structure"
)- Auto-generate comprehensive README and API docs
- Keep documentation in sync with code
- Generate changelog and architecture guides
- Create installation and setup guides
- Document enterprise applications
- Generate code inventories
- Create architecture diagrams
- Track project structure changes
- Quickly bootstrap new projects
- Ensure consistent project structure
- Auto-configure build tools
- Generate config files
- Version control documentation with code
- Generate docs from code docstrings
- Automate documentation updates
- Integrate with CI/CD pipelines
- socratic-nexus: Use LLMs to improve documentation generation
- socratic-analyzer: Analyze code quality and document findings
- socratic-workflow: Integrate documentation generation into workflows
- socratic-learning: Track improvements in documentation quality
See ARCHITECTURE.md for detailed architecture documentation.
See docs/API_REFERENCE.md for complete API documentation.
See the examples/ directory for complete, runnable examples:
01_extract_and_generate.py- Extract code and generate documentation02_project_templates.py- Generate project scaffolding03_git_workflow.py- Git-based documentation workflow
Contributions are welcome!
MIT License - see LICENSE for details.
- Documentation: https://github.com/Nireus79/socratic-docs
- Issues: https://github.com/Nireus79/socratic-docs/issues
This package is a component of Socrates AI, a production-ready platform for building intelligent multi-agent systems with constitutional governance.
pip install socratic-docspip install socrates-ai # Includes 37+ modules + all 11 packagesSee the Socrates ECOSYSTEM.md for detailed integration examples showing how to use socratic-docs with other Socratic packages.
Related packages you might use together:
- ๐ Full Socrates Documentation
- ๐๏ธ Complete Architecture Guide
- ๐ฌ Socrates Discussions