We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4099da0 commit a0e4fe4Copy full SHA for a0e4fe4
1 file changed
docs/autodoc.py
@@ -0,0 +1,21 @@
1
+!/usr/bin/env python3
2
+"""
3
+Sistema de Documentación Automatizada
4
+Actualiza cada 24h con:
5
+- Estado de dependencias
6
+- Errores conocidos
7
+- Rendimiento
8
9
+import subprocess
10
+from datetime import datetime
11
+
12
+def generate_docs():
13
+ with open('docs/STATUS.md', 'w') as f:
14
+ f.write(f"# Estado del Proyecto\n\n")
15
+ f.write(f"Última actualización: {datetime.now()}\n\n")
16
+ f.write("```bash\n")
17
+ f.write(subprocess.getoutput("mechmind version --full"))
18
+ f.write("\n```\n")
19
20
+if __name__ == '__main__':
21
+ generate_docs()
0 commit comments