@voodocs/cli 3.0.2 → 3.0.3

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.
@@ -16,7 +16,7 @@ This module provides the command-line interface for VooDocs.
16
16
  import click
17
17
  from typing import Optional
18
18
 
19
- __version__ = "3.0.2"
19
+ __version__ = "3.0.3"
20
20
 
21
21
 
22
22
  @click.group()
@@ -435,18 +435,19 @@ def format_context_as_markdown(context: ContextFile) -> str:
435
435
  if module.description:
436
436
  lines.append(f"**Description:** {module.description}")
437
437
  lines.append("")
438
+ if module.path:
439
+ lines.append(f"**Path:** {module.path}")
440
+ lines.append("")
441
+ if module.language:
442
+ lines.append(f"**Language:** {module.language}")
443
+ lines.append("")
438
444
  if module.dependencies:
439
445
  lines.append(f"**Dependencies:** {', '.join(module.dependencies)}")
440
446
  lines.append("")
441
- if module.assumptions:
442
- lines.append("**Assumptions:**")
443
- for assumption in module.assumptions:
444
- lines.append(f"- {assumption}")
445
- lines.append("")
446
- if module.invariants:
447
- lines.append("**Invariants:**")
448
- for invariant in module.invariants:
449
- lines.append(f"- {invariant}")
447
+ if module.public_api:
448
+ lines.append("**Public API:**")
449
+ for api in module.public_api:
450
+ lines.append(f"- {api}")
450
451
  lines.append("")
451
452
  lines.append("---")
452
453
  lines.append("")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voodocs/cli",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "AI-Native Symbolic Documentation System - The world's first documentation tool using mathematical notation with semantic validation",
5
5
  "main": "voodocs_cli.py",
6
6
  "bin": {