docwright 0.1.4__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. {docwright-0.1.4 → docwright-0.1.5}/PKG-INFO +1 -1
  2. {docwright-0.1.4 → docwright-0.1.5}/docwright/engine.py +1 -1
  3. {docwright-0.1.4 → docwright-0.1.5}/pyproject.toml +1 -1
  4. {docwright-0.1.4 → docwright-0.1.5}/LICENSE +0 -0
  5. {docwright-0.1.4 → docwright-0.1.5}/README.md +0 -0
  6. {docwright-0.1.4 → docwright-0.1.5}/docwright/__init__.py +0 -0
  7. {docwright-0.1.4 → docwright-0.1.5}/docwright/analyzer.py +0 -0
  8. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/__init__.py +0 -0
  9. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/readme/__init__.py +0 -0
  10. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/readme/default.md.j2 +0 -0
  11. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/__init__.py +0 -0
  12. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/adr.md.j2 +0 -0
  13. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/api-contracts.md.j2 +0 -0
  14. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/architecture.md.j2 +0 -0
  15. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/data-model.md.j2 +0 -0
  16. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/db-schema.md.j2 +0 -0
  17. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/development-guide.md.j2 +0 -0
  18. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/home.md.j2 +0 -0
  19. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/integrations.md.j2 +0 -0
  20. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/operations.md.j2 +0 -0
  21. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/security.md.j2 +0 -0
  22. {docwright-0.1.4 → docwright-0.1.5}/docwright/built_in_templates/wiki/troubleshooting.md.j2 +0 -0
  23. {docwright-0.1.4 → docwright-0.1.5}/docwright/cli.py +0 -0
  24. {docwright-0.1.4 → docwright-0.1.5}/docwright/config.py +0 -0
  25. {docwright-0.1.4 → docwright-0.1.5}/docwright/outputs/__init__.py +0 -0
  26. {docwright-0.1.4 → docwright-0.1.5}/docwright/outputs/base.py +0 -0
  27. {docwright-0.1.4 → docwright-0.1.5}/docwright/outputs/direct.py +0 -0
  28. {docwright-0.1.4 → docwright-0.1.5}/docwright/outputs/factory.py +0 -0
  29. {docwright-0.1.4 → docwright-0.1.5}/docwright/outputs/pull_request.py +0 -0
  30. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/__init__.py +0 -0
  31. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/base.py +0 -0
  32. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/claude.py +0 -0
  33. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/factory.py +0 -0
  34. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/ollama.py +0 -0
  35. {docwright-0.1.4 → docwright-0.1.5}/docwright/providers/openai.py +0 -0
  36. {docwright-0.1.4 → docwright-0.1.5}/docwright/registry.py +0 -0
  37. {docwright-0.1.4 → docwright-0.1.5}/docwright/renderer.py +0 -0
  38. {docwright-0.1.4 → docwright-0.1.5}/docwright/reporters/__init__.py +0 -0
  39. {docwright-0.1.4 → docwright-0.1.5}/docwright/reporters/html.py +0 -0
  40. {docwright-0.1.4 → docwright-0.1.5}/docwright/reporters/terminal.py +0 -0
  41. {docwright-0.1.4 → docwright-0.1.5}/docwright/scaffolder.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: docwright
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: AI-powered documentation agent: auto-generates and maintains README & wiki on every commit
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -72,7 +72,7 @@ class DocsEngine:
72
72
  for doc_config in self.config.documents:
73
73
  target = self.repo_root / doc_config.target
74
74
  template_text = self.loader.load(doc_config.template)
75
- document = target.read_text() if target.exists() else template_text
75
+ document = template_text
76
76
  section_names = self.renderer.auto_section_names(template_text)
77
77
 
78
78
  for section_name in section_names:
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "docwright"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  description = "AI-powered documentation agent: auto-generates and maintains README & wiki on every commit"
5
5
  authors = ["Artem Gotlib <gotlib.artem.m@gmail.com>"]
6
6
  license = "MIT"
File without changes
File without changes
File without changes
File without changes